RunningPackage.UserName プロパティ

定義

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

public:
 property System::String ^ UserName { System::String ^ get(); };
public string UserName { get; }
member this.UserName : string
Public ReadOnly Property UserName As 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...  

適用対象