SaaS CMS has officially launched! Learn more now.

Class MetaIdentifierValue

Represents property value for identifier type.

Inheritance
System.Object
MetaIdentifierValue
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Mediachase.BusinessFoundation.Data.Meta
Assembly: Mediachase.BusinessFoundation.Data.dll
Version: 11.8.3
Syntax
public class MetaIdentifierValue : IAggregatedValue, IChangeTracking

Constructors

MetaIdentifierValue(Int32, String)

Initializes a new instance of the MetaIdentifierValue class.

Declaration
public MetaIdentifierValue(int id, string value)
Parameters
Type Name Description
System.Int32 id

The id.

System.String value

The value.

Properties

Handle

Gets the id.

Declaration
public int Handle { get; }
Property Value
Type Description
System.Int32

The id.

IsChanged

Gets a value indicating whether this instance is changed.

Declaration
public bool IsChanged { get; }
Property Value
Type Description
System.Boolean

true if this instance is changed; otherwise, false.

Value

Gets or sets the value.

Declaration
public string Value { get; set; }
Property Value
Type Description
System.String

The value.

Methods

AcceptChanges()

Accepts the changes.

Declaration
public void AcceptChanges()

Explicit Interface Implementations

IAggregatedValue.GetValue()

Gets the value.

Declaration
object IAggregatedValue.GetValue()
Returns
Type Description
System.Object

IAggregatedValue.SetValue(Object)

Sets the value.

Declaration
void IAggregatedValue.SetValue(object value)
Parameters
Type Name Description
System.Object value

The value.

Implements