OscMessage MembersBespoke Osc Library

The OscMessage type exposes the following members.
Constructors

  NameDescription
Public methodOscMessage(IPEndPoint, String, OscClient)
Initializes a new instance of the OscMessage class.
Public methodOscMessage(IPEndPoint, String, Object)
Initializes a new instance of the OscMessage class.
Back to Top
Methods

  NameDescription
Public methodAppend T 
Appends a value to the message.
(Overrides OscPacket Append T (T).)
Public methodAppendNil
Appends a Nil value to the message.
Public methodAt T 
Return a entry in the packet.
(Inherited from OscPacket.)
Public methodClearData
Remove all data from the message.
Public methodOnlineEquals
Determines whether the specified OnlineObject is equal to the current OnlineObject.
(Inherited from OnlineObject.)
Protected methodOnlineFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from OnlineObject.)
Public methodStatic memberFromByteArray
Deserialize the packet.
Public methodOnlineGetHashCode
Serves as a hash function for a particular type.
(Inherited from OnlineObject.)
Public methodOnlineGetType
Gets the OnlineType of the current instance.
(Inherited from OnlineObject.)
Protected methodOnlineMemberwiseClone
Creates a shallow copy of the current OnlineObject.
(Inherited from OnlineObject.)
Public methodSend 
Transmit an OSC packet via TCP through the connected OscClient.
(Inherited from OscPacket.)
Public methodSend(IPEndPoint)
Transmit an Osc packet via UDP.
(Inherited from OscPacket.)
Public methodSend(IPEndPoint, IPEndPoint)
Transmit an Osc packet via UDP.
(Inherited from OscPacket.)
Public methodToByteArray
Serialize the packet.
(Overrides OscPacket ToByteArray .)
Public methodOnlineToString
Returns a string that represents the current object.
(Inherited from OnlineObject.)
Public methodUpdateDataAt
Update a value within the message at the specified index.
Back to Top
Fields

  NameDescription
Protected fieldStatic memberAddressPrefix
The prefix required by Osc address patterns.
Protected fieldStatic memberBlobTag
The type tag for a blob (binary large object -- byte array).
Protected fieldStatic memberCharacterTag
The type tag for an ASCII character (sent as a 32-bit int).
Protected fieldStatic memberColorTag
The type tag for a 32-bit RGBA color;
Protected fieldStatic memberDefaultTag
The beginning character in an Osc message type tag.
Protected fieldStatic memberDoubleTag
The type tag for an double-precision floating point value.
Protected fieldStatic memberFalseTag
The type tag for False. No bytes are allocated in the argument data.
Protected fieldStatic memberFloatTag
The type tag for an floating point value.
Protected fieldStatic memberInfinitumTag
The type tag for inifinitum. No bytes are allocated in the argument data.
Protected fieldStatic memberIntegerTag
The type tag for a 32-bit integer.
Protected fieldStatic memberLongTag
The type tag for a 64-bit integer.
Protected fieldmAddress
The OSC address pattern.
(Inherited from OscPacket.)
Protected fieldmClient
The destination of sent packets when using TransportType.Tcp.
(Inherited from OscPacket.)
Protected fieldmData
The contents of the packet.
(Inherited from OscPacket.)
Protected fieldmSourceEndPoint
The origin of the packet.
(Inherited from OscPacket.)
Protected fieldStatic memberNilTag
The type tag for Nil. No bytes are allocated in the argument data.
Protected fieldStatic memberStringTag
The type tag for a string.
Protected fieldStatic memberSymbolTag
The type tag for a symbol.
Protected fieldStatic memberTimeTag
The type tag for an Osc Time Tag.
Protected fieldStatic memberTrueTag
The type tag for True. No bytes are allocated in the argument data.
Back to Top
Properties

  NameDescription
Public propertyAddress
Gets the Osc address pattern.
(Inherited from OscPacket.)
Public propertyClient
Gets or sets the destination of sent packets when using TransportType.Tcp.
(Inherited from OscPacket.)
Public propertyData
Gets the contents of the packet.
(Inherited from OscPacket.)
Public propertyIsBundle
Specifies if the packet is an Osc bundle.
(Overrides OscPacket IsBundle.)
Public propertySourceEndPoint
Gets the origin of the packet.
(Inherited from OscPacket.)
Back to Top
See Also