Class CascadeMessage
CascadeMessage class represents a message from a cascade.
Inheritance
Object
CascadeMessage
Inherited Members
Object.ToString()
Object.Equals(Object)
Object.Equals(Object, Object)
Object.ReferenceEquals(Object, Object)
Object.GetHashCode()
Object.GetType()
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 |
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 |
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 |
---|---|
Exception |