MessageQueuePermissionEntry.Path Property

Definition

Gets the queue's path.

C#
public string Path { get; }

Property Value

The queue that is referenced by the MessageQueue.

Examples

The following code example displays the value of a message queue permission entry's Path property.

C#
// 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.Path);

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

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1