3 writes to ExactlyOnce
System.ServiceModel (3)
System\ServiceModel\Channels\MsmqBindingElementBase.cs (1)
378this.ExactlyOnce = false;
System\ServiceModel\Configuration\MsmqElementBase.cs (1)
133binding.ExactlyOnce = this.ExactlyOnce;
System\ServiceModel\MsmqBindingBase.cs (1)
50set { transport.ExactlyOnce = value; }
8 references to ExactlyOnce
System.ServiceModel (8)
System\ServiceModel\Administration\EndpointInstanceProvider.cs (1)
237instance.SetProperty(AdministrationStrings.ExactlyOnce, msmq.ExactlyOnce);
System\ServiceModel\Channels\MsmqBindingElementBase.cs (2)
280if (this.ExactlyOnce && this.ReceiveContextEnabled) 327if (!this.ExactlyOnce)
System\ServiceModel\Channels\MsmqChannelFactoryBase.cs (1)
40this.exactlyOnce = bindingElement.ExactlyOnce;
System\ServiceModel\Channels\MsmqReceiveParameters.cs (1)
29this.exactlyOnce = bindingElement.ExactlyOnce;
System\ServiceModel\Configuration\MsmqElementBase.cs (1)
186SetPropertyValueIfNotDefaultValue(ConfigurationStrings.ExactlyOnce, binding.ExactlyOnce);
System\ServiceModel\MsmqBindingBase.cs (1)
49get { return transport.ExactlyOnce; }
System\ServiceModel\NetMsmqBinding.cs (1)
179this.ExactlyOnce = transport.ExactlyOnce;