GrainId.TryParse 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
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
- value
- ReadOnlySpan<Char>
- 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