79 references to UdpTransportConfigurationStrings
System.ServiceModel.Channels (79)
System\ServiceModel\Configuration\UdpBindingCollectionElement.cs (1)
11return (UdpBindingCollectionElement)ConfigurationHelpers.GetBindingCollectionElement(UdpTransportConfigurationStrings.UdpBindingElementName);
System\ServiceModel\Configuration\UdpBindingElement.cs (33)
31[ConfigurationProperty(UdpTransportConfigurationStrings.DuplicateMessageHistoryLength, DefaultValue = UdpConstants.Defaults.DuplicateMessageHistoryLength)] 35get { return (int)base[UdpTransportConfigurationStrings.DuplicateMessageHistoryLength]; } 36set { base[UdpTransportConfigurationStrings.DuplicateMessageHistoryLength] = value; } 39[ConfigurationProperty(UdpTransportConfigurationStrings.MaxBufferPoolSize, DefaultValue = TransportDefaults.MaxBufferPoolSize)] 43get { return (long)base[UdpTransportConfigurationStrings.MaxBufferPoolSize]; } 44set { base[UdpTransportConfigurationStrings.MaxBufferPoolSize] = value; } 47[ConfigurationProperty(UdpTransportConfigurationStrings.MaxRetransmitCount, DefaultValue = UdpConstants.Defaults.MaxRetransmitCount)] 51get { return (int)base[UdpTransportConfigurationStrings.MaxRetransmitCount]; } 52set { base[UdpTransportConfigurationStrings.MaxRetransmitCount] = value; } 55[ConfigurationProperty(UdpTransportConfigurationStrings.MaxPendingMessagesTotalSize, DefaultValue = UdpConstants.Defaults.DefaultMaxPendingMessagesTotalSize)] 59get { return (long)base[UdpTransportConfigurationStrings.MaxPendingMessagesTotalSize]; } 60set { base[UdpTransportConfigurationStrings.MaxPendingMessagesTotalSize] = value; } 64[ConfigurationProperty(UdpTransportConfigurationStrings.MaxReceivedMessageSize, DefaultValue = UdpConstants.Defaults.MaxReceivedMessageSize)] 68get { return (long)this[UdpTransportConfigurationStrings.MaxReceivedMessageSize]; } 69set { this[UdpTransportConfigurationStrings.MaxReceivedMessageSize] = value; } 72[ConfigurationProperty(UdpTransportConfigurationStrings.MulticastInterfaceId, DefaultValue = UdpConstants.Defaults.MulticastInterfaceId)] 76get { return (string)base[UdpTransportConfigurationStrings.MulticastInterfaceId]; } 77set { base[UdpTransportConfigurationStrings.MulticastInterfaceId] = value; } 80[ConfigurationProperty(UdpTransportConfigurationStrings.ReaderQuotas)] 83get { return (XmlDictionaryReaderQuotasElement)base[UdpTransportConfigurationStrings.ReaderQuotas]; } 86[ConfigurationProperty(UdpTransportConfigurationStrings.TextEncoding, DefaultValue = UdpConstants.Defaults.EncodingString)] 91get { return (Encoding)base[UdpTransportConfigurationStrings.TextEncoding]; } 92set { base[UdpTransportConfigurationStrings.TextEncoding] = value; } 95[ConfigurationProperty(UdpTransportConfigurationStrings.TimeToLive, DefaultValue = UdpConstants.Defaults.TimeToLive)] 99get { return (int)base[UdpTransportConfigurationStrings.TimeToLive]; } 100set { base[UdpTransportConfigurationStrings.TimeToLive] = value; } 108this.SetPropertyValueIfNotDefaultValue(UdpTransportConfigurationStrings.DuplicateMessageHistoryLength, udpBinding.DuplicateMessageHistoryLength); 109this.SetPropertyValueIfNotDefaultValue(UdpTransportConfigurationStrings.MaxBufferPoolSize, udpBinding.MaxBufferPoolSize); 110this.SetPropertyValueIfNotDefaultValue(UdpTransportConfigurationStrings.MaxRetransmitCount, udpBinding.MaxRetransmitCount); 111this.SetPropertyValueIfNotDefaultValue(UdpTransportConfigurationStrings.MaxPendingMessagesTotalSize, udpBinding.MaxPendingMessagesTotalSize); 112this.SetPropertyValueIfNotDefaultValue(UdpTransportConfigurationStrings.MaxReceivedMessageSize, udpBinding.MaxReceivedMessageSize); 113this.SetPropertyValueIfNotDefaultValue(UdpTransportConfigurationStrings.MulticastInterfaceId, udpBinding.MulticastInterfaceId); 114this.SetPropertyValueIfNotDefaultValue(UdpTransportConfigurationStrings.TimeToLive, udpBinding.TimeToLive);
System\ServiceModel\Configuration\UdpRetransmissionSettingsElement.cs (20)
34this.SetPropertyValueIfNotDefaultValue(UdpTransportConfigurationStrings.DelayLowerBound, udpRetransmissionSettings.DelayLowerBound); 35this.SetPropertyValueIfNotDefaultValue(UdpTransportConfigurationStrings.DelayUpperBound, udpRetransmissionSettings.DelayUpperBound); 36this.SetPropertyValueIfNotDefaultValue(UdpTransportConfigurationStrings.MaxDelayPerRetransmission, udpRetransmissionSettings.MaxDelayPerRetransmission); 37this.SetPropertyValueIfNotDefaultValue(UdpTransportConfigurationStrings.MaxMulticastRetransmitCount, udpRetransmissionSettings.MaxMulticastRetransmitCount); 38this.SetPropertyValueIfNotDefaultValue(UdpTransportConfigurationStrings.MaxUnicastRetransmitCount, udpRetransmissionSettings.MaxUnicastRetransmitCount); 41[ConfigurationProperty(UdpTransportConfigurationStrings.DelayLowerBound, DefaultValue = UdpConstants.Defaults.DelayLowerBound)] 46get { return (TimeSpan)base[UdpTransportConfigurationStrings.DelayLowerBound]; } 47set { base[UdpTransportConfigurationStrings.DelayLowerBound] = value; } 50[ConfigurationProperty(UdpTransportConfigurationStrings.DelayUpperBound, DefaultValue = UdpConstants.Defaults.DelayUpperBound)] 55get { return (TimeSpan)base[UdpTransportConfigurationStrings.DelayUpperBound]; } 56set { base[UdpTransportConfigurationStrings.DelayUpperBound] = value; } 59[ConfigurationProperty(UdpTransportConfigurationStrings.MaxDelayPerRetransmission, DefaultValue = UdpConstants.Defaults.MaxDelayPerRetransmission)] 64get { return (TimeSpan)base[UdpTransportConfigurationStrings.MaxDelayPerRetransmission]; } 65set { base[UdpTransportConfigurationStrings.MaxDelayPerRetransmission] = value; } 68[ConfigurationProperty(UdpTransportConfigurationStrings.MaxMulticastRetransmitCount, DefaultValue = UdpConstants.Defaults.MaxMulticastRetransmitCount)] 72get { return (int)base[UdpTransportConfigurationStrings.MaxMulticastRetransmitCount]; } 73set { base[UdpTransportConfigurationStrings.MaxMulticastRetransmitCount] = value; } 76[ConfigurationProperty(UdpTransportConfigurationStrings.MaxUnicastRetransmitCount, DefaultValue = UdpConstants.Defaults.MaxUnicastRetransmitCount)] 80get { return (int)base[UdpTransportConfigurationStrings.MaxUnicastRetransmitCount]; } 81set { base[UdpTransportConfigurationStrings.MaxUnicastRetransmitCount] = value; }
System\ServiceModel\Configuration\UdpTransportElement.cs (24)
37this.SetPropertyValueIfNotDefaultValue(UdpTransportConfigurationStrings.DuplicateMessageHistoryLength, udpTransportBindingElement.DuplicateMessageHistoryLength); 38this.SetPropertyValueIfNotDefaultValue(UdpTransportConfigurationStrings.MaxPendingMessagesTotalSize, udpTransportBindingElement.MaxPendingMessagesTotalSize); 39this.SetPropertyValueIfNotDefaultValue(UdpTransportConfigurationStrings.MaxReceivedMessageSize, udpTransportBindingElement.MaxReceivedMessageSize); 40this.SetPropertyValueIfNotDefaultValue(UdpTransportConfigurationStrings.MulticastInterfaceId, udpTransportBindingElement.MulticastInterfaceId); 41this.SetPropertyValueIfNotDefaultValue(UdpTransportConfigurationStrings.SocketReceiveBufferSize, udpTransportBindingElement.SocketReceiveBufferSize); 42this.SetPropertyValueIfNotDefaultValue(UdpTransportConfigurationStrings.TimeToLive, udpTransportBindingElement.TimeToLive); 58[ConfigurationProperty(UdpTransportConfigurationStrings.DuplicateMessageHistoryLength, DefaultValue = UdpConstants.Defaults.DuplicateMessageHistoryLength)] 62get { return (int)base[UdpTransportConfigurationStrings.DuplicateMessageHistoryLength]; } 63set { base[UdpTransportConfigurationStrings.DuplicateMessageHistoryLength] = value; } 66[ConfigurationProperty(UdpTransportConfigurationStrings.MaxPendingMessagesTotalSize, DefaultValue = UdpConstants.Defaults.DefaultMaxPendingMessagesTotalSize)] 70get { return (long)base[UdpTransportConfigurationStrings.MaxPendingMessagesTotalSize]; } 71set { base[UdpTransportConfigurationStrings.MaxPendingMessagesTotalSize] = value; } 74[ConfigurationProperty(UdpTransportConfigurationStrings.MulticastInterfaceId, DefaultValue = UdpConstants.Defaults.MulticastInterfaceId)] 78get { return (string)base[UdpTransportConfigurationStrings.MulticastInterfaceId]; } 79set { base[UdpTransportConfigurationStrings.MulticastInterfaceId] = value; } 82[ConfigurationProperty(UdpTransportConfigurationStrings.SocketReceiveBufferSize, DefaultValue = UdpConstants.Defaults.SocketReceiveBufferSize)] 86get { return (int)base[UdpTransportConfigurationStrings.SocketReceiveBufferSize]; } 87set { base[UdpTransportConfigurationStrings.SocketReceiveBufferSize] = value; } 90[ConfigurationProperty(UdpTransportConfigurationStrings.TimeToLive, DefaultValue = UdpConstants.Defaults.TimeToLive)] 94get { return (int)base[UdpTransportConfigurationStrings.TimeToLive]; } 95set { base[UdpTransportConfigurationStrings.TimeToLive] = value; } 98[ConfigurationProperty(UdpTransportConfigurationStrings.RetransmissionSettings)] 102get { return (UdpRetransmissionSettingsElement)base[UdpTransportConfigurationStrings.RetransmissionSettings]; } 103set { base[UdpTransportConfigurationStrings.RetransmissionSettings] = value; }
System\ServiceModel\UdpBinding.cs (1)
38UdpTransportConfigurationStrings.UdpBindingElementName)));