Поделиться через


MessageQueuePermissionEntry.Category Свойство

Определение

Получает категорию очереди.

public:
 property System::String ^ Category { System::String ^ get(); };
public string Category { get; }
member this.Category : string
Public ReadOnly Property Category As String

Значение свойства

Категория очереди (идентификатор типа для Message Queuing), которая позволяет приложению разделить очереди на категории.

Примеры

В следующем примере кода отображается значение свойства записи Category разрешения очереди сообщений.

// Connect to a queue on the local computer.
MessageQueue^ queue = gcnew MessageQueue(".\\exampleQueue");

// Create a new instance of MessageQueuePermissionEntry.
MessageQueuePermissionEntry^ entry = gcnew MessageQueuePermissionEntry(
    MessageQueuePermissionAccess::Receive,
    queue->MachineName,
    queue->Label,
    queue->Category.ToString());

// Display the value of the entry's Category property.
Console::WriteLine("Category: {0}", entry->Category->ToString());

queue->Close();
// Connect to a queue on the local computer.
MessageQueue queue = new MessageQueue(".\\exampleQueue");

// Create a new instance of MessageQueuePermissionEntry.
MessageQueuePermissionEntry entry = new MessageQueuePermissionEntry(
    MessageQueuePermissionAccess.Receive,
    queue.MachineName,
    queue.Label,
    queue.Category.ToString());

// Display the value of the entry's Category property.
Console.WriteLine("Category: {0}", entry.Category.ToString());

Применяется к