Opalis Quick Integration Kit 3.0
Gets or sets the comma delimited set of options that are supported by the filter.

Namespace:  Opalis.QuickIntegrationKit
Assembly:  Opalis.QuickIntegrationKit(in Opalis.QuickIntegrationKit.dll) Version: 3.0.0.0 (3.1.0.1)

Syntax

C#
public 
string 
Options { 
get; 
set; }
Visual Basic (Declaration)
Public 
Property 
Options 
As 
String
Visual C++
public:
property 
String^ 
Options {
	
String^ 
get ();
	
void 
set (
String^ 
value);
}

Remarks

The Opalis Integration Server Client will provide users with a browser dialog that will allow users to select from the options that are specified using this property.

Examples

CopyC#
[OpalisFilter(Options=
"Critical, High, Medium, Low,
Unknown")]
public 
string Importance
{
	get { 
return 
this.importance; }
}

See Also