Class ServiceVersion
WCF Service version information. Is it current, frozen or obsolete?
Namespace: SuperOffice.Services
Assembly: SoCore.dll
Syntax
public sealed class ServiceVersion : ValueType
Constructors
ServiceVersion(Int32, String, Boolean, Boolean, Boolean)
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 |
---|---|---|
Int32 | number | |
String | name | |
Boolean | released | |
Boolean | current | |
Boolean | obsolete |
Properties
IsCurrent
Is the services contract still changing?
Declaration
public bool IsCurrent { get; }
Property Value
Type | Description |
---|---|
Boolean |
IsFrozen
Is the services contract going to change or not?
Declaration
public bool IsFrozen { get; }
Property Value
Type | Description |
---|---|
Boolean |
IsObsolete
Is the services contract useful?
Declaration
public bool IsObsolete { get; }
Property Value
Type | Description |
---|---|
Boolean |
Name
"Services87""
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
String |
Number
87
Declaration
public int Number { get; }
Property Value
Type | Description |
---|---|
Int32 |
Extension Methods
EnumUtil.MapEnums<From, To>(From)