AttributeParameterData Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the AttributeParameterData class.
Overloads
AttributeParameterData(XamlType, IEnumerable<AttributeParameterData>) |
Initializes a new instance of the AttributeParameterData class with specified type and array contents. |
AttributeParameterData(XamlType, Object) |
Initializes a new instance of the AttributeParameterData class with specified type and value. |
AttributeParameterData(XamlType, String) |
Initializes a new instance of the AttributeParameterData class with specified type and text value. |
AttributeParameterData(XamlType, IEnumerable<AttributeParameterData>)
Initializes a new instance of the AttributeParameterData class with specified type and array contents.
public:
AttributeParameterData(System::Xaml::XamlType ^ type, System::Collections::Generic::IEnumerable<Microsoft::Build::Tasks::Xaml::AttributeParameterData ^> ^ arrayContents);
public AttributeParameterData (System.Xaml.XamlType type, System.Collections.Generic.IEnumerable<Microsoft.Build.Tasks.Xaml.AttributeParameterData> arrayContents);
new Microsoft.Build.Tasks.Xaml.AttributeParameterData : System.Xaml.XamlType * seq<Microsoft.Build.Tasks.Xaml.AttributeParameterData> -> Microsoft.Build.Tasks.Xaml.AttributeParameterData
Public Sub New (type As XamlType, arrayContents As IEnumerable(Of AttributeParameterData))
Parameters
- type
- XamlType
The type of the data.
- arrayContents
- IEnumerable<AttributeParameterData>
The array contents.
Applies to
AttributeParameterData(XamlType, Object)
Initializes a new instance of the AttributeParameterData class with specified type and value.
public:
AttributeParameterData(System::Xaml::XamlType ^ type, System::Object ^ value);
public AttributeParameterData (System.Xaml.XamlType type, object value);
new Microsoft.Build.Tasks.Xaml.AttributeParameterData : System.Xaml.XamlType * obj -> Microsoft.Build.Tasks.Xaml.AttributeParameterData
Public Sub New (type As XamlType, value As Object)
Parameters
- type
- XamlType
The type of the data.
- value
- Object
The value of the data.
Applies to
AttributeParameterData(XamlType, String)
Initializes a new instance of the AttributeParameterData class with specified type and text value.
public:
AttributeParameterData(System::Xaml::XamlType ^ type, System::String ^ textValue);
public AttributeParameterData (System.Xaml.XamlType type, string textValue);
new Microsoft.Build.Tasks.Xaml.AttributeParameterData : System.Xaml.XamlType * string -> Microsoft.Build.Tasks.Xaml.AttributeParameterData
Public Sub New (type As XamlType, textValue As String)
Parameters
- type
- XamlType
The type of the data.
- textValue
- String
The text value.