Compartir vía


InheritedExportAttribute Constructores

Definición

Inicializa una nueva instancia de la clase InheritedExportAttribute.

Sobrecargas

InheritedExportAttribute()

Inicializa una nueva instancia de la clase InheritedExportAttribute.

InheritedExportAttribute(String)

Inicializa una nueva instancia de la clase InheritedExportAttribute con el nombre de contrato especificado.

InheritedExportAttribute(Type)

Inicializa una nueva instancia de la clase InheritedExportAttribute con el tipo de contrato especificado.

InheritedExportAttribute(String, Type)

Inicializa una nueva instancia de la clase InheritedExportAttribute con el nombre de contrato y el tipo especificados.

InheritedExportAttribute()

Source:
InheritedExportAttribute.cs
Source:
InheritedExportAttribute.cs
Source:
InheritedExportAttribute.cs

Inicializa una nueva instancia de la clase InheritedExportAttribute.

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

Comentarios

El nombre del contrato predeterminado es el resultado de llamar AttributedModelServices.GetContractName(Type) a en el propio tipo marcado con este atributo.

El nombre del contrato se compara mediante una comparación sin distinción entre mayúsculas y minúsculas y no lingüística mediante StringComparer.Ordinal.

Se aplica a

InheritedExportAttribute(String)

Source:
InheritedExportAttribute.cs
Source:
InheritedExportAttribute.cs
Source:
InheritedExportAttribute.cs

Inicializa una nueva instancia de la clase InheritedExportAttribute con el nombre de contrato especificado.

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)

Parámetros

contractName
String

El nombre del contrato.

Comentarios

El nombre del contrato predeterminado es el resultado de llamar AttributedModelServices.GetContractName(Type) al propio tipo que se marca con este atributo.

El nombre del contrato se compara mediante una comparación sin distinción entre mayúsculas y minúsculas y no lingüística mediante StringComparer.Ordinal.

Se aplica a

InheritedExportAttribute(Type)

Source:
InheritedExportAttribute.cs
Source:
InheritedExportAttribute.cs
Source:
InheritedExportAttribute.cs

Inicializa una nueva instancia de la clase InheritedExportAttribute con el tipo de contrato especificado.

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)

Parámetros

contractType
Type

Tipo del contrato.

Comentarios

El nombre del contrato es el resultado de llamar a AttributedModelServices.GetContractName(Type) en contractType.

El nombre del contrato predeterminado es el resultado de llamar AttributedModelServices.GetContractName(Type) a en el propio tipo marcado con este atributo.

El nombre del contrato se compara mediante una comparación sin distinción entre mayúsculas y minúsculas y no lingüística mediante StringComparer.Ordinal.

Se aplica a

InheritedExportAttribute(String, Type)

Source:
InheritedExportAttribute.cs
Source:
InheritedExportAttribute.cs
Source:
InheritedExportAttribute.cs

Inicializa una nueva instancia de la clase InheritedExportAttribute con el nombre de contrato y el tipo especificados.

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)

Parámetros

contractName
String

El nombre del contrato.

contractType
Type

Tipo del contrato.

Comentarios

El nombre del contrato predeterminado es el resultado de llamar AttributedModelServices.GetContractName(Type) al propio tipo que se marca con este atributo.

El nombre del contrato se compara mediante una comparación sin distinción entre mayúsculas y minúsculas y no lingüística mediante StringComparer.Ordinal.

Se aplica a