Düzenle

Aracılığıyla paylaş


GrainId.TryParse Method

Definition

Overloads

TryParse(String, GrainId)

Tries to parse a GrainId from the string.

TryParse(ReadOnlySpan<Char>, IFormatProvider, GrainId)

Tries to parse a GrainId from the span.

TryParse(String, IFormatProvider, GrainId)

Tries to parse a GrainId from the string.

TryParse(String, GrainId)

Tries to parse a GrainId from the string.

public static bool TryParse (string? value, out Orleans.Runtime.GrainId result);
static member TryParse : string * GrainId -> bool
Public Shared Function TryParse (value As String, ByRef result As GrainId) As Boolean

Parameters

value
String
result
GrainId

Returns

true if a valid GrainId was parsed. false otherwise

Applies to

TryParse(ReadOnlySpan<Char>, IFormatProvider, GrainId)

Tries to parse a GrainId from the span.

public static bool TryParse (ReadOnlySpan<char> value, IFormatProvider? provider, out Orleans.Runtime.GrainId result);
static member TryParse : ReadOnlySpan<char> * IFormatProvider * GrainId -> bool
Public Shared Function TryParse (value As ReadOnlySpan(Of Char), provider As IFormatProvider, ByRef result As GrainId) As Boolean

Parameters

provider
IFormatProvider
result
GrainId

Returns

true if a valid GrainId was parsed. false otherwise

Applies to

TryParse(String, IFormatProvider, GrainId)

Tries to parse a GrainId from the string.

public static bool TryParse (string? value, IFormatProvider? provider, out Orleans.Runtime.GrainId result);
static member TryParse : string * IFormatProvider * GrainId -> bool
Public Shared Function TryParse (value As String, provider As IFormatProvider, ByRef result As GrainId) As Boolean

Parameters

value
String
provider
IFormatProvider
result
GrainId

Returns

true if a valid GrainId was parsed. false otherwise

Applies to