AssemblyLoadContext.LoadFromStream Method

Definition

Overloads

LoadFromStream(Stream)

Loads the assembly with a common object file format (COFF)-based image containing a managed assembly.

LoadFromStream(Stream, Stream)

Loads the assembly with a common object file format (COFF)-based image containing a managed assembly, optionally including symbols for the assembly.

LoadFromStream(Stream)

Source:
AssemblyLoadContext.cs
Source:
AssemblyLoadContext.cs
Source:
AssemblyLoadContext.cs

Loads the assembly with a common object file format (COFF)-based image containing a managed assembly.

public:
 System::Reflection::Assembly ^ LoadFromStream(System::IO::Stream ^ assembly);
public System.Reflection.Assembly LoadFromStream (System.IO.Stream assembly);
member this.LoadFromStream : System.IO.Stream -> System.Reflection.Assembly
Public Function LoadFromStream (assembly As Stream) As Assembly

Parameters

assembly
Stream

A byte array that is a COFF-based image containing a managed assembly.

Returns

The loaded assembly.

Exceptions

assembly is null.

assembly is not a valid assembly.

See also

Applies to

LoadFromStream(Stream, Stream)

Source:
AssemblyLoadContext.cs
Source:
AssemblyLoadContext.cs
Source:
AssemblyLoadContext.cs

Loads the assembly with a common object file format (COFF)-based image containing a managed assembly, optionally including symbols for the assembly.

public:
 System::Reflection::Assembly ^ LoadFromStream(System::IO::Stream ^ assembly, System::IO::Stream ^ assemblySymbols);
public System.Reflection.Assembly LoadFromStream (System.IO.Stream assembly, System.IO.Stream? assemblySymbols);
public System.Reflection.Assembly LoadFromStream (System.IO.Stream assembly, System.IO.Stream assemblySymbols);
member this.LoadFromStream : System.IO.Stream * System.IO.Stream -> System.Reflection.Assembly
Public Function LoadFromStream (assembly As Stream, assemblySymbols As Stream) As Assembly

Parameters

assembly
Stream

A byte array that is a COFF-based image containing a managed assembly.

assemblySymbols
Stream

A byte array that contains the raw bytes representing the symbols for the assembly.

Returns

The loaded assembly.

Exceptions

assembly is null.

assembly is not a valid assembly.

Applies to