MetadataLoadContext.LoadFromStream(Stream) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Loads an assembly from a stream and binds its assembly name to it in the MetadataLoadContext. If a prior assembly with the same name was already loaded into the MetadataLoadContext, the prior assembly will be returned.
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
Returns
The loaded assembly.
Exceptions
The two assemblies do not have the same Mvid.
Remarks
Important
The MetadataLoadContext takes ownership of the Stream passed into this method. The original owner must not mutate its position, dispose the Stream, or assume that its position will stay unchanged.