Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Load a package from the specified Stream.
Namespace: Microsoft.SqlServer.Dac
Assembly: Microsoft.SqlServer.Dac (in Microsoft.SqlServer.Dac.dll)
Syntax
'Declaration
Public Shared Function Load ( _
stream As Stream, _
modelStorageType As DacSchemaModelStorageType, _
packageAccess As FileAccess _
) As DacPackage
'Usage
Dim stream As Stream
Dim modelStorageType As DacSchemaModelStorageType
Dim packageAccess As FileAccess
Dim returnValue As DacPackage
returnValue = DacPackage.Load(stream, modelStorageType, _
packageAccess)
public static DacPackage Load(
Stream stream,
DacSchemaModelStorageType modelStorageType,
FileAccess packageAccess
)
public:
static DacPackage^ Load(
Stream^ stream,
DacSchemaModelStorageType modelStorageType,
FileAccess packageAccess
)
static member Load :
stream:Stream *
modelStorageType:DacSchemaModelStorageType *
packageAccess:FileAccess -> DacPackage
public static function Load(
stream : Stream,
modelStorageType : DacSchemaModelStorageType,
packageAccess : FileAccess
) : DacPackage
Parameter
- stream
Typ: System.IO.Stream
Stream from which to read the package.
- modelStorageType
Typ: Microsoft.SqlServer.Dac.DacSchemaModelStorageType
Backing storage type for package instance.
- packageAccess
Typ: System.IO.FileAccess
The access in which to open the package. Valid values are Read or ReadWrite.
Rückgabewert
Typ: Microsoft.SqlServer.Dac.DacPackage
DacPackage instance that represents the package loaded from the specified Stream.
Ausnahmen
| Ausnahme | Bedingung |
|---|---|
| DacServicesException | If there is a problem reading the package; or if the package contains exported data. |