ModuleListPageSearchOptions Constructors

Definition

Initializes a new instance of the ModuleListPageSearchOptions class.

Overloads

ModuleListPageSearchOptions()

Initializes a new instance of the ModuleListPageSearchOptions class.

ModuleListPageSearchOptions(String)

Initializes a new instance of the ModuleListPageSearchOptions class by using the specified search text.

ModuleListPageSearchOptions(String, ModuleListPageSearchField)

Initializes a new instance of the ModuleListPageSearchOptions class by using the specified search text and field.

ModuleListPageSearchOptions()

Initializes a new instance of the ModuleListPageSearchOptions class.

public:
 ModuleListPageSearchOptions();
public ModuleListPageSearchOptions ();
Public Sub New ()

Remarks

This constructor sets the ShowAll property to true, the Text property to null, and the Field property to null.

Applies to

ModuleListPageSearchOptions(String)

Initializes a new instance of the ModuleListPageSearchOptions class by using the specified search text.

public:
 ModuleListPageSearchOptions(System::String ^ text);
public ModuleListPageSearchOptions (string text);
new Microsoft.Web.Management.Client.ModuleListPageSearchOptions : string -> Microsoft.Web.Management.Client.ModuleListPageSearchOptions
Public Sub New (text As String)

Parameters

text
String

The text value for a search.

Remarks

This constructor sets the ShowAll property to false, the Text property to the value of the text parameter, and the Field property to null.

Applies to

ModuleListPageSearchOptions(String, ModuleListPageSearchField)

Initializes a new instance of the ModuleListPageSearchOptions class by using the specified search text and field.

public:
 ModuleListPageSearchOptions(System::String ^ text, Microsoft::Web::Management::Client::ModuleListPageSearchField ^ field);
public ModuleListPageSearchOptions (string text, Microsoft.Web.Management.Client.ModuleListPageSearchField field);
new Microsoft.Web.Management.Client.ModuleListPageSearchOptions : string * Microsoft.Web.Management.Client.ModuleListPageSearchField -> Microsoft.Web.Management.Client.ModuleListPageSearchOptions
Public Sub New (text As String, field As ModuleListPageSearchField)

Parameters

text
String

The text value for a search.

field
ModuleListPageSearchField

The field for a search.

Remarks

This constructor sets the ShowAll property to false, the Text property to the value of the text parameter, and the Field property to the value of the field parameter.

Applies to