Condividi tramite


InheritedExportAttribute Costruttori

Definizione

Inizializza una nuova istanza della classe InheritedExportAttribute.

Overload

InheritedExportAttribute()

Inizializza una nuova istanza della classe InheritedExportAttribute.

InheritedExportAttribute(String)

Inizializza una nuova istanza della classe InheritedExportAttribute con il nome del contratto specificato.

InheritedExportAttribute(Type)

Inizializza una nuova istanza della classe InheritedExportAttribute con il tipo di contratto specificato.

InheritedExportAttribute(String, Type)

Inizializza una nuova istanza della classe InheritedExportAttribute con il nome e il tipo di contratto specificati.

InheritedExportAttribute()

Origine:
InheritedExportAttribute.cs
Origine:
InheritedExportAttribute.cs
Origine:
InheritedExportAttribute.cs

Inizializza una nuova istanza della classe InheritedExportAttribute.

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

Commenti

Il nome del contratto predefinito è il risultato della chiamata AttributedModelServices.GetContractName(Type) al tipo stesso contrassegnato con questo attributo.

Il nome del contratto viene confrontato usando un confronto senza distinzione tra maiuscole e minuscole usando StringComparer.Ordinal.

Si applica a

InheritedExportAttribute(String)

Origine:
InheritedExportAttribute.cs
Origine:
InheritedExportAttribute.cs
Origine:
InheritedExportAttribute.cs

Inizializza una nuova istanza della classe InheritedExportAttribute con il nome del contratto specificato.

public:
 InheritedExportAttribute(System::String ^ contractName);
public InheritedExportAttribute (string contractName);
public InheritedExportAttribute (string? contractName);
new System.ComponentModel.Composition.InheritedExportAttribute : string -> System.ComponentModel.Composition.InheritedExportAttribute
Public Sub New (contractName As String)

Parametri

contractName
String

Nome del contratto.

Commenti

Il nome del contratto predefinito è il risultato della chiamata AttributedModelServices.GetContractName(Type) al tipo stesso contrassegnato con questo attributo.

Il nome del contratto viene confrontato usando un confronto senza distinzione tra maiuscole e minuscole usando StringComparer.Ordinal.

Si applica a

InheritedExportAttribute(Type)

Origine:
InheritedExportAttribute.cs
Origine:
InheritedExportAttribute.cs
Origine:
InheritedExportAttribute.cs

Inizializza una nuova istanza della classe InheritedExportAttribute con il tipo di contratto specificato.

public:
 InheritedExportAttribute(Type ^ contractType);
public InheritedExportAttribute (Type contractType);
public InheritedExportAttribute (Type? contractType);
new System.ComponentModel.Composition.InheritedExportAttribute : Type -> System.ComponentModel.Composition.InheritedExportAttribute
Public Sub New (contractType As Type)

Parametri

contractType
Type

Tipo del contratto.

Commenti

Il nome del contratto è il risultato della chiamata AttributedModelServices.GetContractName(Type) su contractType.

Il nome del contratto predefinito è il risultato della chiamata AttributedModelServices.GetContractName(Type) al tipo stesso contrassegnato con questo attributo.

Il nome del contratto viene confrontato usando un confronto senza distinzione tra maiuscole e minuscole usando StringComparer.Ordinal.

Si applica a

InheritedExportAttribute(String, Type)

Origine:
InheritedExportAttribute.cs
Origine:
InheritedExportAttribute.cs
Origine:
InheritedExportAttribute.cs

Inizializza una nuova istanza della classe InheritedExportAttribute con il nome e il tipo di contratto specificati.

public:
 InheritedExportAttribute(System::String ^ contractName, Type ^ contractType);
public InheritedExportAttribute (string contractName, Type contractType);
public InheritedExportAttribute (string? contractName, Type? contractType);
new System.ComponentModel.Composition.InheritedExportAttribute : string * Type -> System.ComponentModel.Composition.InheritedExportAttribute
Public Sub New (contractName As String, contractType As Type)

Parametri

contractName
String

Nome del contratto.

contractType
Type

Tipo del contratto.

Commenti

Il nome del contratto predefinito è il risultato della chiamata AttributedModelServices.GetContractName(Type) al tipo stesso contrassegnato con questo attributo.

Il nome del contratto viene confrontato usando un confronto senza distinzione tra maiuscole e minuscole usando StringComparer.Ordinal.

Si applica a