AttributeValue Structure
Represents a value that is stored in an AttributeSet.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Syntax
public struct AttributeValue :
System.IEquatable<AttributeValue>
Remarks
The AttributeValue type is the value type in an AttributeSet. It can hold values of the following types:
System.Int64
String (not available in C#)
System.Boolean
System.Double
Platforms
Windows, Linux, Android
AttributeValue Members
The AttributeValue type has the following members.
Constructors
Name | Description |
---|---|
AttributeValue | Initializes a new instance of the AttributeValue class. |
Properties
Name | Description |
---|---|
IsEmpty | Gets a value that tells whether the AttributeValue contains a value or not. |
Type | Gets a value that tells what kind of value the AttributeValue holds. |
Value | Gets a boxed representation of the value contained in the AttributeValue. |
Methods
Name | Description |
---|---|
Equals | Overloaded. Determines whether two AttributeValue objects have the same value. |
GetHashCode | Returns the hash code for this AttributeValue. |
Determines whether two specified AttributeValue objects have the same value. | |
Determines whether two specified AttributeValue objects have different values. | |
ToString | Converts this AttributeValue to a human readable string. |
TryGetValue | Overloaded. Tries to get the value from the AttributeValue. |