Procedura: ottenere le proprietà di un oggetto di sistema di stampa senza ricorrere alla reflection

L'uso della reflection per inserire le proprietà (e i tipi di tali proprietà) in un oggetto può rallentare le prestazioni dell'applicazione. Lo System.Printing.IndexedProperties spazio dei nomi fornisce un mezzo per ottenere queste informazioni senza usare la reflection.

Esempio

I passaggi per eseguire questa operazione sono i seguenti.

  1. Creare un'istanza del tipo . Nell'esempio seguente il tipo è il PrintQueue tipo fornito con Microsoft .NET Framework, ma il codice quasi identico dovrebbe funzionare per i tipi derivati da PrintSystemObject.

  2. Creare un PrintPropertyDictionary oggetto dal tipo .PropertiesCollection La Value proprietà di ogni voce di questo dizionario è un oggetto di uno dei tipi derivati da PrintProperty.

  3. Enumerare i membri del dizionario. Per ognuno di essi, eseguire le operazioni seguenti.

  4. Eseguire il cast del valore di ogni voce in PrintProperty e usarlo per creare un PrintProperty oggetto .

  5. Ottiene il tipo dell'oggetto ValuePrintProperty di ogni oggetto .


// Enumerate the properties, and their types, of a queue without using Reflection
LocalPrintServer localPrintServer = new LocalPrintServer();
PrintQueue defaultPrintQueue = LocalPrintServer.GetDefaultPrintQueue();

PrintPropertyDictionary printQueueProperties = defaultPrintQueue.PropertiesCollection;

Console.WriteLine("These are the properties, and their types, of {0}, a {1}", defaultPrintQueue.Name, defaultPrintQueue.GetType().ToString() +"\n");

foreach (DictionaryEntry entry in printQueueProperties)
{
    PrintProperty property = (PrintProperty)entry.Value;

    if (property.Value != null)
    {
        Console.WriteLine(property.Name + "\t(Type: {0})", property.Value.GetType().ToString());
    }
}
Console.WriteLine("\n\nPress Return to continue...");
Console.ReadLine();


' Enumerate the properties, and their types, of a queue without using Reflection
Dim localPrintServer As New LocalPrintServer()
Dim defaultPrintQueue As PrintQueue = LocalPrintServer.GetDefaultPrintQueue()

Dim printQueueProperties As PrintPropertyDictionary = defaultPrintQueue.PropertiesCollection

Console.WriteLine("These are the properties, and their types, of {0}, a {1}", defaultPrintQueue.Name, defaultPrintQueue.GetType().ToString() + vbLf)

For Each entry As DictionaryEntry In printQueueProperties
    Dim [property] As PrintProperty = CType(entry.Value, PrintProperty)

    If [property].Value IsNot Nothing Then
        Console.WriteLine([property].Name & vbTab & "(Type: {0})", [property].Value.GetType().ToString())
    End If
Next entry
Console.WriteLine(vbLf & vbLf & "Press Return to continue...")
Console.ReadLine()

Vedi anche