JMGetSessionProperty
Obtains a property value for an existing session.
OSStatus JMGetSessionProperty (
JMSessionRef session,
const char* propertyName,
char* propertyValue,
UInt32 valueLength);
session
- The session whose property you wish to obtain.
propertyName
- A null-terminated string holding the name of the property whose value you want to obtain.
propertyValue
- A pointer to the property value. On return this location contains the value of
propertyName.
valueLength
- The maximum size of
propertyValue.
- function result
- A result code. See "JManager Result Codes" (page 69) for a list of result codes that JManager may return in this field.
DISCUSSION
This function corresponds to the Java method java.lang.System.getProperty.
SEE ALSO
The JMPutSessionProperty function (page 26).