1 write to Path
System.Messaging (1)
System\Messaging\MessageQueueInstaller.cs (1)
378
Path
= queue.Path;
18 references to Path
System.Messaging (18)
System\Messaging\MessageQueueInstaller.cs (18)
350
Context.LogMessage(Res.GetString(Res.ClearingQueue,
Path
));
394
Context.LogMessage(Res.GetString(Res.CreatingQueue,
Path
));
400
queue = MessageQueue.Create(
Path
, Transactional);
405
queue = new MessageQueue(
Path
);
425
MessageQueue.Delete(
Path
);
426
queue = MessageQueue.Create(
Path
, Transactional);
457
return other.
Path
==
Path
;
476
Context.LogMessage(Res.GetString(Res.RestoringQueue,
Path
));
482
if (!MessageQueue.Exists(
Path
))
486
queue = MessageQueue.Create(
Path
, (bool)state["Transactional"]);
490
queue = new MessageQueue(
Path
);
494
MessageQueue.Delete(
Path
);
495
queue = MessageQueue.Create(
Path
, (bool)state["Transactional"]);
515
Context.LogMessage(Res.GetString(Res.RemovingQueue,
Path
));
563
Context.LogMessage(Res.GetString(Res.DeletingQueue,
Path
));
564
if (MessageQueue.Exists(
Path
))
565
MessageQueue.Delete(
Path
);