Поделиться через


InheritedExportAttribute Конструкторы

Определение

Инициализирует новый экземпляр класса InheritedExportAttribute.

Перегрузки

InheritedExportAttribute()

Инициализирует новый экземпляр класса InheritedExportAttribute.

InheritedExportAttribute(String)

Инициализирует новый экземпляр класса InheritedExportAttribute указанным именем контракта.

InheritedExportAttribute(Type)

Инициализирует новый экземпляр класса InheritedExportAttribute указанным типом контракта.

InheritedExportAttribute(String, Type)

Инициализирует новый экземпляр класса InheritedExportAttribute указанным именем и типом контракта.

InheritedExportAttribute()

Исходный код:
InheritedExportAttribute.cs
Исходный код:
InheritedExportAttribute.cs
Исходный код:
InheritedExportAttribute.cs

Инициализирует новый экземпляр класса InheritedExportAttribute.

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

Комментарии

Имя контракта по умолчанию является результатом вызова AttributedModelServices.GetContractName(Type) для самого типа, помеченного этим атрибутом.

Имя контракта сравнивается с помощью нелингвистического сравнения с учетом регистра с помощью StringComparer.Ordinal.

Применяется к

InheritedExportAttribute(String)

Исходный код:
InheritedExportAttribute.cs
Исходный код:
InheritedExportAttribute.cs
Исходный код:
InheritedExportAttribute.cs

Инициализирует новый экземпляр класса InheritedExportAttribute указанным именем контракта.

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)

Параметры

contractName
String

Имя контракта.

Комментарии

Имя контракта по умолчанию является результатом вызова AttributedModelServices.GetContractName(Type) для самого типа, который помечен этим атрибутом.

Имя контракта сравнивается с помощью нелингвистического сравнения с учетом регистра с помощью StringComparer.Ordinal.

Применяется к

InheritedExportAttribute(Type)

Исходный код:
InheritedExportAttribute.cs
Исходный код:
InheritedExportAttribute.cs
Исходный код:
InheritedExportAttribute.cs

Инициализирует новый экземпляр класса InheritedExportAttribute указанным типом контракта.

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)

Параметры

contractType
Type

Тип контракта.

Комментарии

Имя контракта является результатом вызова AttributedModelServices.GetContractName(Type) для contractType.

Имя контракта по умолчанию является результатом вызова AttributedModelServices.GetContractName(Type) для самого типа, помеченного этим атрибутом.

Имя контракта сравнивается с помощью нелингвистического сравнения с учетом регистра с помощью StringComparer.Ordinal.

Применяется к

InheritedExportAttribute(String, Type)

Исходный код:
InheritedExportAttribute.cs
Исходный код:
InheritedExportAttribute.cs
Исходный код:
InheritedExportAttribute.cs

Инициализирует новый экземпляр класса InheritedExportAttribute указанным именем и типом контракта.

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)

Параметры

contractName
String

Имя контракта.

contractType
Type

Тип контракта.

Комментарии

Имя контракта по умолчанию является результатом вызова AttributedModelServices.GetContractName(Type) для самого типа, который помечен этим атрибутом.

Имя контракта сравнивается с помощью нелингвистического сравнения с учетом регистра с помощью StringComparer.Ordinal.

Применяется к