Class TerminologyProviderStatus
Contains information on the current status of the terminology provider
Inheritance
Object
TerminologyProviderStatus
Inherited Members
Object.ToString()
Object.Equals(Object)
Object.Equals(Object, Object)
Object.ReferenceEquals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Namespace: Sdl.Terminology.TerminologyProvider.Core
Assembly: Sdl.Terminology.TerminologyProvider.Core.dll
Syntax
public class TerminologyProviderStatus
Constructors
TerminologyProviderStatus(Boolean, String)
Default constructor
Declaration
public TerminologyProviderStatus(bool isConnected = true, string errorMessage = null)
Parameters
Type | Name | Description |
---|---|---|
Boolean | isConnected | False if a connection to the terminology provider could not be established, true otherwise |
String | errorMessage | Details about issues encountered while connecting to the terminology provider |
Properties
ErrorMessage
Returns details about issues encountered while connecting to the terminology provider. null if a valid connection was established.
Declaration
public string ErrorMessage { get; set; }
Property Value
Type | Description |
---|---|
String |
IsConnected
False if a connection to the terminology provider could not be established, true otherwise
Declaration
public bool IsConnected { get; set; }
Property Value
Type | Description |
---|---|
Boolean |