Show / Hide Table of Contents

Struct Message

Represents a message from a remote source, targeted at a specific method on a specific object.

Implements
IMessage
Inherited Members
ValueType.Equals(object)
ValueType.GetHashCode()
ValueType.ToString()
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetType()
Namespace: HoloMetrix.Net.Remote
Assembly: HoloMetrix.Net.Remote.dll
Syntax
public struct Message : IMessage

Constructors

| Improve this Doc View Source

Message(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 Source

Command

Method or property targeted.

Declaration
public string Command { get; }
Property Value
Type Description
string
| Improve this Doc View Source

Null

Represents an empty message.

Declaration
public static Message Null { get; }
Property Value
Type Description
Message
| Improve this Doc View Source

Object

Type of object targeted by message.

Declaration
public string Object { get; }
Property Value
Type Description
string
| Improve this Doc View Source

ObjectID

ID to identify an object instance.

Declaration
public string ObjectID { get; }
Property Value
Type Description
string
| Improve this Doc View Source

OriginalMessage

Gets the original message.

Declaration
public string OriginalMessage { get; }
Property Value
Type Description
string
| Improve this Doc View Source

Parameters

Parameters used to execute a Method or a set operation.

Declaration
public string Parameters { get; }
Property Value
Type Description
string

Implements

IMessage
  • Improve this Doc
  • View Source
Back to top Generated by DocFX