Table of Contents

Class MessageType

Namespace
QuickLink.Messaging
Assembly
QuickLink.dll

Represents a message type.

public class MessageType
Inheritance
MessageType
Inherited Members

Properties

Gets the unique identifier of the message type.

public uint Id { get; }

Property Value

uint

Gets the name of the message type.

public string Name { get; }

Property Value

string

Methods

Gets the message type with the specified name. If the message type does not exist, a new one is created and added to the list of message types.

public static MessageType Get(string name)

Parameters

name string

The name of the message type.

Returns

MessageType

The message type with the specified name.

Gets the message type with the specified identifier.

public static MessageType Get(uint id)

Parameters

id uint

The identifier of the message type.

Returns

MessageType

The message type with the specified identifier.