JsonNode.Explicit 運算子

定義

多載

Explicit(JsonNode to Nullable<Guid>)

定義指定可為 Null 的 JsonNode 明確轉換為可為 Null 的 Guid

Explicit(JsonNode to Nullable<Int16>)

定義指定可為 Null 的 JsonNode 明確轉換為可為 Null 的 Int16

Explicit(JsonNode to Nullable<Int32>)

定義指定可為 Null 的 JsonNode 明確轉換為可為 Null 的 Int32

Explicit(JsonNode to Nullable<Int64>)

定義指定可為 Null 的 JsonNode 明確轉換為可為 Null 的 Int64

Explicit(JsonNode to Nullable<SByte>)

定義指定可為 Null 的 JsonNode 明確轉換為可為 Null 的 SByte

Explicit(JsonNode to Nullable<Single>)

定義指定可為 Null 的 JsonNode 明確轉換為可為 Null 的 Single

Explicit(JsonNode to Nullable<UInt16>)

定義指定可為 Null 的 JsonNode 明確轉換為可為 Null 的 UInt16

Explicit(JsonNode to UInt16)

定義指定 JsonNodeUInt16 的明確轉換。

Explicit(JsonNode to Nullable<UInt64>)

定義指定可為 Null 的 JsonNode 明確轉換為可為 Null 的 UInt64

Explicit(JsonNode to SByte)

定義指定 JsonNodeSByte 的明確轉換。

Explicit(JsonNode to Single)

定義指定 JsonNodeSingle 的明確轉換。

Explicit(JsonNode to String)

定義指定可為 Null 的 JsonNode 明確轉換為可為 Null 的 String

Explicit(JsonNode to Nullable<Double>)

定義指定可為 Null 的 JsonNode 明確轉換為可為 Null 的 Double

Explicit(JsonNode to UInt32)

定義指定 JsonNodeUInt32 的明確轉換。

Explicit(JsonNode to Nullable<UInt32>)

定義指定可為 Null 的 JsonNode 明確轉換為可為 Null 的 UInt32

Explicit(JsonNode to Nullable<Decimal>)

定義指定可為 Null 的 JsonNode 明確轉換為可為 Null 的 Decimal

Explicit(JsonNode to UInt64)

定義指定 JsonNodeUInt64 的明確轉換。

Explicit(JsonNode to Nullable<DateTime>)

定義指定可為 Null 的 JsonNode 明確轉換為可為 Null 的 DateTime

Explicit(JsonNode to Nullable<DateTimeOffset>)

定義指定可為 Null 的 JsonNode 明確轉換為可為 Null 的 DateTimeOffset

Explicit(JsonNode to Boolean)

定義指定 JsonNodeBoolean 的明確轉換。

Explicit(JsonNode to Byte)

定義指定 JsonNodeByte 的明確轉換。

Explicit(JsonNode to Char)

定義指定 JsonNodeChar 的明確轉換。

Explicit(JsonNode to DateTimeOffset)

定義指定 JsonNodeDateTimeOffset 的明確轉換。

Explicit(JsonNode to Decimal)

定義指定 JsonNodeDecimal 的明確轉換。

Explicit(JsonNode to Double)

定義指定 JsonNodeDouble 的明確轉換。

Explicit(JsonNode to DateTime)

定義指定 JsonNodeDateTime 的明確轉換。

Explicit(JsonNode to Int16)

定義指定 JsonNodeInt16 的明確轉換。

Explicit(JsonNode to Int32)

定義指定 JsonNodeInt32 的明確轉換。

Explicit(JsonNode to Int64)

定義指定 JsonNodeInt64 的明確轉換。

Explicit(JsonNode to Nullable<Boolean>)

定義指定可為 Null 的 JsonNode 明確轉換為可為 Null 的 Boolean

Explicit(JsonNode to Nullable<Byte>)

定義指定可為 Null 的 JsonNode 明確轉換為可為 Null 的 Byte

Explicit(JsonNode to Nullable<Char>)

定義指定 JsonNodeChar 的明確轉換。

Explicit(JsonNode to Guid)

定義指定 JsonNodeGuid 的明確轉換。

Explicit(JsonNode to Nullable<Guid>)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

定義指定可為 Null 的 JsonNode 明確轉換為可為 Null 的 Guid

public:
 static explicit operator Nullable<Guid>(System::Text::Json::Nodes::JsonNode ^ value);
public static explicit operator Guid? (System.Text.Json.Nodes.JsonNode? value);
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> Nullable<Guid>
Public Shared Narrowing Operator CType (value As JsonNode) As Nullable(Of Guid)

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

適用於

Explicit(JsonNode to Nullable<Int16>)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

定義指定可為 Null 的 JsonNode 明確轉換為可為 Null 的 Int16

public:
 static explicit operator Nullable<short>(System::Text::Json::Nodes::JsonNode ^ value);
public static explicit operator short? (System.Text.Json.Nodes.JsonNode? value);
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> Nullable<int16>
Public Shared Narrowing Operator CType (value As JsonNode) As Nullable(Of Short)

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

適用於

Explicit(JsonNode to Nullable<Int32>)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

定義指定可為 Null 的 JsonNode 明確轉換為可為 Null 的 Int32

public:
 static explicit operator Nullable<int>(System::Text::Json::Nodes::JsonNode ^ value);
public static explicit operator int? (System.Text.Json.Nodes.JsonNode? value);
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> Nullable<int>
Public Shared Narrowing Operator CType (value As JsonNode) As Nullable(Of Integer)

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

適用於

Explicit(JsonNode to Nullable<Int64>)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

定義指定可為 Null 的 JsonNode 明確轉換為可為 Null 的 Int64

public:
 static explicit operator Nullable<long>(System::Text::Json::Nodes::JsonNode ^ value);
public static explicit operator long? (System.Text.Json.Nodes.JsonNode? value);
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> Nullable<int64>
Public Shared Narrowing Operator CType (value As JsonNode) As Nullable(Of Long)

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

適用於

Explicit(JsonNode to Nullable<SByte>)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

重要

此 API 不符合 CLS 規範。

定義指定可為 Null 的 JsonNode 明確轉換為可為 Null 的 SByte

public:
 static explicit operator Nullable<System::SByte>(System::Text::Json::Nodes::JsonNode ^ value);
[System.CLSCompliant(false)]
public static explicit operator sbyte? (System.Text.Json.Nodes.JsonNode? value);
[<System.CLSCompliant(false)>]
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> Nullable<sbyte>
Public Shared Narrowing Operator CType (value As JsonNode) As Nullable(Of SByte)

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

屬性

適用於

Explicit(JsonNode to Nullable<Single>)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

定義指定可為 Null 的 JsonNode 明確轉換為可為 Null 的 Single

public:
 static explicit operator Nullable<float>(System::Text::Json::Nodes::JsonNode ^ value);
public static explicit operator float? (System.Text.Json.Nodes.JsonNode? value);
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> Nullable<single>
Public Shared Narrowing Operator CType (value As JsonNode) As Nullable(Of Single)

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

適用於

Explicit(JsonNode to Nullable<UInt16>)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

重要

此 API 不符合 CLS 規範。

定義指定可為 Null 的 JsonNode 明確轉換為可為 Null 的 UInt16

public:
 static explicit operator Nullable<System::UInt16>(System::Text::Json::Nodes::JsonNode ^ value);
[System.CLSCompliant(false)]
public static explicit operator ushort? (System.Text.Json.Nodes.JsonNode? value);
[<System.CLSCompliant(false)>]
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> Nullable<uint16>
Public Shared Narrowing Operator CType (value As JsonNode) As Nullable(Of UShort)

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

屬性

適用於

Explicit(JsonNode to UInt16)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

重要

此 API 不符合 CLS 規範。

定義指定 JsonNodeUInt16 的明確轉換。

public:
 static explicit operator System::UInt16(System::Text::Json::Nodes::JsonNode ^ value);
[System.CLSCompliant(false)]
public static explicit operator ushort (System.Text.Json.Nodes.JsonNode value);
[<System.CLSCompliant(false)>]
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> uint16
Public Shared Narrowing Operator CType (value As JsonNode) As UShort

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

屬性

適用於

Explicit(JsonNode to Nullable<UInt64>)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

重要

此 API 不符合 CLS 規範。

定義指定可為 Null 的 JsonNode 明確轉換為可為 Null 的 UInt64

public:
 static explicit operator Nullable<System::UInt64>(System::Text::Json::Nodes::JsonNode ^ value);
[System.CLSCompliant(false)]
public static explicit operator ulong? (System.Text.Json.Nodes.JsonNode? value);
[<System.CLSCompliant(false)>]
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> Nullable<uint64>
Public Shared Narrowing Operator CType (value As JsonNode) As Nullable(Of ULong)

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

屬性

適用於

Explicit(JsonNode to SByte)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

重要

此 API 不符合 CLS 規範。

定義指定 JsonNodeSByte 的明確轉換。

public:
 static explicit operator System::SByte(System::Text::Json::Nodes::JsonNode ^ value);
[System.CLSCompliant(false)]
public static explicit operator sbyte (System.Text.Json.Nodes.JsonNode value);
[<System.CLSCompliant(false)>]
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> sbyte
Public Shared Narrowing Operator CType (value As JsonNode) As SByte

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

屬性

適用於

Explicit(JsonNode to Single)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

定義指定 JsonNode 之 的明確轉換。 Single

public:
 static explicit operator float(System::Text::Json::Nodes::JsonNode ^ value);
public static explicit operator float (System.Text.Json.Nodes.JsonNode value);
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> single
Public Shared Narrowing Operator CType (value As JsonNode) As Single

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

適用於

Explicit(JsonNode to String)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

定義指定可為 Null JsonNode 的明確轉換至可為 String Null 的 。

public:
 static explicit operator System::String ^(System::Text::Json::Nodes::JsonNode ^ value);
public static explicit operator string? (System.Text.Json.Nodes.JsonNode? value);
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> string
Public Shared Narrowing Operator CType (value As JsonNode) As String

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

適用於

Explicit(JsonNode to Nullable<Double>)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

定義指定可為 Null JsonNode 的明確轉換至可為 Double Null 的 。

public:
 static explicit operator Nullable<double>(System::Text::Json::Nodes::JsonNode ^ value);
public static explicit operator double? (System.Text.Json.Nodes.JsonNode? value);
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> Nullable<double>
Public Shared Narrowing Operator CType (value As JsonNode) As Nullable(Of Double)

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

適用於

Explicit(JsonNode to UInt32)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

重要

此 API 不符合 CLS 規範。

定義指定 JsonNode 之 的明確轉換。 UInt32

public:
 static explicit operator System::UInt32(System::Text::Json::Nodes::JsonNode ^ value);
[System.CLSCompliant(false)]
public static explicit operator uint (System.Text.Json.Nodes.JsonNode value);
[<System.CLSCompliant(false)>]
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> uint32
Public Shared Narrowing Operator CType (value As JsonNode) As UInteger

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

屬性

適用於

Explicit(JsonNode to Nullable<UInt32>)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

重要

此 API 不符合 CLS 規範。

定義指定可為 Null JsonNode 的明確轉換至可為 UInt32 Null 的 。

public:
 static explicit operator Nullable<System::UInt32>(System::Text::Json::Nodes::JsonNode ^ value);
[System.CLSCompliant(false)]
public static explicit operator uint? (System.Text.Json.Nodes.JsonNode? value);
[<System.CLSCompliant(false)>]
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> Nullable<uint32>
Public Shared Narrowing Operator CType (value As JsonNode) As Nullable(Of UInteger)

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

屬性

適用於

Explicit(JsonNode to Nullable<Decimal>)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

定義指定可為 Null JsonNode 的明確轉換至可為 Decimal Null 的 。

public:
 static explicit operator Nullable<System::Decimal>(System::Text::Json::Nodes::JsonNode ^ value);
public static explicit operator decimal? (System.Text.Json.Nodes.JsonNode? value);
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> Nullable<decimal>
Public Shared Narrowing Operator CType (value As JsonNode) As Nullable(Of Decimal)

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

適用於

Explicit(JsonNode to UInt64)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

重要

此 API 不符合 CLS 規範。

定義指定 JsonNode 之 的明確轉換。 UInt64

public:
 static explicit operator System::UInt64(System::Text::Json::Nodes::JsonNode ^ value);
[System.CLSCompliant(false)]
public static explicit operator ulong (System.Text.Json.Nodes.JsonNode value);
[<System.CLSCompliant(false)>]
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> uint64
Public Shared Narrowing Operator CType (value As JsonNode) As ULong

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

屬性

適用於

Explicit(JsonNode to Nullable<DateTime>)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

定義指定可為 Null JsonNode 的明確轉換至可為 DateTime Null 的 。

public:
 static explicit operator Nullable<DateTime>(System::Text::Json::Nodes::JsonNode ^ value);
public static explicit operator DateTime? (System.Text.Json.Nodes.JsonNode? value);
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> Nullable<DateTime>
Public Shared Narrowing Operator CType (value As JsonNode) As Nullable(Of DateTime)

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

適用於

Explicit(JsonNode to Nullable<DateTimeOffset>)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

定義指定可為 Null JsonNode 的明確轉換至可為 DateTimeOffset Null 的 。

public:
 static explicit operator Nullable<DateTimeOffset>(System::Text::Json::Nodes::JsonNode ^ value);
public static explicit operator DateTimeOffset? (System.Text.Json.Nodes.JsonNode? value);
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> Nullable<DateTimeOffset>
Public Shared Narrowing Operator CType (value As JsonNode) As Nullable(Of DateTimeOffset)

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

適用於

Explicit(JsonNode to Boolean)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

定義指定 JsonNode 之 的明確轉換。 Boolean

public:
 static explicit operator bool(System::Text::Json::Nodes::JsonNode ^ value);
public static explicit operator bool (System.Text.Json.Nodes.JsonNode value);
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> bool
Public Shared Narrowing Operator CType (value As JsonNode) As Boolean

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

適用於

Explicit(JsonNode to Byte)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

定義指定 JsonNode 之 的明確轉換。 Byte

public:
 static explicit operator System::Byte(System::Text::Json::Nodes::JsonNode ^ value);
public static explicit operator byte (System.Text.Json.Nodes.JsonNode value);
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> byte
Public Shared Narrowing Operator CType (value As JsonNode) As Byte

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

適用於

Explicit(JsonNode to Char)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

定義指定 JsonNode 之 的明確轉換。 Char

public:
 static explicit operator char(System::Text::Json::Nodes::JsonNode ^ value);
public static explicit operator char (System.Text.Json.Nodes.JsonNode value);
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> char
Public Shared Narrowing Operator CType (value As JsonNode) As Char

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

適用於

Explicit(JsonNode to DateTimeOffset)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

定義指定 JsonNode 之 的明確轉換。 DateTimeOffset

public:
 static explicit operator DateTimeOffset(System::Text::Json::Nodes::JsonNode ^ value);
public static explicit operator DateTimeOffset (System.Text.Json.Nodes.JsonNode value);
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> DateTimeOffset
Public Shared Narrowing Operator CType (value As JsonNode) As DateTimeOffset

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

適用於

Explicit(JsonNode to Decimal)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

定義指定 JsonNode 之 的明確轉換。 Decimal

public:
 static explicit operator System::Decimal(System::Text::Json::Nodes::JsonNode ^ value);
public static explicit operator decimal (System.Text.Json.Nodes.JsonNode value);
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> decimal
Public Shared Narrowing Operator CType (value As JsonNode) As Decimal

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

適用於

Explicit(JsonNode to Double)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

定義指定 JsonNode 之 的明確轉換。 Double

public:
 static explicit operator double(System::Text::Json::Nodes::JsonNode ^ value);
public static explicit operator double (System.Text.Json.Nodes.JsonNode value);
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> double
Public Shared Narrowing Operator CType (value As JsonNode) As Double

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

適用於

Explicit(JsonNode to DateTime)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

定義指定 JsonNode 之 的明確轉換。 DateTime

public:
 static explicit operator DateTime(System::Text::Json::Nodes::JsonNode ^ value);
public static explicit operator DateTime (System.Text.Json.Nodes.JsonNode value);
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> DateTime
Public Shared Narrowing Operator CType (value As JsonNode) As DateTime

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

適用於

Explicit(JsonNode to Int16)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

定義指定 JsonNode 轉換為 的 Int16 明確轉換。

public:
 static explicit operator short(System::Text::Json::Nodes::JsonNode ^ value);
public static explicit operator short (System.Text.Json.Nodes.JsonNode value);
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> int16
Public Shared Narrowing Operator CType (value As JsonNode) As Short

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

適用於

Explicit(JsonNode to Int32)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

定義指定 JsonNode 轉換為 的 Int32 明確轉換。

public:
 static explicit operator int(System::Text::Json::Nodes::JsonNode ^ value);
public static explicit operator int (System.Text.Json.Nodes.JsonNode value);
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> int
Public Shared Narrowing Operator CType (value As JsonNode) As Integer

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

適用於

Explicit(JsonNode to Int64)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

定義指定 JsonNode 轉換為 的 Int64 明確轉換。

public:
 static explicit operator long(System::Text::Json::Nodes::JsonNode ^ value);
public static explicit operator long (System.Text.Json.Nodes.JsonNode value);
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> int64
Public Shared Narrowing Operator CType (value As JsonNode) As Long

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

適用於

Explicit(JsonNode to Nullable<Boolean>)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

定義指定可為 Null JsonNode 的明確轉換至可為 Boolean Null 的 。

public:
 static explicit operator Nullable<bool>(System::Text::Json::Nodes::JsonNode ^ value);
public static explicit operator bool? (System.Text.Json.Nodes.JsonNode? value);
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> Nullable<bool>
Public Shared Narrowing Operator CType (value As JsonNode) As Nullable(Of Boolean)

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

適用於

Explicit(JsonNode to Nullable<Byte>)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

定義指定可為 Null JsonNode 的明確轉換至可為 Byte Null 的 。

public:
 static explicit operator Nullable<System::Byte>(System::Text::Json::Nodes::JsonNode ^ value);
public static explicit operator byte? (System.Text.Json.Nodes.JsonNode? value);
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> Nullable<byte>
Public Shared Narrowing Operator CType (value As JsonNode) As Nullable(Of Byte)

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

適用於

Explicit(JsonNode to Nullable<Char>)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

定義指定 JsonNode 之 的明確轉換。 Char

public:
 static explicit operator Nullable<char>(System::Text::Json::Nodes::JsonNode ^ value);
public static explicit operator char? (System.Text.Json.Nodes.JsonNode? value);
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> Nullable<char>
Public Shared Narrowing Operator CType (value As JsonNode) As Nullable(Of Char)

參數

value
JsonNode

Char要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

適用於

Explicit(JsonNode to Guid)

來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs
來源:
JsonNode.Operators.cs

定義指定 JsonNode 之 的明確轉換。 Guid

public:
 static explicit operator Guid(System::Text::Json::Nodes::JsonNode ^ value);
public static explicit operator Guid (System.Text.Json.Nodes.JsonNode value);
static member op_Explicit : System.Text.Json.Nodes.JsonNode -> Guid
Public Shared Narrowing Operator CType (value As JsonNode) As Guid

參數

value
JsonNode

JsonNode要明確轉換的 。

傳回

從 實例轉換的值 JsonNode

適用於