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.

C#
public System.Reflection.Assembly LoadFromStream(System.IO.Stream 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

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10

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.

C#
public System.Reflection.Assembly LoadFromStream(System.IO.Stream assembly, System.IO.Stream? assemblySymbols);
C#
public System.Reflection.Assembly LoadFromStream(System.IO.Stream assembly, System.IO.Stream assemblySymbols);

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

.NET 10 and other versions
Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10