次の方法で共有


RunningPackage.UserName プロパティ

サーバーへのログオンに使用されるユーザー名を返します。

名前空間:  Microsoft.SqlServer.Dts.Runtime
アセンブリ:  Microsoft.SqlServer.ManagedDTS (Microsoft.SqlServer.ManagedDTS.dll)

構文

'宣言
Public ReadOnly Property UserName As String 
    Get
'使用
Dim instance As RunningPackage 
Dim value As String 

value = instance.UserName
public string UserName { get; }
public:
property String^ UserName {
    String^ get ();
}
member UserName : string
function get UserName () : String

プロパティ値

型: System.String
ユーザー名を表す String です。

使用例

次の例は、実行中のパッケージのコレクションを Application オブジェクトから取得し、各パッケージを繰り返し処理して、InstanceIDPackageIDPackageDescriptionPackageName、および UserName を表示する方法を示しています。

static void Main(string[] args)
        {
            Application app = new Application();
            // 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 properties.
            foreach (RunningPackage p in pkgs)
            {
                Console.WriteLine("InstanceID: " + p.InstanceID);
                Console.WriteLine("PackageDescription: " + p.PackageDescription);
                Console.WriteLine("PackageID: " + p.PackageID);
                Console.WriteLine("PackageName: " + p.PackageName);
                Console.WriteLine("UserName: " + p.UserName);
            }
//   more code here...
static void Main(string() args)
        {
            Dim app As Application =  New Application() 
            ' 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 properties.
            Dim p As RunningPackage
            For Each p In pkgs
                Console.WriteLine("InstanceID: " + p.InstanceID)
                Console.WriteLine("PackageDescription: " + p.PackageDescription)
                Console.WriteLine("PackageID: " + p.PackageID)
                Console.WriteLine("PackageName: " + p.PackageName)
                Console.WriteLine("UserName: " + p.UserName)
            Next
'   more code here...

関連項目

参照

RunningPackage クラス

Microsoft.SqlServer.Dts.Runtime 名前空間