PrintServer.InstallPrintQueue Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Yazdırma sunucusuna bir yazdırma kuyruğu ve ilişkili yazıcı sürücüsü yükler.
Aşırı Yüklemeler
InstallPrintQueue(String, String, String[], String, PrintPropertyDictionary) |
Yazdırma sunucusuna bir yazdırma kuyruğu ve ilişkili yazıcı sürücüsü yükler. |
InstallPrintQueue(String, String, String[], String, PrintQueueAttributes) |
Yazdırma sunucusuna bir yazdırma kuyruğu ve ilişkili yazıcı sürücüsü yükler. |
InstallPrintQueue(String, String, String[], String, PrintQueueAttributes, PrintQueueStringProperty, Int32, Int32) |
Yazdırma sunucusuna öncelikli bir yazdırma kuyruğu ve ilişkili yazıcı sürücüsü yükler. |
InstallPrintQueue(String, String, String[], String, PrintQueueAttributes, String, String, String, String, Int32, Int32) |
Yazdırma sunucusuna paylaşılan, öncelikli yazdırma kuyruğu ve ilişkili bir yazıcı sürücüsü yükler. |
InstallPrintQueue(String, String, String[], String, PrintPropertyDictionary)
Yazdırma sunucusuna bir yazdırma kuyruğu ve ilişkili yazıcı sürücüsü yükler.
public:
System::Printing::PrintQueue ^ InstallPrintQueue(System::String ^ printQueueName, System::String ^ driverName, cli::array <System::String ^> ^ portNames, System::String ^ printProcessorName, System::Printing::IndexedProperties::PrintPropertyDictionary ^ initialParameters);
public System.Printing.PrintQueue InstallPrintQueue (string printQueueName, string driverName, string[] portNames, string printProcessorName, System.Printing.IndexedProperties.PrintPropertyDictionary initialParameters);
member this.InstallPrintQueue : string * string * string[] * string * System.Printing.IndexedProperties.PrintPropertyDictionary -> System.Printing.PrintQueue
Public Function InstallPrintQueue (printQueueName As String, driverName As String, portNames As String(), printProcessorName As String, initialParameters As PrintPropertyDictionary) As PrintQueue
Parametreler
- printQueueName
- String
Yeni kuyruğun adı.
- driverName
- String
Yazıcı sürücüsünün yolu ve adı.
- portNames
- String[]
Yeni kuyruğun kullandığı bağlantı noktalarının kimlikleri.
- printProcessorName
- String
Yazdırma işlemcisinin adı.
- initialParameters
- PrintPropertyDictionary
Başlatılan parametreler.
Döndürülenler
Yeni PrintQueue.
Örnekler
Aşağıdaki örnekte, özelliklerinde yalnızca konum, bağlantı noktası ve paylaşılan durumda bulunan mevcut bir yazıcıdan farklı ikinci bir yazıcı yüklemek için bu yöntemin (yöntemini PrintServerdevralan nesnede çağrılırLocalPrintServer) nasıl kullanılacağı gösterilmektedir.
LocalPrintServer myLocalPrintServer = new LocalPrintServer(PrintSystemDesiredAccess.AdministrateServer);
PrintQueue sourcePrintQueue = myLocalPrintServer.DefaultPrintQueue;
PrintPropertyDictionary myPrintProperties = sourcePrintQueue.PropertiesCollection;
// Share the new printer using Remove/Add methods
PrintBooleanProperty shared = new PrintBooleanProperty("IsShared", true);
myPrintProperties.Remove("IsShared");
myPrintProperties.Add("IsShared", shared);
// Give the new printer its share name using SetProperty method
PrintStringProperty theShareName = new PrintStringProperty("ShareName", "\"Son of " + sourcePrintQueue.Name +"\"");
myPrintProperties.SetProperty("ShareName", theShareName);
// Specify the physical location of the new printer using Remove/Add methods
PrintStringProperty theLocation = new PrintStringProperty("Location", "the supply room");
myPrintProperties.Remove("Location");
myPrintProperties.Add("Location", theLocation);
// Specify the port for the new printer
String[] port = new String[] { "COM1:" };
// Install the new printer on the local print server
PrintQueue clonedPrinter = myLocalPrintServer.InstallPrintQueue("My clone of " + sourcePrintQueue.Name, "Xerox WCP 35 PS", port, "WinPrint", myPrintProperties);
myLocalPrintServer.Commit();
// Report outcome
Console.WriteLine("{0} in {1} has been installed and shared as {2}", clonedPrinter.Name, clonedPrinter.Location, clonedPrinter.ShareName);
Console.WriteLine("Press Return to continue ...");
Console.ReadLine();
Dim myLocalPrintServer As New LocalPrintServer(PrintSystemDesiredAccess.AdministrateServer)
Dim sourcePrintQueue As PrintQueue = myLocalPrintServer.DefaultPrintQueue
Dim myPrintProperties As PrintPropertyDictionary = sourcePrintQueue.PropertiesCollection
' Share the new printer using Remove/Add methods
Dim [shared] As New PrintBooleanProperty("IsShared", True)
myPrintProperties.Remove("IsShared")
myPrintProperties.Add("IsShared", [shared])
' Give the new printer its share name using SetProperty method
Dim theShareName As New PrintStringProperty("ShareName", """Son of " & sourcePrintQueue.Name & """")
myPrintProperties.SetProperty("ShareName", theShareName)
' Specify the physical location of the new printer using Remove/Add methods
Dim theLocation As New PrintStringProperty("Location", "the supply room")
myPrintProperties.Remove("Location")
myPrintProperties.Add("Location", theLocation)
' Specify the port for the new printer
Dim port() As String = { "COM1:" }
' Install the new printer on the local print server
Dim clonedPrinter As PrintQueue = myLocalPrintServer.InstallPrintQueue("My clone of " & sourcePrintQueue.Name, "Xerox WCP 35 PS", port, "WinPrint", myPrintProperties)
myLocalPrintServer.Commit()
' Report outcome
Console.WriteLine("{0} in {1} has been installed and shared as {2}", clonedPrinter.Name, clonedPrinter.Location, clonedPrinter.ShareName)
Console.WriteLine("Press Return to continue ...")
Console.ReadLine()
Şunlara uygulanır
InstallPrintQueue(String, String, String[], String, PrintQueueAttributes)
Yazdırma sunucusuna bir yazdırma kuyruğu ve ilişkili yazıcı sürücüsü yükler.
public:
System::Printing::PrintQueue ^ InstallPrintQueue(System::String ^ printQueueName, System::String ^ driverName, cli::array <System::String ^> ^ portNames, System::String ^ printProcessorName, System::Printing::PrintQueueAttributes printQueueAttributes);
public System.Printing.PrintQueue InstallPrintQueue (string printQueueName, string driverName, string[] portNames, string printProcessorName, System.Printing.PrintQueueAttributes printQueueAttributes);
member this.InstallPrintQueue : string * string * string[] * string * System.Printing.PrintQueueAttributes -> System.Printing.PrintQueue
Public Function InstallPrintQueue (printQueueName As String, driverName As String, portNames As String(), printProcessorName As String, printQueueAttributes As PrintQueueAttributes) As PrintQueue
Parametreler
- printQueueName
- String
Yeni kuyruğun adı.
- driverName
- String
Yazıcı sürücüsünün yolu ve adı.
- portNames
- String[]
Yeni kuyruğun kullandığı bağlantı noktalarının kimlikleri.
- printProcessorName
- String
Yazdırma işlemcisinin adı.
- printQueueAttributes
- PrintQueueAttributes
Yeni kuyruğun bayrak olarak öznitelikleri.
Döndürülenler
Yeni oluşturulan PrintQueue.
Şunlara uygulanır
InstallPrintQueue(String, String, String[], String, PrintQueueAttributes, PrintQueueStringProperty, Int32, Int32)
Yazdırma sunucusuna öncelikli bir yazdırma kuyruğu ve ilişkili yazıcı sürücüsü yükler.
public:
System::Printing::PrintQueue ^ InstallPrintQueue(System::String ^ printQueueName, System::String ^ driverName, cli::array <System::String ^> ^ portNames, System::String ^ printProcessorName, System::Printing::PrintQueueAttributes printQueueAttributes, System::Printing::PrintQueueStringProperty ^ printQueueProperty, int printQueuePriority, int printQueueDefaultPriority);
public System.Printing.PrintQueue InstallPrintQueue (string printQueueName, string driverName, string[] portNames, string printProcessorName, System.Printing.PrintQueueAttributes printQueueAttributes, System.Printing.PrintQueueStringProperty printQueueProperty, int printQueuePriority, int printQueueDefaultPriority);
member this.InstallPrintQueue : string * string * string[] * string * System.Printing.PrintQueueAttributes * System.Printing.PrintQueueStringProperty * int * int -> System.Printing.PrintQueue
Public Function InstallPrintQueue (printQueueName As String, driverName As String, portNames As String(), printProcessorName As String, printQueueAttributes As PrintQueueAttributes, printQueueProperty As PrintQueueStringProperty, printQueuePriority As Integer, printQueueDefaultPriority As Integer) As PrintQueue
Parametreler
- printQueueName
- String
Yeni kuyruğun adı.
- driverName
- String
Yazıcı sürücüsünün yolu ve adı.
- portNames
- String[]
Yeni kuyruğun kullandığı bağlantı noktalarının kimlikleri.
- printProcessorName
- String
Yazdırma işlemcisinin adı.
- printQueueAttributes
- PrintQueueAttributes
Yeni kuyruğun bayrak olarak öznitelikleri.
- printQueueProperty
- PrintQueueStringProperty
Yeni kuyruğun açıklama, konum veya paylaşım adı.
- printQueuePriority
- Int32
Yazdırma sunucusu tarafından barındırılan diğer kuyruklara göre bu yazdırma kuyruğunun önceliğini belirten 1 ile 99 arasında bir değer.
- printQueueDefaultPriority
- Int32
Kuyruğa gönderilen yazdırma işlerinin varsayılan önceliğini belirten 1 ile 99 arasındaki bir değer.
Döndürülenler
Yeni oluşturulan PrintQueue.
Açıklamalar
Kuyruğun printQueueProperty
ShareName, Commentveya Location özelliklerinden birini ve yalnızca birini başlatmak için parametresini kullanın. Birden fazla başlatmak istiyorsanız, bu yöntemin InstallPrintQueue(String, String, String[], String, PrintQueueAttributes, String, String, String, String, Int32, Int32) aşırı yüklemesini kullanın.
Şunlara uygulanır
InstallPrintQueue(String, String, String[], String, PrintQueueAttributes, String, String, String, String, Int32, Int32)
Yazdırma sunucusuna paylaşılan, öncelikli yazdırma kuyruğu ve ilişkili bir yazıcı sürücüsü yükler.
public:
System::Printing::PrintQueue ^ InstallPrintQueue(System::String ^ printQueueName, System::String ^ driverName, cli::array <System::String ^> ^ portNames, System::String ^ printProcessorName, System::Printing::PrintQueueAttributes printQueueAttributes, System::String ^ printQueueShareName, System::String ^ printQueueComment, System::String ^ printQueueLocation, System::String ^ printQueueSeparatorFile, int printQueuePriority, int printQueueDefaultPriority);
public System.Printing.PrintQueue InstallPrintQueue (string printQueueName, string driverName, string[] portNames, string printProcessorName, System.Printing.PrintQueueAttributes printQueueAttributes, string printQueueShareName, string printQueueComment, string printQueueLocation, string printQueueSeparatorFile, int printQueuePriority, int printQueueDefaultPriority);
member this.InstallPrintQueue : string * string * string[] * string * System.Printing.PrintQueueAttributes * string * string * string * string * int * int -> System.Printing.PrintQueue
Public Function InstallPrintQueue (printQueueName As String, driverName As String, portNames As String(), printProcessorName As String, printQueueAttributes As PrintQueueAttributes, printQueueShareName As String, printQueueComment As String, printQueueLocation As String, printQueueSeparatorFile As String, printQueuePriority As Integer, printQueueDefaultPriority As Integer) As PrintQueue
Parametreler
- printQueueName
- String
Yeni kuyruğun adı.
- driverName
- String
Yazıcı sürücüsünün yolu ve adı.
- portNames
- String[]
Yeni kuyruğun kullandığı bağlantı noktalarının kimlikleri.
- printProcessorName
- String
Yazdırma işlemcisinin adı.
- printQueueAttributes
- PrintQueueAttributes
Yeni kuyruğun bayrak olarak öznitelikleri.
- printQueueShareName
- String
Yeni kuyruğun paylaşım adı.
- printQueueComment
- String
Microsoft Windows kullanıcı arabiriminde kullanıcılara görünen kuyruk hakkında bir açıklama.
- printQueueLocation
- String
Yeni kuyruğun konumu.
- printQueueSeparatorFile
- String
Her yazdırma işinin başına eklenen dosyanın yolu.
- printQueuePriority
- Int32
Yazdırma sunucusu tarafından barındırılan diğer kuyruklara göre kuyruğun önceliğini belirten 1 ile 99 arasında bir değer.
- printQueueDefaultPriority
- Int32
Kuyruğa gönderilen yeni yazdırma işlerinin varsayılan önceliğini belirten 1 ile 99 arasında bir değer.
Döndürülenler
Yeni oluşturulan PrintQueue.
Açıklamalar
Kuyruğun ShareName, Commentveya Location özelliklerinin üçünü de başlatmak istemiyorsanız, bir veya daha fazla printQueueShareName
, printQueueComment
ve printQueueLocation
için boş bir dize geçirebilirsiniz. Bu özelliklerden yalnızca birini başlatmak istiyorsanız, bu yöntemin InstallPrintQueue(String, String, String[], String, PrintQueueAttributes, PrintQueueStringProperty, Int32, Int32) aşırı yüklemesini kullanın.