Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Messaging/MessageQueue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ public MessageQueue(string path, bool sharedModeDenyReceive)
/// </devdoc>
public MessageQueue(string path, bool sharedModeDenyReceive, bool enableCache)
{
this.path = path;
this.Path = path;
this.enableCache = enableCache;
if (sharedModeDenyReceive)
{
Expand All @@ -239,7 +239,7 @@ public MessageQueue(string path, bool sharedModeDenyReceive, bool enableCache)
public MessageQueue(string path, bool sharedModeDenyReceive,
bool enableCache, QueueAccessMode accessMode)
{
this.path = path;
this.Path = path;
this.enableCache = enableCache;
if (sharedModeDenyReceive)
{
Expand All @@ -258,7 +258,7 @@ internal MessageQueue(string path, Guid id)
{
PropertyFilter.Id = true;
this.id = id;
this.path = path;
this.Path = path;
this.accessMode = QueueAccessMode.SendAndReceive;

}
Expand Down