[TIBCO.EMS .NET client library 8.1 documentation]

Sets a short property value with the specified name into the message

Namespace:  TIBCO.EMS
Assembly:  TIBCO.EMS (in TIBCO.EMS.dll)

Syntax

public void SetShortProperty(
	string name,
	short val
)
Public Sub SetShortProperty ( _
	name As String, _
	val As Short _
)
public:
void SetShortProperty(
	String^ name, 
	short val
)

Parameters

name
Type: System..::.String
Set the short property with this name.
val
Type: System..::.Int16
the short property value to set

Remarks

Property names must obey the JMS rules for a message selector identifier. Property names must not be null, and must not be empty strings.

Exceptions

ExceptionCondition
TIBCO.EMS..::.MessageNotWriteableExceptionAn MessageNotWriteableException may be thrown if properties are read-only
System..::.ArgumentExceptionAn ArgumentException may be thrown if the name is null or if the name is an empty string

See Also