JsonNode.Implicit 运算符

定义

重载

Implicit(Nullable<Single> to JsonNode)

定义从指定的 可为 Single null 到 的 JsonNode隐式转换。

Implicit(Nullable<Guid> to JsonNode)

定义从指定的 可为 Guid null 到 的 JsonNode隐式转换。

Implicit(Nullable<Int16> to JsonNode)

定义从指定的 可为 Int16 null 到 的 JsonNode隐式转换。

Implicit(Nullable<Int32> to JsonNode)

定义从指定的 可为 Int32 null 到 的 JsonNode隐式转换。

Implicit(Nullable<Int64> to JsonNode)

定义从指定的 可为 Int64 null 到 的 JsonNode隐式转换。

Implicit(Nullable<SByte> to JsonNode)

定义从指定的 可为 SByte null 到 的 JsonNode隐式转换。

Implicit(Nullable<UInt16> to JsonNode)

定义从指定的 可为 UInt16 null 到 的 JsonNode隐式转换。

Implicit(UInt64 to JsonNode)

定义从指定的 可为 UInt64 null 到 的 JsonNode隐式转换。

Implicit(Nullable<UInt64> to JsonNode)

定义从指定的 可为 UInt64 null 到 的 JsonNode隐式转换。

Implicit(SByte to JsonNode)

定义从指定的 可为 SByte null 到 的 JsonNode隐式转换。

Implicit(Single to JsonNode)

定义从指定的 可为 Single null 到 的 JsonNode隐式转换。

Implicit(String to JsonNode)

定义从指定的 可为 String null 到 的 JsonNode隐式转换。

Implicit(UInt16 to JsonNode)

定义从指定的 可为 UInt16 null 到 的 JsonNode隐式转换。

Implicit(UInt32 to JsonNode)

定义从指定的 可为 UInt32 null 到 的 JsonNode隐式转换。

Implicit(Nullable<UInt32> to JsonNode)

定义从指定的 可为 UInt32 null 到 的 JsonNode隐式转换。

Implicit(Nullable<Double> to JsonNode)

定义从指定的 可为 Double null 到 的 JsonNode隐式转换。

Implicit(Nullable<DateTime> to JsonNode)

定义从指定的 可为 DateTime null 到 的 JsonNode隐式转换。

Implicit(Nullable<DateTimeOffset> to JsonNode)

定义从指定的 可为 DateTimeOffset null 到 的 JsonNode隐式转换。

Implicit(Boolean to JsonNode)

定义给定 Boolean 到 的 JsonNode隐式转换。

Implicit(Nullable<Decimal> to JsonNode)

定义从指定的 可为 Decimal null 到 的 JsonNode隐式转换。

Implicit(Char to JsonNode)

定义给定 Char 到 的 JsonNode隐式转换。

Implicit(DateTime to JsonNode)

定义给定 DateTime 到 的 JsonNode隐式转换。

Implicit(DateTimeOffset to JsonNode)

定义给定 DateTimeOffset 到 的 JsonNode隐式转换。

Implicit(Decimal to JsonNode)

定义给定 Decimal 到 的 JsonNode隐式转换。

Implicit(Double to JsonNode)

定义给定 Double 到 的 JsonNode隐式转换。

Implicit(Byte to JsonNode)

定义给定 Byte 到 的 JsonNode隐式转换。

Implicit(Int16 to JsonNode)

定义给定 Int16 到 的 JsonNode隐式转换。

Implicit(Int32 to JsonNode)

定义给定 Int32 到 的 JsonNode隐式转换。

Implicit(Int64 to JsonNode)

定义给定 Int64 到 的 JsonNode隐式转换。

Implicit(Nullable<Boolean> to JsonNode)

定义从指定的可为 null 到可以为 Boolean null 的 JsonNode隐式转换。

Implicit(Nullable<Byte> to JsonNode)

定义从指定的 可为 Byte null 到 的 JsonNode隐式转换。

Implicit(Nullable<Char> to JsonNode)

定义从指定的 可为 Char null 到 的 JsonNode隐式转换。

Implicit(Guid to JsonNode)

定义给定 Guid 到 的 JsonNode隐式转换。

Implicit(Nullable<Single> to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

定义从指定的 可为 Single null 到 的 JsonNode隐式转换。

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

参数

value
Nullable<Single>

要隐式转换的 Single

返回

JsonNodevalue 参数转换的 实例。

适用于

Implicit(Nullable<Guid> to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

定义从指定的 可为 Guid null 到 的 JsonNode隐式转换。

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

参数

value
Nullable<Guid>

要隐式转换的 Guid

返回

JsonNodevalue 参数转换的 实例。

适用于

Implicit(Nullable<Int16> to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

定义从指定的 可为 Int16 null 到 的 JsonNode隐式转换。

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

参数

value
Nullable<Int16>

要隐式转换的 Int16

返回

JsonNodevalue 参数转换的 实例。

适用于

Implicit(Nullable<Int32> to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

定义从指定的 可为 Int32 null 到 的 JsonNode隐式转换。

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

参数

value
Nullable<Int32>

要隐式转换的 Int32

返回

JsonNodevalue 参数转换的 实例。

适用于

Implicit(Nullable<Int64> to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

定义从指定的 可为 Int64 null 到 的 JsonNode隐式转换。

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

参数

value
Nullable<Int64>

要隐式转换的 Int64

返回

JsonNodevalue 参数转换的 实例。

适用于

Implicit(Nullable<SByte> to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

重要

此 API 不符合 CLS。

定义从指定的 可为 SByte null 到 的 JsonNode隐式转换。

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

参数

value
Nullable<SByte>

要隐式转换的 SByte

返回

JsonNodevalue 参数转换的 实例。

属性

适用于

Implicit(Nullable<UInt16> to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

重要

此 API 不符合 CLS。

定义从指定的 可为 UInt16 null 到 的 JsonNode隐式转换。

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

参数

value
Nullable<UInt16>

要隐式转换的 UInt16

返回

JsonNodevalue 参数转换的 实例。

属性

适用于

Implicit(UInt64 to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

重要

此 API 不符合 CLS。

定义从指定的 可为 UInt64 null 到 的 JsonNode隐式转换。

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

参数

value
UInt64

要隐式转换的 UInt64

返回

JsonNodevalue 参数转换的 实例。

属性

适用于

Implicit(Nullable<UInt64> to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

重要

此 API 不符合 CLS。

定义从指定的 可为 UInt64 null 到 的 JsonNode隐式转换。

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

参数

value
Nullable<UInt64>

要隐式转换的 UInt64

返回

JsonNodevalue 参数转换的 实例。

属性

适用于

Implicit(SByte to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

重要

此 API 不符合 CLS。

定义从指定的 可为 SByte null 到 的 JsonNode隐式转换。

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

参数

value
SByte

要隐式转换的 SByte

返回

JsonNodevalue 参数转换的 实例。

属性

适用于

Implicit(Single to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

定义指定的 可为 null 的Single隐式转换。JsonNode

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

参数

value
Single

要隐式转换的 Single

返回

JsonNodevalue 参数转换的实例。

适用于

Implicit(String to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

定义指定的 可为 null 的String隐式转换。JsonNode

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

参数

value
String

要隐式转换的 String

返回

JsonNodevalue 参数转换的实例。

适用于

Implicit(UInt16 to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

重要

此 API 不符合 CLS。

定义指定的 可为 null 的UInt16隐式转换。JsonNode

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

参数

value
UInt16

要隐式转换的 UInt16

返回

JsonNodevalue 参数转换的实例。

属性

适用于

Implicit(UInt32 to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

重要

此 API 不符合 CLS。

定义指定的 可为 null 的UInt32隐式转换。JsonNode

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

参数

value
UInt32

要隐式转换的 UInt32

返回

JsonNodevalue 参数转换的实例。

属性

适用于

Implicit(Nullable<UInt32> to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

重要

此 API 不符合 CLS。

定义指定的 可为 null 的UInt32隐式转换。JsonNode

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

参数

value
Nullable<UInt32>

要隐式转换的 UInt32

返回

JsonNodevalue 参数转换的实例。

属性

适用于

Implicit(Nullable<Double> to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

定义指定的 可为 null 的Double隐式转换。JsonNode

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

参数

value
Nullable<Double>

要隐式转换的 Double

返回

JsonNodevalue 参数转换的实例。

适用于

Implicit(Nullable<DateTime> to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

定义指定的 可为 null 的DateTime隐式转换。JsonNode

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

参数

value
Nullable<DateTime>

要隐式转换的 DateTime

返回

JsonNodevalue 参数转换的实例。

适用于

Implicit(Nullable<DateTimeOffset> to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

定义指定的 可为 null 的DateTimeOffset隐式转换。JsonNode

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

参数

value
Nullable<DateTimeOffset>

要隐式转换的 DateTimeOffset

返回

JsonNodevalue 参数转换的实例。

适用于

Implicit(Boolean to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

定义给定 Boolean 到 的 JsonNode隐式转换。

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

参数

value
Boolean

要隐式转换的 Boolean

返回

JsonNodevalue 参数转换的实例。

适用于

Implicit(Nullable<Decimal> to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

定义指定的 可为 null 的Decimal隐式转换。JsonNode

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

参数

value
Nullable<Decimal>

要隐式转换的 Decimal

返回

JsonNodevalue 参数转换的实例。

适用于

Implicit(Char to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

定义给定 Char 到 的 JsonNode隐式转换。

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

参数

value
Char

要隐式转换的 Char

返回

JsonNodevalue 参数转换的实例。

适用于

Implicit(DateTime to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

定义给定 DateTime 到 的 JsonNode隐式转换。

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

参数

value
DateTime

要隐式转换的 DateTime

返回

JsonNodevalue 参数转换的实例。

适用于

Implicit(DateTimeOffset to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

定义给定 DateTimeOffset 到 的 JsonNode隐式转换。

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

参数

value
DateTimeOffset

要隐式转换的 DateTimeOffset

返回

JsonNodevalue 参数转换的实例。

适用于

Implicit(Decimal to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

定义给定 Decimal 到 的 JsonNode隐式转换。

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

参数

value
Decimal

要隐式转换的 Decimal

返回

JsonNodevalue 参数转换的实例。

适用于

Implicit(Double to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

定义给定 Double 到 的 JsonNode隐式转换。

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

参数

value
Double

要隐式转换的 Double

返回

JsonNodevalue 参数转换的实例。

适用于

Implicit(Byte to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

定义给定 Byte 到 的 JsonNode隐式转换。

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

参数

value
Byte

要隐式转换的 Byte

返回

JsonNodevalue 参数转换的实例。

适用于

Implicit(Int16 to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

定义给定 Int16 到 的 JsonNode隐式转换。

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

参数

value
Int16

要隐式转换的 Int16

返回

JsonNodevalue 参数转换的实例。

适用于

Implicit(Int32 to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

定义给定 Int32 到 的 JsonNode隐式转换。

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

参数

value
Int32

要隐式转换的 Int32

返回

JsonNodevalue 参数转换的实例。

适用于

Implicit(Int64 to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

定义给定 Int64 到 的 JsonNode隐式转换。

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

参数

value
Int64

要隐式转换的 Int64

返回

JsonNodevalue 参数转换的实例。

适用于

Implicit(Nullable<Boolean> to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

定义将指定的可以为 null 的 Boolean 隐式转换为可以为 null 的 JsonNode

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

参数

value
Nullable<Boolean>

要隐式转换的 Boolean

返回

JsonNodevalue 参数转换的实例。

适用于

Implicit(Nullable<Byte> to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

定义指定的 可为 null 的Byte隐式转换。JsonNode

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

参数

value
Nullable<Byte>

要隐式转换的 Byte

返回

JsonNodevalue 参数转换的实例。

适用于

Implicit(Nullable<Char> to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

定义指定的 可为 null 的Char隐式转换。JsonNode

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

参数

value
Nullable<Char>

要隐式转换的 Char

返回

JsonNodevalue 参数转换的实例。

适用于

Implicit(Guid to JsonNode)

Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs
Source:
JsonNode.Operators.cs

定义给定 Guid 到 的 JsonNode隐式转换。

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

参数

value
Guid

要隐式转换的 Guid

返回

JsonNodevalue 参数转换的实例。

适用于