RunningPackage.PackageName Property
Returns the name of the package. This property is read-only.
Espacio de nombres: Microsoft.SqlServer.Dts.Runtime
Ensamblado: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)
Sintaxis
'Declaración
Public ReadOnly Property PackageName As String
public string PackageName { get; }
public:
property String^ PackageName {
String^ get ();
}
/** @property */
public String get_PackageName ()
public function get PackageName () : String
Valor de propiedad
A String that contains the name of the package.
Ejemplo
The following example shows how to retrieve the collection of running packages from the Application object and iterate over each package, displaying the InstanceID, PackageID, PackageDescription, PackageName, and UserName.
//...Declare and instantiate objects.
//
// Create a RunningPackages collection, pkgs, and fill it
// with the running packages from the application object.
RunningPackages pkgs = app.GetRunningPackages("yourserver");
// Enumerate over each package in the collection and display some data.
foreach(RunningPackage package in pkgs)
{
Console.WriteLine("InstanceID: "+package.InstanceID);
Console.WriteLine("PackageDescription: "+package.PackageDescription);
Console.WriteLine("PackageID: "+package.PackageID);
Console.WriteLine("PackageName: "+package.PackageName);
Console.WriteLine("UserName: "+package.UserName);
}
// more code here...
'...Declare and instantiate objects.
'
' Create a RunningPackages collection, pkgs, and fill it
' with the running packages from the application object.
Dim pkgs As RunningPackages = app.GetRunningPackages("yourserver")
' Enumerate over each package in the collection and display some data.
Dim package As RunningPackage
For Each package In pkgs
Console.WriteLine("InstanceID: "+package.InstanceID)
Console.WriteLine("PackageDescription: "+package.PackageDescription)
Console.WriteLine("PackageID: "+package.PackageID)
Console.WriteLine("PackageName: "+package.PackageName)
Console.WriteLine("UserName: "+package.UserName)
Next
' more code here...
Seguridad para subprocesos
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Plataformas
Plataformas de desarrollo
Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.
Plataformas de destino
Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.
Vea también
Referencia
RunningPackage Class
RunningPackage Members
Microsoft.SqlServer.Dts.Runtime Namespace