GrainId.TryParse 方法

定义

重载

TryParse(String, GrainId)

尝试从字符串中 GrainId 分析 。

TryParse(ReadOnlySpan<Char>, IFormatProvider, GrainId)

尝试分析 GrainId 范围中的 。

TryParse(String, IFormatProvider, GrainId)

尝试从字符串中 GrainId 分析 。

TryParse(String, GrainId)

尝试从字符串中 GrainId 分析 。

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

参数

value
String
result
GrainId

返回

true 如果已分析有效 GrainId ,则为 。 否则为 false

适用于

TryParse(ReadOnlySpan<Char>, IFormatProvider, GrainId)

尝试分析 GrainId 范围中的 。

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

参数

provider
IFormatProvider
result
GrainId

返回

true 如果已分析有效 GrainId ,则为 。 否则为 false

适用于

TryParse(String, IFormatProvider, GrainId)

尝试从字符串中 GrainId 分析 。

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

参数

value
String
provider
IFormatProvider
result
GrainId

返回

true 如果已分析有效 GrainId ,则为 。 否则为 false

适用于