AttributeValue.AttributeValue Constructors
Initializes a new instance of the AttributeValue class.
Overload List
Name | Description | |
---|---|---|
Public method | AttributeValue() | Initializes a new instance of the AttributeValue class that is empty. |
Public method | AttributeValue(Atom value) | Initializes a new instance of the AttributeValue class with the given Atom value. |
Public method | AttributeValue(System.Boolean value) | Initializes a new instance of the AttributeValue class with the given boolean value. |
Public method | AttributeValue(System.Double value) | Initializes a new instance of the AttributeValue class with the given double-precision number. |
Public method | AttributeValue(System.Int32 value) | Initializes a new instance of the AttributeValue class with the given 32-bit integer value. |
Public method | AttributeValue(System.Int64 value) | Initializes a new instance of the AttributeValue class with the given 64-bit integer value. |
Public method | AttributeValue(System.String value) | Initializes a new instance of the AttributeValue class with the given string value. |
Public method | AttributeValue(System.Single value) | Initializes a new instance of the AttributeValue class with the given single-precision number. |
Public method | AttributeValue(System.Object value) | Initializes a new instance of the AttributeValue class with the object. |
AttributeValue()
Initializes a new instance of the AttributeValue class that is empty.Syntax
public AttributeValue ()
AttributeValue(Atom value)
Initializes a new instance of the AttributeValue class with the given Atom value.Syntax
public AttributeValue (
Atom value
)
Parameters
value
Type: Atom
An atom.
An atom.
AttributeValue(System.Boolean value)
Initializes a new instance of the AttributeValue class with the given boolean value.Syntax
public AttributeValue (
System.Boolean value
)
Parameters
value
Type: System.Boolean
A bool.
A bool.
AttributeValue(System.Double value)
Initializes a new instance of the AttributeValue class with the given double-precision number.Syntax
public AttributeValue (
System.Double value
)
Parameters
value
Type: System.Double
A double-precision number.
A double-precision number.
AttributeValue(System.Int32 value)
Initializes a new instance of the AttributeValue class with the given 32-bit integer value.Syntax
public AttributeValue (
System.Int32 value
)
Parameters
value
Type: System.Int32
An 32-bit integer.
An 32-bit integer.
Remarks
This constructor converts value into a 64-bit integer.
AttributeValue(System.Int64 value)
Initializes a new instance of the AttributeValue class with the given 64-bit integer value.Syntax
public AttributeValue (
System.Int64 value
)
Parameters
value
Type: System.Int64
An 64-bit integer.
An 64-bit integer.
AttributeValue(System.String value)
Initializes a new instance of the AttributeValue class with the given string value.Syntax
public AttributeValue (
System.String value
)
Parameters
value
Type: System.String
A string.
A string.
AttributeValue(System.Single value)
Initializes a new instance of the AttributeValue class with the given single-precision number.Syntax
public AttributeValue (
System.Single value
)
Parameters
value
Type: System.Single
A single-precision number.
A single-precision number.
Remarks
This constructor converts value into a double-precision number.
AttributeValue(System.Object value)
Initializes a new instance of the AttributeValue class with the object.Syntax
public AttributeValue (
System.Object value
)
Parameters
value
Type: System.Object
An object.
An object.
Remarks
This method throws an InvalidCastException if value cannot be converted into one of types that can be held in an AttributeValue.
Platforms
Windows, Linux, Android