Class AppliedInfo<T>
When using Lightweight transactions, it provides information whether the change was applied or not.
Inheritance
System.Object
AppliedInfo<T>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dse.Mapping
Assembly: Dse.dll
Syntax
public class AppliedInfo<T>
Type Parameters
Name | Description |
---|---|
T |
Constructors
AppliedInfo(T)
Creates a new instance marking the change as not applied and provides information about the existing data.
Declaration
public AppliedInfo(T existing)
Parameters
Type | Name | Description |
---|---|---|
T | existing |
AppliedInfo(Boolean)
Creates a new instance marking the change as applied
Declaration
public AppliedInfo(bool applied)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | applied |
Properties
Applied
Determines if the change was applied.
Declaration
public bool Applied { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Existing
Gets or sets the existing data that prevented
Declaration
public T Existing { get; set; }
Property Value
Type | Description |
---|---|
T |