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

 

SetStringStoreProperty method

Sets a pre-defined or custom message store property to a string value.

Syntax
Visual Basic
Public Sub SetStringStoreProperty( _
   ByVal propName As String, _
   ByVal val As String _
)
C#
public void SetStringStoreProperty(
   string  propName,
   string  val
);
Parameters
  • propName   The pre-defined or custom property name.

  • val   The string property value.

Remarks

You can use this method to set 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