Package.Deserialize Method (String)
Deserializes a package from the file system.
Namespace: Microsoft.MasterDataServices.Deployment
Assembly: Microsoft.MasterDataServices.Deployment (in Microsoft.MasterDataServices.Deployment.dll)
Syntax
public static Package Deserialize(
string packageFileName
)
public:
static Package^ Deserialize(
String^ packageFileName
)
static member Deserialize :
packageFileName:string -> Package
Public Shared Function Deserialize (
packageFileName As String
) As Package
Parameters
packageFileName
Type: System.StringThe package full path and file name.
Return Value
Type: Microsoft.MasterDataServices.Deployment.Package
The deserialized package.
Remarks
Deserialize throws ArgumentNullException if packageFileName is null.
Deserialize throws DeploymentException if deserialization of the package fails due to invalid package format, or if the file specified by packageFileName is not found, or if validation of the package fails.
See Also
Deserialize Overload
Package Class
Microsoft.MasterDataServices.Deployment Namespace
Return to top