Class OperationUsageSummary
Provides basic information about usage of a particular service operation.
Inherited Members
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 |
---|---|
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 |
---|---|
Int64 |
ContractName
Gets or sets contract name that operation belongs to.
Declaration
public string ContractName { get; set; }
Property Value
Type | Description |
---|---|
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 |
---|---|
Int64 |
FailureCount
Gets or sets the number of faulted calls (faults) to this operation.
Declaration
public long FailureCount { get; set; }
Property Value
Type | Description |
---|---|
Int64 |
IsDeleted
Gets or sets flag indicating that operation has been deleted.
Declaration
public bool IsDeleted { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
OperationId
Gets or sets identifier of the service operation.
Declaration
public int? OperationId { get; set; }
Property Value
Type | Description |
---|---|
Nullable<Int32> |
OperationName
Gets or sets operation name.
Declaration
public string OperationName { get; set; }
Property Value
Type | Description |
---|---|
String |
TotalCount
Gets or sets the total number of calls (messages) to the operation.
Declaration
public long TotalCount { get; set; }
Property Value
Type | Description |
---|---|
Int64 |