Class OperationUsageSummary
Provides basic information about usage of a particular service operation.
Inheritance
System.Object
OperationUsageSummary
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: Nevatech.Vsb.Repository.Entities
Assembly: Nevatech.Vsb.Repository.dll
Syntax
public sealed class OperationUsageSummary
Constructors
OperationUsageSummary()
Declaration
public OperationUsageSummary()
Properties
AverageBytes
Gets or sets the average number of bytes received and sent processing a call.
Declaration
public long AverageBytes { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |
AverageDuration
Gets or sets the average duration (in milliseconds) of a call (time between receiving request message and returning response message).
Declaration
public long AverageDuration { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |
ContractName
Gets or sets contract name that operation belongs to.
Declaration
public string ContractName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ExceptionCount
Gets or sets the number of calls to this operation resulted in communication errors.
Declaration
public long ExceptionCount { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |
FailureCount
Gets or sets the number of faulted calls (faults) to this operation.
Declaration
public long FailureCount { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |
IsDeleted
Gets or sets flag indicating that operation has been deleted.
Declaration
public bool IsDeleted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
OperationId
Gets or sets identifier of the service operation.
Declaration
public int? OperationId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
OperationName
Gets or sets operation name.
Declaration
public string OperationName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TotalCount
Gets or sets the total number of calls (messages) to the operation.
Declaration
public long TotalCount { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |