次の方法で共有


PrintServer コンストラクター

定義

PrintServer クラスの新しいインスタンスを初期化します。

オーバーロード

PrintServer()

PrintServer クラスの新しいインスタンスを初期化します。

PrintServer(PrintSystemDesiredAccess)

ローカル プリント サーバーを表す PrintServer クラスの新しいインスタンスを初期化し、指定した PrintSystemDesiredAccess をこのインスタンスに割り当てます。

PrintServer(String)

指定したパスを持つ PrintServer クラスの新しいインスタンスを初期化します。

PrintServer(String, PrintServerIndexedProperty[])

指定した PrintServer 配列を使用し、初期化するプロパティを判別することによって、PrintServerIndexedProperty クラスの新しいインスタンスを初期化します。

PrintServer(String, PrintSystemDesiredAccess)

指定したパスと必要なアクセス権を持つ PrintServer クラスの新しいインスタンスを初期化します。

PrintServer(String, String[])

指定したパスとプロパティ フィルターを持つ PrintServer クラスの新しいインスタンスを初期化します。

PrintServer(String, PrintServerIndexedProperty[], PrintSystemDesiredAccess)

PrintServer クラスの新しいインスタンスを初期化し、指定したパス、PrintServerIndexedProperty 配列、および必要なアクセス権を提供します。

PrintServer(String, String[], PrintSystemDesiredAccess)

指定したパス、プロパティ フィルター、および必要なアクセス権を持つ PrintServer クラスの新しいインスタンスを初期化します。

PrintServer()

PrintServer クラスの新しいインスタンスを初期化します。

public:
 PrintServer();
public PrintServer ();
Public Sub New ()

適用対象

PrintServer(PrintSystemDesiredAccess)

ローカル プリント サーバーを表す PrintServer クラスの新しいインスタンスを初期化し、指定した PrintSystemDesiredAccess をこのインスタンスに割り当てます。

public:
 PrintServer(System::Printing::PrintSystemDesiredAccess desiredAccess);
public PrintServer (System.Printing.PrintSystemDesiredAccess desiredAccess);
new System.Printing.PrintServer : System.Printing.PrintSystemDesiredAccess -> System.Printing.PrintServer
Public Sub New (desiredAccess As PrintSystemDesiredAccess)

パラメーター

desiredAccess
PrintSystemDesiredAccess

プログラムが必要とするプリント サーバーへのアクセスの種類を指定する値。

例外

desiredAccess は、PrintQueue オブジェクトだけに適用できる値で、LocalPrintServer には適用できません。 たとえば、「 UsePrinter 」のように入力します。

注釈

PrintServer 、 などの Nameローカル プリント サーバーのプロパティで初期化されます。

適用対象

PrintServer(String)

指定したパスを持つ PrintServer クラスの新しいインスタンスを初期化します。

public:
 PrintServer(System::String ^ path);
public PrintServer (string path);
new System.Printing.PrintServer : string -> System.Printing.PrintServer
Public Sub New (path As String)

パラメーター

path
String

プリント サーバーの名前と完全なパス。

次の例では、このコンストラクターを使用して の PrintServerインスタンスを作成する方法を示します。


// Create a PrintServer
// "theServer" must be a print server to which the user has full print access.
PrintServer myPrintServer = new PrintServer(@"\\theServer");

// List the print server's queues
PrintQueueCollection myPrintQueues = myPrintServer.GetPrintQueues();
String printQueueNames = "My Print Queues:\n\n";
foreach (PrintQueue pq in myPrintQueues)
{
    printQueueNames += "\t" + pq.Name + "\n";
}
Console.WriteLine(printQueueNames);
Console.WriteLine("\nPress Return to continue.");
Console.ReadLine();

' Create a PrintServer
' "theServer" must be a print server to which the user has full print access.
Dim myPrintServer As New PrintServer("\\theServer")

' List the print server's queues
Dim myPrintQueues As PrintQueueCollection = myPrintServer.GetPrintQueues()
Dim printQueueNames As String = "My Print Queues:" & vbLf & vbLf
For Each pq As PrintQueue In myPrintQueues
    printQueueNames &= vbTab & pq.Name & vbLf
Next pq
Console.WriteLine(printQueueNames)
Console.WriteLine(vbLf & "Press Return to continue.")
Console.ReadLine()

注釈

nullの場合pathPrintServer はローカルプリントサーバーを表し、 などのNameプロパティで初期化されます。

適用対象

PrintServer(String, PrintServerIndexedProperty[])

指定した PrintServer 配列を使用し、初期化するプロパティを判別することによって、PrintServerIndexedProperty クラスの新しいインスタンスを初期化します。

public:
 PrintServer(System::String ^ path, cli::array <System::Printing::PrintServerIndexedProperty> ^ propertiesFilter);
public PrintServer (string path, System.Printing.PrintServerIndexedProperty[] propertiesFilter);
new System.Printing.PrintServer : string * System.Printing.PrintServerIndexedProperty[] -> System.Printing.PrintServer
Public Sub New (path As String, propertiesFilter As PrintServerIndexedProperty())

パラメーター

path
String

プリント サーバーの完全なパスと名前。

propertiesFilter
PrintServerIndexedProperty[]

コンストラクターによって初期化されるプロパティ。

注釈

nullの場合pathPrintServer はローカルプリントサーバーを表し、 などのNameプロパティで初期化されます。

適用対象

PrintServer(String, PrintSystemDesiredAccess)

指定したパスと必要なアクセス権を持つ PrintServer クラスの新しいインスタンスを初期化します。

public:
 PrintServer(System::String ^ path, System::Printing::PrintSystemDesiredAccess desiredAccess);
public PrintServer (string path, System.Printing.PrintSystemDesiredAccess desiredAccess);
new System.Printing.PrintServer : string * System.Printing.PrintSystemDesiredAccess -> System.Printing.PrintServer
Public Sub New (path As String, desiredAccess As PrintSystemDesiredAccess)

パラメーター

path
String

プリント サーバーの名前と完全なパス。

desiredAccess
PrintSystemDesiredAccess

プログラムが必要とするプリント サーバーへのアクセスの種類を指定する値。

例外

desiredAccess は、PrintQueue オブジェクトだけに適用できる値で、LocalPrintServer には適用できません。 たとえば、「 UsePrinter 」のように入力します。

次の例では、このコンストラクターを使用して、すべてのプリンターで発生する可能性のあるエラー状態を調査する方法を示します。

// Survey queue status for every queue on every print server
System::String^ line;
System::String^ statusReport = "\n\nAny problem states are indicated below:\n\n";
while ((line = fileOfPrintServers->ReadLine()) != nullptr)
{
   System::Printing::PrintServer^ myPS = gcnew System::Printing::PrintServer(line, PrintSystemDesiredAccess::AdministrateServer);
   System::Printing::PrintQueueCollection^ myPrintQueues = myPS->GetPrintQueues();
   statusReport = statusReport + "\n" + line;
   for each (System::Printing::PrintQueue^ pq in myPrintQueues)
   {
      pq->Refresh();
      statusReport = statusReport + "\n\t" + pq->Name + ":";
      if (useAttributesResponse == "y")
      {
         TroubleSpotter::SpotTroubleUsingQueueAttributes(statusReport, pq);
         // TroubleSpotter class is defined in the complete example.
      } else
      {
         TroubleSpotter::SpotTroubleUsingProperties(statusReport, pq);
      }
   }
}
fileOfPrintServers->Close();
Console::WriteLine(statusReport);
Console::WriteLine("\nPress Return to continue.");
Console::ReadLine();
// Survey queue status for every queue on every print server
String line;
String statusReport = "\n\nAny problem states are indicated below:\n\n";
while ((line = fileOfPrintServers.ReadLine()) != null)
 {
     PrintServer myPS = new PrintServer(line, PrintSystemDesiredAccess.AdministrateServer);
     PrintQueueCollection myPrintQueues = myPS.GetPrintQueues();
     statusReport = statusReport + "\n" + line;
     foreach (PrintQueue pq in myPrintQueues)
     {
         pq.Refresh();
         statusReport = statusReport + "\n\t" + pq.Name + ":";
         if (useAttributesResponse == "y")
         {
             TroubleSpotter.SpotTroubleUsingQueueAttributes(ref statusReport, pq);
             // TroubleSpotter class is defined in the complete example.
         }
         else
         {
             TroubleSpotter.SpotTroubleUsingProperties(ref statusReport, pq);
         }                 
     }// end for each print queue
 }// end while list of print servers is not yet exhausted

fileOfPrintServers.Close();
Console.WriteLine(statusReport);
Console.WriteLine("\nPress Return to continue.");
Console.ReadLine();
' Survey queue status for every queue on every print server
Dim line As String
Dim statusReport As String = vbLf & vbLf & "Any problem states are indicated below:" & vbLf & vbLf
line = fileOfPrintServers.ReadLine()
Do While line IsNot Nothing
     Dim myPS As New PrintServer(line, PrintSystemDesiredAccess.AdministrateServer)
     Dim myPrintQueues As PrintQueueCollection = myPS.GetPrintQueues()
     statusReport = statusReport & vbLf & line
     For Each pq As PrintQueue In myPrintQueues
         pq.Refresh()
         statusReport = statusReport & vbLf & vbTab & pq.Name & ":"
         If useAttributesResponse = "y" Then
             TroubleSpotter.SpotTroubleUsingQueueAttributes(statusReport, pq)
             ' TroubleSpotter class is defined in the complete example.
         Else
             TroubleSpotter.SpotTroubleUsingProperties(statusReport, pq)
         End If

     Next pq ' end for each print queue

    line = fileOfPrintServers.ReadLine()
Loop ' end while list of print servers is not yet exhausted

fileOfPrintServers.Close()
Console.WriteLine(statusReport)
Console.WriteLine(vbLf & "Press Return to continue.")
Console.ReadLine()

注釈

nullの場合pathPrintServer はローカルプリントサーバーを表し、 などのNameプロパティで初期化されます。

適用対象

PrintServer(String, String[])

指定したパスとプロパティ フィルターを持つ PrintServer クラスの新しいインスタンスを初期化します。

public:
 PrintServer(System::String ^ path, cli::array <System::String ^> ^ propertiesFilter);
public PrintServer (string path, string[] propertiesFilter);
new System.Printing.PrintServer : string * string[] -> System.Printing.PrintServer
Public Sub New (path As String, propertiesFilter As String())

パラメーター

path
String

プリント サーバーの名前と完全なパス。

propertiesFilter
String[]

コンストラクターによって初期化されるプロパティ名の配列。

注釈

nullの場合pathPrintServer はローカルプリントサーバーを表し、 などのNameプロパティで初期化されます。

適用対象

PrintServer(String, PrintServerIndexedProperty[], PrintSystemDesiredAccess)

PrintServer クラスの新しいインスタンスを初期化し、指定したパス、PrintServerIndexedProperty 配列、および必要なアクセス権を提供します。

public:
 PrintServer(System::String ^ path, cli::array <System::Printing::PrintServerIndexedProperty> ^ propertiesFilter, System::Printing::PrintSystemDesiredAccess desiredAccess);
public PrintServer (string path, System.Printing.PrintServerIndexedProperty[] propertiesFilter, System.Printing.PrintSystemDesiredAccess desiredAccess);
new System.Printing.PrintServer : string * System.Printing.PrintServerIndexedProperty[] * System.Printing.PrintSystemDesiredAccess -> System.Printing.PrintServer
Public Sub New (path As String, propertiesFilter As PrintServerIndexedProperty(), desiredAccess As PrintSystemDesiredAccess)

パラメーター

path
String

プリント サーバーの完全なパスと名前。

propertiesFilter
PrintServerIndexedProperty[]

コンストラクターによって初期化されるプロパティ。

desiredAccess
PrintSystemDesiredAccess

プログラムが必要とするプリント サーバーへのアクセスの種類を指定する値。

例外

desiredAccess は、PrintQueue オブジェクトだけに適用できる値で、LocalPrintServer には適用できません。 たとえば、「 UsePrinter 」のように入力します。

注釈

nullの場合pathPrintServer はローカルプリントサーバーを表し、 などのNameプロパティで初期化されます。

適用対象

PrintServer(String, String[], PrintSystemDesiredAccess)

指定したパス、プロパティ フィルター、および必要なアクセス権を持つ PrintServer クラスの新しいインスタンスを初期化します。

public:
 PrintServer(System::String ^ path, cli::array <System::String ^> ^ propertiesFilter, System::Printing::PrintSystemDesiredAccess desiredAccess);
public PrintServer (string path, string[] propertiesFilter, System.Printing.PrintSystemDesiredAccess desiredAccess);
new System.Printing.PrintServer : string * string[] * System.Printing.PrintSystemDesiredAccess -> System.Printing.PrintServer
Public Sub New (path As String, propertiesFilter As String(), desiredAccess As PrintSystemDesiredAccess)

パラメーター

path
String

プリント サーバーの名前と完全なパス。

propertiesFilter
String[]

コンストラクターによって初期化されるプロパティ名の配列。

desiredAccess
PrintSystemDesiredAccess

プログラムが必要とするプリント サーバーへのアクセスの種類を指定する値。

例外

desiredAccess は、PrintQueue オブジェクトだけに適用できる値で、LocalPrintServer には適用できません。 たとえば、「 UsePrinter 」のように入力します。

注釈

nullの場合pathPrintServer はローカルプリントサーバーを表し、 などのNameプロパティで初期化されます。

適用対象