Class CascadeMessage
CascadeMessage class represents a message from a cascade.
Inheritance
System.Object
CascadeMessage
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Sdl.LanguagePlatform.TranslationMemoryApi
Assembly: Sdl.LanguagePlatform.TranslationMemoryApi.dll
Syntax
public class CascadeMessage
Constructors
CascadeMessage(CascadeEntry, CascadeMessageCode)
Constructor that takes the given entry and code.
Declaration
public CascadeMessage(CascadeEntry entry, CascadeMessageCode code)
Parameters
Type | Name | Description |
---|---|---|
CascadeEntry | entry | entry |
CascadeMessageCode | code | code |
CascadeMessage(CascadeEntry, CascadeMessageCode, Exception)
Constructor that takes the given entry, code, and exception.
Declaration
public CascadeMessage(CascadeEntry entry, CascadeMessageCode code, Exception exception)
Parameters
Type | Name | Description |
---|---|---|
CascadeEntry | entry | entry |
CascadeMessageCode | code | code |
System.Exception | exception | exception |
CascadeMessage(CascadeEntry, Exception)
Constructor that takes the given entry and exception.
Declaration
public CascadeMessage(CascadeEntry entry, Exception exception)
Parameters
Type | Name | Description |
---|---|---|
CascadeEntry | entry | entry |
System.Exception | exception | exception |
Properties
Code
Code property represents the code.
Declaration
public CascadeMessageCode Code { get; }
Property Value
Type | Description |
---|---|
CascadeMessageCode |
Entry
Entry property represents the entry.
Declaration
public CascadeEntry Entry { get; }
Property Value
Type | Description |
---|---|
CascadeEntry |
Exception
Exception property represents the exception.
Declaration
public Exception Exception { get; }
Property Value
Type | Description |
---|---|
System.Exception |