Class MonitoringTransactionProperty
Represents a single monitoring transaction property assigned by a custom component.
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 | 
|---|---|
| Int32 | 
ErrorMessage
Gets the summary of validation errors populated by the call to Validate() method.
Declaration
public string ErrorMessage { get; }
  Property Value
| Type | Description | 
|---|---|
| String | 
ExchangeId
Gets or sets unique message exchange identifier (optional, if TransactionId is present).
Declaration
public string ExchangeId { get; set; }
  Property Value
| Type | Description | 
|---|---|
| String | 
ExtensionData
Gets or sets ExtensionDataObject that enables serialization roundtrips.
Declaration
public ExtensionDataObject ExtensionData { get; set; }
  Property Value
| Type | Description | 
|---|---|
| ExtensionDataObject | 
Id
Gets or sets this domain object's id.
Declaration
public long Id { get; set; }
  Property Value
| Type | Description | 
|---|---|
| Int64 | 
Name
Gets or sets the property name.
Declaration
public string Name { get; set; }
  Property Value
| Type | Description | 
|---|---|
| String | 
TransactionId
Gets or sets unique message exchange identifier (optional, if ExchangeId is present).
Declaration
public Guid? TransactionId { get; set; }
  Property Value
| Type | Description | 
|---|---|
| Nullable<Guid> | 
Value
Gets or sets the property value.
Declaration
public string Value { get; set; }
  Property Value
| Type | Description | 
|---|---|
| String | 
ValueDateTime
Gets or sets the date and time when value was set.
Declaration
public DateTime ValueDateTime { get; set; }
  Property Value
| Type | Description | 
|---|---|
| DateTime | 
Methods
GetSize()
Calculates and returns approximate size of the serialized to XML instance.
Declaration
public int GetSize()
  Returns
| Type | Description | 
|---|---|
| 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 | 
|---|---|
| String | String that represents the current object.  | 
      
Overrides
Validate()
Evaluates the state of this object.
Declaration
public bool Validate()
  Returns
| Type | Description | 
|---|---|
| Boolean | True if state is valid; otherwise, false.  |