Class ServiceVersionUsageSummary
Provides basic information about usage of a service version.
Inherited Members
Namespace: Nevatech.Vsb.Repository.Entities
Assembly: Nevatech.Vsb.Repository.dll
Syntax
[DataContract(Namespace = "http://schemas.nevatech.com/sentinet/2011/02")]
public sealed class ServiceVersionUsageSummary
Constructors
ServiceVersionUsageSummary()
Declaration
public ServiceVersionUsageSummary()
Properties
AverageBytes
Gets or sets the average number of bytes received and sent processing a service call.
Declaration
[DataMember]
public long AverageBytes { get; set; }
Property Value
| Type | Description |
|---|---|
| long |
AverageDuration
Gets or sets the average duration (in milliseconds) of a service call (time between receiving request message and returning response message).
Declaration
[DataMember]
public long AverageDuration { get; set; }
Property Value
| Type | Description |
|---|---|
| long |
ExceptionCount
Gets or sets the number of calls to this service resulted in communication errors.
Declaration
[DataMember]
public long ExceptionCount { get; set; }
Property Value
| Type | Description |
|---|---|
| long |
FailureCount
Gets or sets the number of faulted calls (faults) that service experienced.
Declaration
[DataMember]
public long FailureCount { get; set; }
Property Value
| Type | Description |
|---|---|
| long |
FriendlyName
Gets or sets the service version friendly name.
Declaration
[DataMember]
public string FriendlyName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
IsDeleted
Gets or sets flag indicating that service version has been deleted.
Declaration
[DataMember]
public bool IsDeleted { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
Kind
Gets or sets the service kind: SOAP, REST, and OData.
Declaration
[DataMember]
public ServiceKind Kind { get; set; }
Property Value
| Type | Description |
|---|---|
| ServiceKind |
ServiceName
Gets or sets service friendly name.
Declaration
[DataMember]
public string ServiceName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ServiceVersionId
Gets or sets identifier of the service version.
Declaration
[DataMember]
public int ServiceVersionId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
TotalCount
Gets or sets the total number of calls (messages) that service received.
Declaration
[DataMember]
public long TotalCount { get; set; }
Property Value
| Type | Description |
|---|---|
| long |
Version
Gets or sets the custom-defined version identifier.
Declaration
[DataMember(EmitDefaultValue = false)]
public string Version { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
VersionNumber
Gets or set service version number.
Declaration
[DataMember]
public int VersionNumber { get; set; }
Property Value
| Type | Description |
|---|---|
| int |