Redigera

ExportProvider Class

Definition

Retrieves exports which match a specified ImportDefinition object.

public ref class ExportProvider abstract
public abstract class ExportProvider
type ExportProvider = class
Public MustInherit Class ExportProvider
Inheritance
ExportProvider
Derived

Constructors

Name Description
ExportProvider()

Initializes a new instance of the ExportProvider class.

Methods

Name Description
GetExport<T,TMetadataView>()

Returns the export with the contract name derived from the specified type parameter. If there is not exactly one matching export, an exception is thrown.

GetExport<T,TMetadataView>(String)

Returns the export with the specified contract name. If there is not exactly one matching export, an exception is thrown.

GetExport<T>()

Returns the export with the contract name derived from the specified type parameter. If there is not exactly one matching export, an exception is thrown.

GetExport<T>(String)

Returns the export with the specified contract name. If there is not exactly one matching export, an exception is thrown.

GetExportedValue<T>()

Returns the exported object with the contract name derived from the specified type parameter. If there is not exactly one matching exported object, an exception is thrown.

GetExportedValue<T>(String)

Returns the exported object with the specified contract name. If there is not exactly one matching exported object, an exception is thrown.

GetExportedValueOrDefault<T>()

Gets the exported object with the contract name derived from the specified type parameter or the default value for the specified type, or throws an exception if there is more than one matching exported object.

GetExportedValueOrDefault<T>(String)

Gets the exported object with the specified contract name or the default value for the specified type, or throws an exception if there is more than one matching exported object.

GetExportedValues<T>()

Gets all the exported objects with the contract name derived from the specified type parameter.

GetExportedValues<T>(String)

Gets all the exported objects with the specified contract name.

GetExports(ImportDefinition, AtomicComposition)

Gets all exports that match the conditions of the specified import definition and composition.

GetExports(ImportDefinition)

Gets all exports that match the conditions of the specified import definition.

GetExports(Type, Type, String)

Gets all the exports with the specified contract name.

GetExports<T,TMetadataView>()

Gets all the exports with the contract name derived from the specified type parameter.

GetExports<T,TMetadataView>(String)

Gets all the exports with the specified contract name.

GetExports<T>()

Gets all the exports with the contract name derived from the specified type parameter.

GetExports<T>(String)

Gets all the exports with the specified contract name.

GetExportsCore(ImportDefinition, AtomicComposition)

Gets all the exports that match the constraint defined by the specified definition.

OnExportsChanged(ExportsChangeEventArgs)

Raises the ExportsChanged event.

OnExportsChanging(ExportsChangeEventArgs)

Raises the ExportsChanging event.

TryGetExports(ImportDefinition, AtomicComposition, IEnumerable<Export>)

Gets all the exports that match the conditions of the specified import.

Events

Name Description
ExportsChanged

Occurs when the exports in the ExportProvider change.

ExportsChanging

Occurs when the provided exports are changing.

Applies to