SetBooleanStoreProperty method

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

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

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