Share via


ExportProvider.GetExport Method

Definition

Overloads

GetExport<T,TMetadataView>()
GetExport<T,TMetadataView>(String)
GetExport<T>()
GetExport<T>(String)

GetExport<T,TMetadataView>()

Source:
ExportProvider.cs
Source:
ExportProvider.cs
public Lazy<T,TMetadataView> GetExport<T,TMetadataView> ();
member this.GetExport : unit -> Lazy<'T, 'MetadataView>
Public Function GetExport(Of T, TMetadataView) () As Lazy(Of T, TMetadataView)

Type Parameters

T
TMetadataView

Returns

Lazy<T,TMetadataView>

Applies to

GetExport<T,TMetadataView>(String)

Source:
ExportProvider.cs
Source:
ExportProvider.cs
public Lazy<T,TMetadataView> GetExport<T,TMetadataView> (string contractName);
member this.GetExport : string -> Lazy<'T, 'MetadataView>
Public Function GetExport(Of T, TMetadataView) (contractName As String) As Lazy(Of T, TMetadataView)

Type Parameters

T
TMetadataView

Parameters

contractName
String

Returns

Lazy<T,TMetadataView>

Applies to

GetExport<T>()

Source:
ExportProvider.cs
Source:
ExportProvider.cs
public Lazy<T> GetExport<T> ();
member this.GetExport : unit -> Lazy<'T>
Public Function GetExport(Of T) () As Lazy(Of T)

Type Parameters

T

Returns

Lazy<T>

Applies to

GetExport<T>(String)

Source:
ExportProvider.cs
Source:
ExportProvider.cs
public Lazy<T> GetExport<T> (string contractName);
member this.GetExport : string -> Lazy<'T>
Public Function GetExport(Of T) (contractName As String) As Lazy(Of T)

Type Parameters

T

Parameters

contractName
String

Returns

Lazy<T>

Applies to