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

SQL Anywhere 11.0.1 » QAnywhere » QAnywhere Reference » QAnywhere .NET API reference » QAnywhere .NET API for clients (.NET 2.0) » QAManagerBase interface

 

SetLongStoreProperty method

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

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

  • val   The long 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