Message.GetULongs Method
Namespace: Riptide
Assembly: RiptideNetworking.dll
Overloads
GetULongs() | Retrieves a ulong array from the message. |
GetULongs(int) | Retrieves a ulong array from the message. |
GetULongs(ulong[], int) | Populates a ulong array with ulongs retrieved from the message. |
GetULongs(int, ulong[], int) | Populates a ulong array with ulongs retrieved from the message. |
GetULongs()
Retrieves a ulong array from the message.
public ulong[] GetULongs()
Returns
ulong[] | The array that was retrieved. |
GetULongs(int)
Retrieves a ulong array from the message.
public ulong[] GetULongs(int amount)
Parameters
int | amount |
The amount of ulongs to retrieve. |
Returns
ulong[] | The array that was retrieved. |
GetULongs(ulong[], int)
Populates a ulong array with ulongs retrieved from the message.
public void GetULongs(ulong[] intoArray, int startIndex = 0)
Parameters
ulong[] | intoArray |
The array to populate. |
int | startIndex |
The position at which to start populating the array. |
GetULongs(int, ulong[], int)
Populates a ulong array with ulongs retrieved from the message.
public void GetULongs(int amount, ulong[] intoArray, int startIndex = 0)
Parameters
int | amount |
The amount of ulongs to retrieve. |
ulong[] | intoArray |
The array to populate. |
int | startIndex |
The position at which to start populating the array. |