MessageQueuePermissionAttribute.MachineName Eigenschaft

Definition

Ruft den Namen des Computers ab, auf dem sich die Message Queuing-Warteschlange befindet, oder legt diesen fest.

public:
 property System::String ^ MachineName { System::String ^ get(); void set(System::String ^ value); };
public string MachineName { get; set; }
member this.MachineName : string with get, set
Public Property MachineName As String

Eigenschaftswert

Der Name des Computers, auf dem sich die Warteschlange befindet.

Ausnahmen

Der Wert ist null.

Beispiele

Im folgenden Codebeispiel wird der Wert der Eigenschaft eines Berechtigungsattributs MachineName der Nachrichtenwarteschlange abgerufen und festgelegt.


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

// Create a new instance of MessageQueuePermissionAttribute.
MessageQueuePermissionAttribute^ attribute =
    gcnew MessageQueuePermissionAttribute(
    System::Security::Permissions::SecurityAction::Assert);

// Set the attribute's MachineName property value, based on the queue's
// MachineName property value.
attribute->MachineName = queue->MachineName;

// Display the new value of the attribute's MachineName property.
Console::WriteLine("attribute->MachineName: {0}",
    attribute->MachineName);

queue->Close();

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

// Create a new instance of MessageQueuePermissionAttribute.
MessageQueuePermissionAttribute attribute =
    new MessageQueuePermissionAttribute(
    System.Security.Permissions.SecurityAction.Assert);

// Set the attribute's MachineName property value, based on the queue's
// MachineName property value.
attribute.MachineName = queue.MachineName;

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

Gilt für: