Class MonitoringTransactionProperty
Represents a single monitoring transaction property assigned by a custom component.
Inheritance
Inherited Members
Namespace: Nevatech.Vsb.Repository.Entities
Assembly: Nevatech.Vsb.Repository.dll
Syntax
public sealed class MonitoringTransactionProperty : IValidator, IExtensibleDataObject
Constructors
MonitoringTransactionProperty()
Declaration
public MonitoringTransactionProperty()
Properties
EndpointId
Gets or sets the endpoint id.
Declaration
public int EndpointId { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
ErrorMessage
Gets the summary of validation errors populated by the call to Validate() method.
Declaration
public string ErrorMessage { get; }
Property Value
Type | Description |
---|---|
System.String |
ExchangeId
Gets or sets unique message exchange identifier (optional, if TransactionId is present).
Declaration
public string ExchangeId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ExtensionData
Gets or sets System.Runtime.Serialization.ExtensionDataObject that enables serialization roundtrips.
Declaration
public ExtensionDataObject ExtensionData { get; set; }
Property Value
Type | Description |
---|---|
System.Runtime.Serialization.ExtensionDataObject |
Id
Gets or sets this domain object's id.
Declaration
public long Id { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |
Name
Gets or sets the property name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TransactionId
Gets or sets unique message exchange identifier (optional, if ExchangeId is present).
Declaration
public Guid? TransactionId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |
Value
Gets or sets the property value.
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ValueDateTime
Gets or sets the date and time when value was set.
Declaration
public DateTime ValueDateTime { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
Methods
GetSize()
Calculates and returns approximate size of the serialized to XML instance.
Declaration
public int GetSize()
Returns
Type | Description |
---|---|
System.Int32 | Approximate size of the serialized to XML instance. |
ToString()
Returns a string that represents the current object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | String that represents the current object. |
Overrides
Validate()
Evaluates the state of this object.
Declaration
public bool Validate()
Returns
Type | Description |
---|---|
System.Boolean | True if state is valid; otherwise, false. |