DefaultSerializationProviderAttribute Constructors

Definition

Initializes a new instance of the DefaultSerializationProviderAttribute class.

Overloads

DefaultSerializationProviderAttribute(String)

Initializes a new instance of the DefaultSerializationProviderAttribute class with the named provider type.

DefaultSerializationProviderAttribute(Type)

Initializes a new instance of the DefaultSerializationProviderAttribute class with the given provider type.

DefaultSerializationProviderAttribute(String)

Source:
DefaultSerializationProviderAttribute.cs
Source:
DefaultSerializationProviderAttribute.cs
Source:
DefaultSerializationProviderAttribute.cs

Initializes a new instance of the DefaultSerializationProviderAttribute class with the named provider type.

public:
 DefaultSerializationProviderAttribute(System::String ^ providerTypeName);
public DefaultSerializationProviderAttribute (string providerTypeName);
new System.ComponentModel.Design.Serialization.DefaultSerializationProviderAttribute : string -> System.ComponentModel.Design.Serialization.DefaultSerializationProviderAttribute
Public Sub New (providerTypeName As String)

Parameters

providerTypeName
String

The name of the serialization provider type.

Exceptions

providerTypeName is null.

See also

Applies to

DefaultSerializationProviderAttribute(Type)

Source:
DefaultSerializationProviderAttribute.cs
Source:
DefaultSerializationProviderAttribute.cs
Source:
DefaultSerializationProviderAttribute.cs

Initializes a new instance of the DefaultSerializationProviderAttribute class with the given provider type.

public:
 DefaultSerializationProviderAttribute(Type ^ providerType);
public DefaultSerializationProviderAttribute (Type providerType);
new System.ComponentModel.Design.Serialization.DefaultSerializationProviderAttribute : Type -> System.ComponentModel.Design.Serialization.DefaultSerializationProviderAttribute
Public Sub New (providerType As Type)

Parameters

providerType
Type

The Type of the serialization provider.

Exceptions

providerType is null.

See also

Applies to