JsonNode.Implicit Operator

Definition

Overloads

Implicit(Nullable<Single> to JsonNode)

Defines an implicit conversion of a specified nullable Single to a JsonNode.

Implicit(Nullable<Guid> to JsonNode)

Defines an implicit conversion of a specified nullable Guid to a JsonNode.

Implicit(Nullable<Int16> to JsonNode)

Defines an implicit conversion of a specified nullable Int16 to a JsonNode.

Implicit(Nullable<Int32> to JsonNode)

Defines an implicit conversion of a specified nullable Int32 to a JsonNode.

Implicit(Nullable<Int64> to JsonNode)

Defines an implicit conversion of a specified nullable Int64 to a JsonNode.

Implicit(Nullable<SByte> to JsonNode)

Defines an implicit conversion of a specified nullable SByte to a JsonNode.

Implicit(Nullable<UInt16> to JsonNode)

Defines an implicit conversion of a specified nullable UInt16 to a JsonNode.

Implicit(UInt64 to JsonNode)

Defines an implicit conversion of a specified nullable UInt64 to a JsonNode.

Implicit(Nullable<UInt64> to JsonNode)

Defines an implicit conversion of a specified nullable UInt64 to a JsonNode.

Implicit(SByte to JsonNode)

Defines an implicit conversion of a specified nullable SByte to a JsonNode.

Implicit(Single to JsonNode)

Defines an implicit conversion of a specified nullable Single to a JsonNode.

Implicit(String to JsonNode)

Defines an implicit conversion of a specified nullable String to a JsonNode.

Implicit(UInt16 to JsonNode)

Defines an implicit conversion of a specified nullable UInt16 to a JsonNode.

Implicit(UInt32 to JsonNode)

Defines an implicit conversion of a specified nullable UInt32 to a JsonNode.

Implicit(Nullable<UInt32> to JsonNode)

Defines an implicit conversion of a specified nullable UInt32 to a JsonNode.

Implicit(Nullable<Double> to JsonNode)

Defines an implicit conversion of a specified nullable Double to a JsonNode.

Implicit(Nullable<DateTime> to JsonNode)

Defines an implicit conversion of a specified nullable DateTime to a JsonNode.

Implicit(Nullable<DateTimeOffset> to JsonNode)

Defines an implicit conversion of a specified nullable DateTimeOffset to a JsonNode.

Implicit(Boolean to JsonNode)

Defines an implicit conversion of a given Boolean to a JsonNode.

Implicit(Nullable<Decimal> to JsonNode)

Defines an implicit conversion of a specified nullable Decimal to a JsonNode.

Implicit(Char to JsonNode)

Defines an implicit conversion of a given Char to a JsonNode.

Implicit(DateTime to JsonNode)

Defines an implicit conversion of a given DateTime to a JsonNode.

Implicit(DateTimeOffset to JsonNode)

Defines an implicit conversion of a given DateTimeOffset to a JsonNode.

Implicit(Decimal to JsonNode)

Defines an implicit conversion of a given Decimal to a JsonNode.

Implicit(Double to JsonNode)

Defines an implicit conversion of a given Double to a JsonNode.

Implicit(Byte to JsonNode)

Defines an implicit conversion of a given Byte to a JsonNode.

Implicit(Int16 to JsonNode)

Defines an implicit conversion of a given Int16 to a JsonNode.

Implicit(Int32 to JsonNode)

Defines an implicit conversion of a given Int32 to a JsonNode.

Implicit(Int64 to JsonNode)

Defines an implicit conversion of a given Int64 to a JsonNode.

Implicit(Nullable<Boolean> to JsonNode)

Defines an implicit conversion of a specified nullable Boolean to a nullable JsonNode.

Implicit(Nullable<Byte> to JsonNode)

Defines an implicit conversion of a specified nullable Byte to a JsonNode.

Implicit(Nullable<Char> to JsonNode)

Defines an implicit conversion of a specified nullable Char to a JsonNode.

Implicit(Guid to JsonNode)

Defines an implicit conversion of a given Guid to a JsonNode.

Implicit(Nullable<Single> to JsonNode)

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

Defines an implicit conversion of a specified nullable Single to a 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

Parameters

value
Nullable<Single>

A Single to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Applies to

Implicit(Nullable<Guid> to JsonNode)

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

Defines an implicit conversion of a specified nullable Guid to a 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

Parameters

value
Nullable<Guid>

A Guid to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Applies to

Implicit(Nullable<Int16> to JsonNode)

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

Defines an implicit conversion of a specified nullable Int16 to a 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

Parameters

value
Nullable<Int16>

A Int16 to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Applies to

Implicit(Nullable<Int32> to JsonNode)

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

Defines an implicit conversion of a specified nullable Int32 to a 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

Parameters

value
Nullable<Int32>

A Int32 to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Applies to

Implicit(Nullable<Int64> to JsonNode)

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

Defines an implicit conversion of a specified nullable Int64 to a 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

Parameters

value
Nullable<Int64>

A Int64 to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Applies to

Implicit(Nullable<SByte> to JsonNode)

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

Important

This API is not CLS-compliant.

Defines an implicit conversion of a specified nullable SByte to a 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

Parameters

value
Nullable<SByte>

A SByte to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Attributes

Applies to

Implicit(Nullable<UInt16> to JsonNode)

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

Important

This API is not CLS-compliant.

Defines an implicit conversion of a specified nullable UInt16 to a 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

Parameters

value
Nullable<UInt16>

A UInt16 to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Attributes

Applies to

Implicit(UInt64 to JsonNode)

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

Important

This API is not CLS-compliant.

Defines an implicit conversion of a specified nullable UInt64 to a 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

Parameters

value
UInt64

A UInt64 to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Attributes

Applies to

Implicit(Nullable<UInt64> to JsonNode)

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

Important

This API is not CLS-compliant.

Defines an implicit conversion of a specified nullable UInt64 to a 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

Parameters

value
Nullable<UInt64>

A UInt64 to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Attributes

Applies to

Implicit(SByte to JsonNode)

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

Important

This API is not CLS-compliant.

Defines an implicit conversion of a specified nullable SByte to a 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

Parameters

value
SByte

A SByte to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Attributes

Applies to

Implicit(Single to JsonNode)

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

Defines an implicit conversion of a specified nullable Single to a 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

Parameters

value
Single

A Single to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Applies to

Implicit(String to JsonNode)

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

Defines an implicit conversion of a specified nullable String to a 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

Parameters

value
String

A String to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Applies to

Implicit(UInt16 to JsonNode)

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

Important

This API is not CLS-compliant.

Defines an implicit conversion of a specified nullable UInt16 to a 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

Parameters

value
UInt16

A UInt16 to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Attributes

Applies to

Implicit(UInt32 to JsonNode)

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

Important

This API is not CLS-compliant.

Defines an implicit conversion of a specified nullable UInt32 to a 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

Parameters

value
UInt32

A UInt32 to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Attributes

Applies to

Implicit(Nullable<UInt32> to JsonNode)

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

Important

This API is not CLS-compliant.

Defines an implicit conversion of a specified nullable UInt32 to a 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

Parameters

value
Nullable<UInt32>

A UInt32 to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Attributes

Applies to

Implicit(Nullable<Double> to JsonNode)

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

Defines an implicit conversion of a specified nullable Double to a 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

Parameters

value
Nullable<Double>

A Double to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Applies to

Implicit(Nullable<DateTime> to JsonNode)

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

Defines an implicit conversion of a specified nullable DateTime to a 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

Parameters

value
Nullable<DateTime>

A DateTime to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Applies to

Implicit(Nullable<DateTimeOffset> to JsonNode)

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

Defines an implicit conversion of a specified nullable DateTimeOffset to a 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

Parameters

value
Nullable<DateTimeOffset>

A DateTimeOffset to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Applies to

Implicit(Boolean to JsonNode)

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

Defines an implicit conversion of a given Boolean to a 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

Parameters

value
Boolean

A Boolean to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Applies to

Implicit(Nullable<Decimal> to JsonNode)

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

Defines an implicit conversion of a specified nullable Decimal to a 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

Parameters

value
Nullable<Decimal>

A Decimal to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Applies to

Implicit(Char to JsonNode)

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

Defines an implicit conversion of a given Char to a 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

Parameters

value
Char

A Char to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Applies to

Implicit(DateTime to JsonNode)

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

Defines an implicit conversion of a given DateTime to a 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

Parameters

value
DateTime

A DateTime to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Applies to

Implicit(DateTimeOffset to JsonNode)

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

Defines an implicit conversion of a given DateTimeOffset to a 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

Parameters

value
DateTimeOffset

A DateTimeOffset to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Applies to

Implicit(Decimal to JsonNode)

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

Defines an implicit conversion of a given Decimal to a 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

Parameters

value
Decimal

A Decimal to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Applies to

Implicit(Double to JsonNode)

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

Defines an implicit conversion of a given Double to a 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

Parameters

value
Double

A Double to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Applies to

Implicit(Byte to JsonNode)

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

Defines an implicit conversion of a given Byte to a 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

Parameters

value
Byte

A Byte to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Applies to

Implicit(Int16 to JsonNode)

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

Defines an implicit conversion of a given Int16 to a 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

Parameters

value
Int16

A Int16 to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Applies to

Implicit(Int32 to JsonNode)

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

Defines an implicit conversion of a given Int32 to a 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

Parameters

value
Int32

A Int32 to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Applies to

Implicit(Int64 to JsonNode)

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

Defines an implicit conversion of a given Int64 to a 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

Parameters

value
Int64

A Int64 to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Applies to

Implicit(Nullable<Boolean> to JsonNode)

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

Defines an implicit conversion of a specified nullable Boolean to a nullable 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

Parameters

value
Nullable<Boolean>

A Boolean to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Applies to

Implicit(Nullable<Byte> to JsonNode)

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

Defines an implicit conversion of a specified nullable Byte to a 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

Parameters

value
Nullable<Byte>

A Byte to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Applies to

Implicit(Nullable<Char> to JsonNode)

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

Defines an implicit conversion of a specified nullable Char to a 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

Parameters

value
Nullable<Char>

A Char to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Applies to

Implicit(Guid to JsonNode)

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

Defines an implicit conversion of a given Guid to a 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

Parameters

value
Guid

A Guid to implicitly convert.

Returns

A JsonNode instance converted from the value parameter.

Applies to