| GameLiftManagerGameControllerDataLengthsAndStartLocations Method |
Gathers the length and start location of the data inside a byte array
Namespace:
ASL
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax public (int[] , int[] ) DataLengthsAndStartLocations(
byte[] _payload
)
Public Function DataLengthsAndStartLocations (
_payload As Byte()
) As ( As Integer(), As Integer())
public:
ValueTuple<array<int>^, array<int>^> DataLengthsAndStartLocations(
array<unsigned char>^ _payload
)
member DataLengthsAndStartLocations :
_payload : byte[] -> ValueTuple<int[], int[]>
Parameters
- _payload
- Type: SystemByte
The byte array
Return Value
Type:
ValueTupleInt32,
Int32The start location of the different data pieces inside the byte array and the length of each data piece
See Also