SumType<T1,T2>.Explicit Operator
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
Explicit(SumType<T1,T2> to T2) |
Attempts to cast an instance of SumType<T1,T2> to an instance of |
Explicit(SumType<T1,T2> to T1) |
Attempts to cast an instance of SumType<T1,T2> to an instance of |
Explicit(SumType<T1,T2> to T2)
Attempts to cast an instance of SumType<T1,T2> to an instance of T2
.
public:
static explicit operator T2(Microsoft::VisualStudio::LanguageServer::Protocol::SumType<T1, T2> sum);
public static explicit operator T2 (Microsoft.VisualStudio.LanguageServer.Protocol.SumType<T1,T2> sum);
static member op_Explicit : Microsoft.VisualStudio.LanguageServer.Protocol.SumType<'T1, 'T2> -> 'T2
Public Shared Narrowing Operator CType (sum As SumType(Of T1, T2)) As T2
Parameters
- sum
- SumType<T1,T2>
Instance to unwrap.
Returns
Exceptions
Thrown if this instance of SumType<T1,T2> does not contain an instance of T2
.
Applies to
Explicit(SumType<T1,T2> to T1)
Attempts to cast an instance of SumType<T1,T2> to an instance of T1
.
public:
static explicit operator T1(Microsoft::VisualStudio::LanguageServer::Protocol::SumType<T1, T2> sum);
public static explicit operator T1 (Microsoft.VisualStudio.LanguageServer.Protocol.SumType<T1,T2> sum);
static member op_Explicit : Microsoft.VisualStudio.LanguageServer.Protocol.SumType<'T1, 'T2> -> 'T1
Public Shared Narrowing Operator CType (sum As SumType(Of T1, T2)) As T1
Parameters
- sum
- SumType<T1,T2>
Instance to unwrap.
Returns
Exceptions
Thrown if this instance of SumType<T1,T2> does not contain an instance of T1
.