MessageQueue.Refresh 方法

定义

刷新 MessageQueue 所显示的属性以反映资源的当前状态。

public:
 void Refresh();
public void Refresh ();
member this.Refresh : unit -> unit
Public Sub Refresh ()

示例

以下代码示例演示了 Refresh 的用法。


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

// Refresh the queue's property values to obtain its current state.
queue->Refresh();

queue->Close();

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

// Refresh the queue's property values to obtain its current state.
queue.Refresh();

注解

Refresh 将 的属性 MessageQueue 与其关联的消息队列服务器资源同步。 如果任何属性(如 LabelCategory)自创建 以来 MessageQueue 已在服务器上发生更改, Refresh 请使用新信息更新 MessageQueue

下表显示了此方法在各种工作组模式下是否可用。

工作组模式 可用
本地计算机
本地计算机和直接格式名称
远程计算机
远程计算机和直接格式名称

适用于

另请参阅