ValueSerializerAttribute Constructors

Definition

Initializes a new instance of the ValueSerializerAttribute class.

Overloads

ValueSerializerAttribute(String)

Initializes a new instance of the ValueSerializerAttribute class, using an assembly qualified type name string.

ValueSerializerAttribute(Type)

Initializes a new instance of the ValueSerializerAttribute class, using the specified type.

ValueSerializerAttribute(String)

Source:
ValueSerializerAttribute.cs
Source:
ValueSerializerAttribute.cs
Source:
ValueSerializerAttribute.cs

Initializes a new instance of the ValueSerializerAttribute class, using an assembly qualified type name string.

public:
 ValueSerializerAttribute(System::String ^ valueSerializerTypeName);
public ValueSerializerAttribute (string valueSerializerTypeName);
new System.Windows.Markup.ValueSerializerAttribute : string -> System.Windows.Markup.ValueSerializerAttribute
Public Sub New (valueSerializerTypeName As String)

Parameters

valueSerializerTypeName
String

The assembly qualified type name string for the ValueSerializer class to use.

Remarks

The assembly qualified type name string is the value of AssemblyQualifiedName for the requested Type.

Applies to

ValueSerializerAttribute(Type)

Source:
ValueSerializerAttribute.cs
Source:
ValueSerializerAttribute.cs
Source:
ValueSerializerAttribute.cs

Initializes a new instance of the ValueSerializerAttribute class, using the specified type.

public:
 ValueSerializerAttribute(Type ^ valueSerializerType);
public ValueSerializerAttribute (Type valueSerializerType);
new System.Windows.Markup.ValueSerializerAttribute : Type -> System.Windows.Markup.ValueSerializerAttribute
Public Sub New (valueSerializerType As Type)

Parameters

valueSerializerType
Type

A type that represents the type of the ValueSerializer class.

Applies to