Share via


DataProvider.GetAssembly Method

Definition

Overloads

GetAssembly(String)

Resolves an assembly string to a specific assembly as defined by the DDEX provider.

GetAssembly(Guid, String)

Resolves an assembly string to an assembly associated with a specified data source as defined by the DDEX provider.

GetAssembly(String)

Resolves an assembly string to a specific assembly as defined by the DDEX provider.

public:
 System::Reflection::Assembly ^ GetAssembly(System::String ^ assemblyString);
public System.Reflection.Assembly GetAssembly (string assemblyString);
member this.GetAssembly : string -> System.Reflection.Assembly
Public Function GetAssembly (assemblyString As String) As Assembly

Parameters

assemblyString
String

Name of the assembly to retrieve.

Returns

Returns a specified assembly.

Applies to

GetAssembly(Guid, String)

Resolves an assembly string to an assembly associated with a specified data source as defined by the DDEX provider.

public:
 abstract System::Reflection::Assembly ^ GetAssembly(Guid dataSource, System::String ^ assemblyString);
public abstract System.Reflection.Assembly GetAssembly (Guid dataSource, string assemblyString);
abstract member GetAssembly : Guid * string -> System.Reflection.Assembly
Public MustOverride Function GetAssembly (dataSource As Guid, assemblyString As String) As Assembly

Parameters

dataSource
Guid

GUID for a DDEX data source.

assemblyString
String

Name of the assembly to retrieve.

Returns

Returns a specified assembly.

Applies to