JsonPrimitive Constructor (UInt16)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Initializes a new instance of a JsonPrimitive type with a UInt16 type.
This API is not CLS-compliant.
Namespace: System.Json
Assembly: System.Json (in System.Json.dll)
Syntax
'Declaration
<CLSCompliantAttribute(False)> _
Public Sub New ( _
value As UShort _
)
[CLSCompliantAttribute(false)]
public JsonPrimitive(
ushort value
)
Parameters
- value
Type: System.UInt16
The UInt16 object that initializes the new instance.
Remarks
A JsonPrimitive object stores a JsonType and the value used to initialize it. When initialized with a UInt16 object, the JsonType is a Number, which can be recovered using the JsonType property. The value used to initialize the JsonPrimitive object can be recovered using the ToString() method.
Examples
'Initialize JSON primitive with a UInt16.
Dim uInt16Number As System.UInt16 = 44
Dim jsonP4 As New JsonPrimitive(uInt16Number)
//Initialize JSON primitive with a UInt16.
System.UInt16 uInt16Number = 44;
JsonPrimitive jsonP4 = new JsonPrimitive(uInt16Number);
Version Information
Silverlight
Supported in: 5, 4, 3
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.