Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.0 » QAnywhere » QAnywhere API Reference » QAnywhere .NET API reference » iAnywhere.QAnywhere.Client namespace (.NET 2.0) » QAManagerBase interface

 

GetStringStoreProperty method

Gets a string value for a pre-defined or custom message store property.

Syntax
Visual Basic
Public Function GetStringStoreProperty( _
   ByVal propName As String _
) As String
C#
public string  GetStringStoreProperty(
   string  propName
);
Parameters
  • propName   The pre-defined or custom property name.

Return value

The string property value or null if the property does not exist.

Remarks

You can use this method to access pre-defined or user-defined client store properties.

For a list of pre-defined properties, see MessageStoreProperties class.

For more information, see Client message store properties.

See also