GrainIdKeyExtensions.CreateIntegerKey Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CreateIntegerKey(Int64) | |
CreateIntegerKey(Int64, ReadOnlySpan<Byte>) |
Creates an IdSpan representing a Int64 key and key extension string. |
CreateIntegerKey(Int64, String) |
Creates an IdSpan representing a Int64 key and key extension string. |
CreateIntegerKey(Int64)
CreateIntegerKey(Int64, ReadOnlySpan<Byte>)
public static Orleans.Runtime.IdSpan CreateIntegerKey (long key, ReadOnlySpan<byte> keyExtension);
static member CreateIntegerKey : int64 * ReadOnlySpan<byte> -> Orleans.Runtime.IdSpan
Public Function CreateIntegerKey (key As Long, keyExtension As ReadOnlySpan(Of Byte)) As IdSpan
Parameters
- key
- Int64
The key.
- keyExtension
- ReadOnlySpan<Byte>
The UTF-8 encoded key extension.
Returns
An IdSpan representing the provided key and key extension.
Applies to
CreateIntegerKey(Int64, String)
public static Orleans.Runtime.IdSpan CreateIntegerKey (long key, string? keyExtension);
static member CreateIntegerKey : int64 * string -> Orleans.Runtime.IdSpan
Public Function CreateIntegerKey (key As Long, keyExtension As String) As IdSpan
Parameters
- key
- Int64
The key.
- keyExtension
- String
The key extension.
Returns
An IdSpan representing the provided key and key extension.