Share via


ManifestReader.ReadManifest Method (Stream, Boolean)

Reads the specified manifest XML and returns an object representation.

MSBuild is now included in Visual Studio instead of the .NET Framework. You can use MSBuild 12.0 side-by-side with versions previously deployed with the .NET Framework.For more information, see What's New in MSBuild 12.0.

Namespace:  Microsoft.Build.Tasks.Deployment.ManifestUtilities
Assembly:  Microsoft.Build.Tasks.Core (in Microsoft.Build.Tasks.Core.dll)

Syntax

'Declaration
Public Shared Function ReadManifest ( _
    input As Stream, _
    preserveStream As Boolean _
) As Manifest
public static Manifest ReadManifest(
    Stream input,
    bool preserveStream
)
public:
static Manifest^ ReadManifest(
    Stream^ input, 
    bool preserveStream
)
static member ReadManifest : 
        input:Stream * 
        preserveStream:bool -> Manifest
public static function ReadManifest(
    input : Stream, 
    preserveStream : boolean
) : Manifest

Parameters

  • preserveStream
    Type: System.Boolean

    Specifies whether to preserve the input stream in the InputStream property of the resulting manifest object. Used by ManifestWriter to reconstitute input which is not represented in the object representation.

Return Value

Type: Microsoft.Build.Tasks.Deployment.ManifestUtilities.Manifest
A Manifest object representation of the manifest. Can be cast to AssemblyManifest, ApplicationManifest, or DeployManifest to access more specific functionality.

.NET Framework Security

See Also

Reference

ManifestReader Class

ReadManifest Overload

Microsoft.Build.Tasks.Deployment.ManifestUtilities Namespace