Struct ServiceVersion
WCF Service version information. Is it current, frozen or obsolete?
Inherited Members
Namespace: SuperOffice.Services
Assembly: SoCore.dll
Syntax
public struct ServiceVersion
Constructors
ServiceVersion(int, string, bool, bool, bool)
WCF Service version information. Is it current, frozen or obsolete?
Declaration
public ServiceVersion(int number, string name, bool released, bool current, bool obsolete)
Parameters
Type | Name | Description |
---|---|---|
int | number | |
string | name | |
bool | released | |
bool | current | |
bool | obsolete |
Properties
IsCurrent
Is the services contract still changing?
Declaration
public readonly bool IsCurrent { get; }
Property Value
Type | Description |
---|---|
bool |
IsFrozen
Is the services contract going to change or not?
Declaration
public readonly bool IsFrozen { get; }
Property Value
Type | Description |
---|---|
bool |
IsObsolete
Is the services contract useful?
Declaration
public readonly bool IsObsolete { get; }
Property Value
Type | Description |
---|---|
bool |
Name
"Services87""
Declaration
public readonly string Name { get; }
Property Value
Type | Description |
---|---|
string |
Number
87
Declaration
public readonly int Number { get; }
Property Value
Type | Description |
---|---|
int |