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比較されます。

適用対象