Class IgbTransactionState
Represents the final state of items with all transactions combined.
Inheritance
System.Object
IgbTransactionState
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbTransactionState : BaseRendererElement, JsonSerializable
Constructors
IgbTransactionState()
Declaration
public IgbTransactionState()
Properties
Id
Gets or sets the ID for the state. I.e. an items primary key.
Declaration
public object Id { get; set; }
Property Value
| Type |
Description |
| System.Object |
|
IdScript
Provides a means of setting Id in the JavaScript environment.
Declaration
public string IdScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
TransactionType
Gets or sets how this state was created.
Declaration
public TransactionType TransactionType { get; set; }
Property Value
Type
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
Value
Gets or sets the final value with all transaction deltas combined.
Declaration
public object Value { get; set; }
Property Value
| Type |
Description |
| System.Object |
|
ValueScript
Provides a means of setting Value in the JavaScript environment.
Declaration
public string ValueScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Version
Gets or sets the version data for this item. Used for concurrency.
Declaration
public object Version { get; set; }
Property Value
| Type |
Description |
| System.Object |
|
VersionScript
Provides a means of setting Version in the JavaScript environment.
Declaration
public string VersionScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Methods
FindByName(String)
Declaration
public override object FindByName(string name)
Parameters
| Type |
Name |
Description |
| System.String |
name |
|
Returns
| Type |
Description |
| System.Object |
|
Overrides
Implements