AttributeValue.TryGetValue Methods
Tries to get the value from the AttributeValue.
Thread safety: This method is thread-safe.
Overload List
Name | Description | |
---|---|---|
TryGetValue(out Atom value) | Tries to get an Atom value from the AttributeValue. | |
TryGetValue(out System.Boolean value) | Tries to get a System.Boolean value from the AttributeValue. | |
TryGetValue(out System.Double value) | Tries to get a System.Double value from the AttributeValue. | |
TryGetValue(out System.Int32 value) | Tries to get an System.Int32 (not available in C#) value from the AttributeValue. | |
TryGetValue(out System.Int64 value) | Tries to get an System.Int64 value from the AttributeValue. | |
TryGetValue(out System.String value) | Tries to get a String (not available in C#) value from the AttributeValue. |
TryGetValue(out Atom value)
Tries to get an Atom value from the AttributeValue.Syntax
public System.Boolean TryGetValue (
out Atom value
)
Parameters
value
Type: Atom
When this method returns, contains the value stored in the attribute value if the types match.
When this method returns, contains the value stored in the attribute value if the types match.
Return Value
Type: System.Boolean
True if the AttributeValue holds an atom value that was returned in value; otherwise, False.
True if the AttributeValue holds an atom value that was returned in value; otherwise, False.
TryGetValue(out System.Boolean value)
Tries to get a System.Boolean value from the AttributeValue.Syntax
public System.Boolean TryGetValue (
out System.Boolean value
)
Parameters
value
Type: System.Boolean
When this method returns, contains the value stored in the attribute value if the types match.
When this method returns, contains the value stored in the attribute value if the types match.
Return Value
Type: System.Boolean
True if the AttributeValue holds a System.Boolean value that was returned in value; otherwise, False.
True if the AttributeValue holds a System.Boolean value that was returned in value; otherwise, False.
TryGetValue(out System.Double value)
Tries to get a System.Double value from the AttributeValue.Syntax
public System.Boolean TryGetValue (
out System.Double value
)
Parameters
value
Type: System.Double
When this method returns, contains the value stored in the attribute value if the types match.
When this method returns, contains the value stored in the attribute value if the types match.
Return Value
Type: System.Boolean
True if the AttributeValue holds a System.Double value that was returned in value; otherwise, False.
True if the AttributeValue holds a System.Double value that was returned in value; otherwise, False.
TryGetValue(out System.Int32 value)
Tries to get an System.Int32 (not available in C#) value from the AttributeValue.Syntax
public System.Boolean TryGetValue (
out System.Int32 value
)
Parameters
value
Type: System.Int32
When this method returns, contains the value stored in the attribute value if the types match.
When this method returns, contains the value stored in the attribute value if the types match.
Return Value
Type: System.Boolean
True if the AttributeValue holds a System.Int64 value in a range supported by a System.Int32 (not available in C#) that was returned in value; otherwise, False.
True if the AttributeValue holds a System.Int64 value in a range supported by a System.Int32 (not available in C#) that was returned in value; otherwise, False.
TryGetValue(out System.Int64 value)
Tries to get an System.Int64 value from the AttributeValue.Syntax
public System.Boolean TryGetValue (
out System.Int64 value
)
Parameters
value
Type: System.Int64
When this method returns, contains the value stored in the attribute value if the types match.
When this method returns, contains the value stored in the attribute value if the types match.
Return Value
Type: System.Boolean
True if the AttributeValue holds a System.Int64 value that was returned in value; otherwise, False.
True if the AttributeValue holds a System.Int64 value that was returned in value; otherwise, False.
TryGetValue(out System.String value)
Tries to get a String (not available in C#) value from the AttributeValue.Syntax
public System.Boolean TryGetValue (
out System.String value
)
Parameters
value
Type: System.String
When this method returns, contains the value stored in the attribute value if the types match.
When this method returns, contains the value stored in the attribute value if the types match.
Return Value
Type: System.Boolean
True if the AttributeValue holds a String (not available in C#) value that was returned in value; otherwise, False.
True if the AttributeValue holds a String (not available in C#) value that was returned in value; otherwise, False.
Platforms
Windows, Linux, Android