DesktopAssemblyIdentityComparer.LoadFromXml(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 Microsoft.CodeAnalysis.AssemblyPortabilityPolicy information from XML with app.config schema.
public:
static Microsoft::CodeAnalysis::DesktopAssemblyIdentityComparer ^ LoadFromXml(System::IO::Stream ^ input);
public static Microsoft.CodeAnalysis.DesktopAssemblyIdentityComparer LoadFromXml (System.IO.Stream input);
static member LoadFromXml : System.IO.Stream -> Microsoft.CodeAnalysis.DesktopAssemblyIdentityComparer
Public Shared Function LoadFromXml (input As Stream) As DesktopAssemblyIdentityComparer
Parameters
- input
- Stream
Returns
Exceptions
The stream doesn't contain a well formed XML.
input
is null.
Remarks
Tries to find supportPortability elements in the given XML:
<configuration> <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <supportPortability PKT="7cec85d7bea7798e" enable="false"/> <supportPortability PKT="31bf3856ad364e35" enable="false"/> </assemblyBinding> </runtime> </configuration>
Keeps the stream open.