DesignTimeParseData Constructors

Definition

Initializes a new instance of the DesignTimeParseData class.

Overloads

DesignTimeParseData(IDesignerHost, String)

This API supports the product infrastructure and is not intended to be used directly from your code.

Initializes a new instance of the DesignTimeParseData class without a specified filter.

DesignTimeParseData(IDesignerHost, String, String)

This API supports the product infrastructure and is not intended to be used directly from your code.

Initializes a new instance of the DesignTimeParseData class with the specified filter.

DesignTimeParseData(IDesignerHost, String)

Initializes a new instance of the DesignTimeParseData class without a specified filter.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 DesignTimeParseData(System::ComponentModel::Design::IDesignerHost ^ designerHost, System::String ^ parseText);
public DesignTimeParseData (System.ComponentModel.Design.IDesignerHost designerHost, string parseText);
new System.Web.UI.DesignTimeParseData : System.ComponentModel.Design.IDesignerHost * string -> System.Web.UI.DesignTimeParseData
Public Sub New (designerHost As IDesignerHost, parseText As String)

Parameters

designerHost
IDesignerHost

The object for managing designer transactions and components.

parseText
String

The text to parse during design time.

Applies to

DesignTimeParseData(IDesignerHost, String, String)

Initializes a new instance of the DesignTimeParseData class with the specified filter.

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 DesignTimeParseData(System::ComponentModel::Design::IDesignerHost ^ designerHost, System::String ^ parseText, System::String ^ filter);
public DesignTimeParseData (System.ComponentModel.Design.IDesignerHost designerHost, string parseText, string filter);
new System.Web.UI.DesignTimeParseData : System.ComponentModel.Design.IDesignerHost * string * string -> System.Web.UI.DesignTimeParseData
Public Sub New (designerHost As IDesignerHost, parseText As String, filter As String)

Parameters

designerHost
IDesignerHost

The object for managing designer transactions and components.

parseText
String

The text to parse during design time.

filter
String

The filter to apply during design time.

Exceptions

parseText is null.

Applies to