AttributedModelServices.AddExportedValue 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從指定的值建立組件,並將它加入至撰寫批次。
多載
AddExportedValue<T>(CompositionBatch, T) |
從指定的值建立組件,並將它加入至指定的批次。 |
AddExportedValue<T>(CompositionBatch, String, T) |
從指定的值建立組件,並將它加入至具有指定合約名稱的批次。 |
AddExportedValue<T>(CompositionBatch, T)
從指定的值建立組件,並將它加入至指定的批次。
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static System::ComponentModel::Composition::Primitives::ComposablePart ^ AddExportedValue(System::ComponentModel::Composition::Hosting::CompositionBatch ^ batch, T exportedValue);
public static System.ComponentModel.Composition.Primitives.ComposablePart AddExportedValue<T> (this System.ComponentModel.Composition.Hosting.CompositionBatch batch, T exportedValue);
static member AddExportedValue : System.ComponentModel.Composition.Hosting.CompositionBatch * 'T -> System.ComponentModel.Composition.Primitives.ComposablePart
<Extension()>
Public Function AddExportedValue(Of T) (batch As CompositionBatch, exportedValue As T) As ComposablePart
類型參數
- T
新組件的型別。
參數
- batch
- CompositionBatch
要加入的批次。
- exportedValue
- T
要加入的值。
傳回
新的組件。
適用於
AddExportedValue<T>(CompositionBatch, String, T)
從指定的值建立組件,並將它加入至具有指定合約名稱的批次。
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static System::ComponentModel::Composition::Primitives::ComposablePart ^ AddExportedValue(System::ComponentModel::Composition::Hosting::CompositionBatch ^ batch, System::String ^ contractName, T exportedValue);
public static System.ComponentModel.Composition.Primitives.ComposablePart AddExportedValue<T> (this System.ComponentModel.Composition.Hosting.CompositionBatch batch, string contractName, T exportedValue);
static member AddExportedValue : System.ComponentModel.Composition.Hosting.CompositionBatch * string * 'T -> System.ComponentModel.Composition.Primitives.ComposablePart
<Extension()>
Public Function AddExportedValue(Of T) (batch As CompositionBatch, contractName As String, exportedValue As T) As ComposablePart
類型參數
- T
新組件的型別。
參數
- batch
- CompositionBatch
要加入的批次。
- contractName
- String
匯出的合約名稱。
- exportedValue
- T
要加入的值。
傳回
新的組件。