Struct Message
Represents a message from a remote source, targeted at a specific method on a specific object.
Implements
Inherited Members
Namespace: HoloMetrix.Net.Remote
Assembly: HoloMetrix.Net.Remote.dll
Syntax
public struct Message : IMessage
Constructors
| Improve this Doc View SourceMessage(string, string, string, string)
Initializes a new instance of the Message struct.
Declaration
public Message(string obj, string id, string command, string parameters)
Parameters
| Type | Name | Description |
|---|---|---|
| string | obj | Type of object targeted. |
| string | id | Identifier to locate an instance of the object. |
| string | command | Method or property targeted. |
| string | parameters | Parameters used to execute a Method or a set operation. |
Properties
| Improve this Doc View SourceCommand
Method or property targeted.
Declaration
public string Command { get; }
Property Value
| Type | Description |
|---|---|
| string |
Null
Represents an empty message.
Declaration
public static Message Null { get; }
Property Value
| Type | Description |
|---|---|
| Message |
Object
Type of object targeted by message.
Declaration
public string Object { get; }
Property Value
| Type | Description |
|---|---|
| string |
ObjectID
ID to identify an object instance.
Declaration
public string ObjectID { get; }
Property Value
| Type | Description |
|---|---|
| string |
OriginalMessage
Gets the original message.
Declaration
public string OriginalMessage { get; }
Property Value
| Type | Description |
|---|---|
| string |
Parameters
Parameters used to execute a Method or a set operation.
Declaration
public string Parameters { get; }
Property Value
| Type | Description |
|---|---|
| string |