Home
last modified time | relevance | path

Searched refs:BypassProxyOnLocal (Results 1 – 25 of 84) sorted by relevance

1234

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Configuration/
H A DWSHttpBindingBaseElement.cs27 …igurationProperty(ConfigurationStrings.BypassProxyOnLocal, DefaultValue = HttpTransportDefaults.By…
28 public bool BypassProxyOnLocal property in System.ServiceModel.Configuration.WSHttpBindingBaseElement
30 get { return (bool)base[ConfigurationStrings.BypassProxyOnLocal]; }
31 set { base[ConfigurationStrings.BypassProxyOnLocal] = value; }
112 …PropertyValueIfNotDefaultValue(ConfigurationStrings.BypassProxyOnLocal, wspBinding.BypassProxyOnLo… in InitializeFrom()
129 wspBinding.BypassProxyOnLocal = this.BypassProxyOnLocal; in OnApplyConfiguration()
H A DHttpBindingBaseElement.cs31 …igurationProperty(ConfigurationStrings.BypassProxyOnLocal, DefaultValue = HttpTransportDefaults.By…
32 public bool BypassProxyOnLocal property in System.ServiceModel.Configuration.HttpBindingBaseElement
34 get { return (bool)base[ConfigurationStrings.BypassProxyOnLocal]; }
35 set { base[ConfigurationStrings.BypassProxyOnLocal] = value; }
121 …pertyValueIfNotDefaultValue(ConfigurationStrings.BypassProxyOnLocal, httpBindingBase.BypassProxyOn… in InitializeFrom()
138 httpBindingBase.BypassProxyOnLocal = this.BypassProxyOnLocal; in OnApplyConfiguration()
H A DWSDualHttpBindingElement.cs32 …igurationProperty(ConfigurationStrings.BypassProxyOnLocal, DefaultValue = HttpTransportDefaults.By…
33 public bool BypassProxyOnLocal property in System.ServiceModel.Configuration.WSDualHttpBindingElement
35 get { return (bool)base[ConfigurationStrings.BypassProxyOnLocal]; }
36 set { base[ConfigurationStrings.BypassProxyOnLocal] = value; }
130 …PropertyValueIfNotDefaultValue(ConfigurationStrings.BypassProxyOnLocal, wspBinding.BypassProxyOnLo… in InitializeFrom()
149 wspBinding.BypassProxyOnLocal = this.BypassProxyOnLocal; in OnApplyConfiguration()
H A DHttpTransportElement.cs56 …igurationProperty(ConfigurationStrings.BypassProxyOnLocal, DefaultValue = HttpTransportDefaults.By…
57 public bool BypassProxyOnLocal property in System.ServiceModel.Configuration.HttpTransportElement
59 get { return (bool)base[ConfigurationStrings.BypassProxyOnLocal]; }
60 set { base[ConfigurationStrings.BypassProxyOnLocal] = value; }
184 binding.BypassProxyOnLocal = this.BypassProxyOnLocal; in ApplyConfiguration()
218 this.BypassProxyOnLocal = source.BypassProxyOnLocal; in CopyFrom()
247 …etPropertyValueIfNotDefaultValue(ConfigurationStrings.BypassProxyOnLocal, source.BypassProxyOnLoca… in InitializeFrom()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/System.ServiceModel.Configuration/
H A DHttpTransportElement.cs93 public bool BypassProxyOnLocal { property in System.ServiceModel.Configuration.HttpTransportElement
221 b.BypassProxyOnLocal = BypassProxyOnLocal; in ApplyConfiguration()
242 BypassProxyOnLocal = e.BypassProxyOnLocal; in CopyFrom()
272 BypassProxyOnLocal = b.BypassProxyOnLocal; in InitializeFrom()
H A DHttpBindingBaseElement.cs87 public bool BypassProxyOnLocal { property in System.ServiceModel.Configuration.HttpBindingBaseElement
197 basicHttpBinding.BypassProxyOnLocal = BypassProxyOnLocal; in OnApplyConfiguration()
217 BypassProxyOnLocal = b.BypassProxyOnLocal; in InitializeFrom()
H A DWSHttpBindingBaseElement.cs74 public bool BypassProxyOnLocal { property in System.ServiceModel.Configuration.WSHttpBindingBaseElement
185 b.BypassProxyOnLocal = BypassProxyOnLocal; in OnApplyConfiguration()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/
H A DHttpBindingBase.cs52 [DefaultValue(HttpTransportDefaults.BypassProxyOnLocal)]
53 public bool BypassProxyOnLocal property in System.ServiceModel.HttpBindingBase
57 return this.httpTransport.BypassProxyOnLocal;
62 this.httpTransport.BypassProxyOnLocal = value;
63 this.httpsTransport.BypassProxyOnLocal = value;
336 this.BypassProxyOnLocal = transport.BypassProxyOnLocal; in InitializeFrom()
H A DWSHttpBindingBase.cs46 [DefaultValue(HttpTransportDefaults.BypassProxyOnLocal)]
47 public bool BypassProxyOnLocal property in System.ServiceModel.WSHttpBindingBase
49 get { return httpTransport.BypassProxyOnLocal; }
52 httpTransport.BypassProxyOnLocal = value;
53 httpsTransport.BypassProxyOnLocal = value;
226 this.BypassProxyOnLocal = transport.BypassProxyOnLocal; in InitializeFrom()
H A DWSDualHttpBinding.cs68 [DefaultValue(HttpTransportDefaults.BypassProxyOnLocal)]
69 public bool BypassProxyOnLocal property in System.ServiceModel.WSDualHttpBinding
71 get { return httpTransport.BypassProxyOnLocal; }
72 set { httpTransport.BypassProxyOnLocal = value; }
237 this.BypassProxyOnLocal = transport.BypassProxyOnLocal; in InitializeFrom()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel.Web/System/ServiceModel/Configuration/
H A DWebHttpBindingElement.cs39 …igurationProperty(ConfigurationStrings.BypassProxyOnLocal, DefaultValue = HttpTransportDefaults.By…
40 public bool BypassProxyOnLocal property in System.ServiceModel.Configuration.WebHttpBindingElement
42 get { return (bool)base[ConfigurationStrings.BypassProxyOnLocal]; }
43 set { base[ConfigurationStrings.BypassProxyOnLocal] = value; }
186 …PropertyValueIfNotDefaultValue(ConfigurationStrings.BypassProxyOnLocal, webBinding.BypassProxyOnLo… in InitializeFrom()
239 webBinding.BypassProxyOnLocal = this.BypassProxyOnLocal; in OnApplyConfiguration()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.WebProxy/tests/
H A DWebProxyTest.cs42 Assert.Equal(bypassLocal, p.BypassProxyOnLocal); in WebProxy_Ctor_ExpectedPropertyValues()
88 Assert.False(p.BypassProxyOnLocal); in WebProxy_BypassProxyOnLocal_Roundtrip()
90 p.BypassProxyOnLocal = true; in WebProxy_BypassProxyOnLocal_Roundtrip()
91 Assert.True(p.BypassProxyOnLocal); in WebProxy_BypassProxyOnLocal_Roundtrip()
93 p.BypassProxyOnLocal = false; in WebProxy_BypassProxyOnLocal_Roundtrip()
94 Assert.False(p.BypassProxyOnLocal); in WebProxy_BypassProxyOnLocal_Roundtrip()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel.Web/System/ServiceModel/
H A DWebHttpBinding.cs50 [DefaultValue(HttpTransportDefaults.BypassProxyOnLocal)]
51 public bool BypassProxyOnLocal property in System.ServiceModel.WebHttpBinding
53 get { return httpTransportBindingElement.BypassProxyOnLocal; }
56 httpTransportBindingElement.BypassProxyOnLocal = value;
57 httpsTransportBindingElement.BypassProxyOnLocal = value;
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel.Web/System.ServiceModel.Configuration/
H A DWebHttpBindingElement.cs159 public bool BypassProxyOnLocal { property in System.ServiceModel.Configuration.WebHttpBindingElement
268 webBinding.BypassProxyOnLocal = BypassProxyOnLocal; in OnApplyConfiguration()
287 BypassProxyOnLocal = b.BypassProxyOnLocal; in InitializeFrom()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/System.ServiceModel/
H A DWSHttpBindingBase.cs79 BypassProxyOnLocal = config.BypassProxyOnLocal; in WSHttpBindingBase()
93 public bool BypassProxyOnLocal { property in System.ServiceModel.WSHttpBindingBase
H A DBasicHttpsBinding.cs149 h.BypassProxyOnLocal = BypassProxyOnLocal; in GetTransport()
H A DBasicHttpBinding_4_5.cs176 h.BypassProxyOnLocal = BypassProxyOnLocal; in GetTransport()
H A DHttpBindingBase.cs66 public bool BypassProxyOnLocal { property in System.ServiceModel.HttpBindingBase
H A DWSDualHttpBinding.cs76 public bool BypassProxyOnLocal { property in System.ServiceModel.WSDualHttpBinding
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel.Web/System.ServiceModel/
H A DWebHttpBinding.cs98 public bool BypassProxyOnLocal { property in System.ServiceModel.WebHttpBinding
99 get { return t.BypassProxyOnLocal; }
100 set { t.BypassProxyOnLocal = value; }
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.WebProxy/src/System/Net/
H A DWebProxy.cs31 this.BypassProxyOnLocal = BypassOnLocal; in WebProxy()
66 public bool BypassProxyOnLocal { get; set; } property in System.Net.WebProxy
205 (BypassProxyOnLocal && IsLocal(host)) || in IsBypassed()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/Test/System.ServiceModel/
H A DBasicHttpBindingTest.cs109 Assert.AreEqual (false, b.BypassProxyOnLocal, "#1"); in DefaultValues()
184 Assert.AreEqual (true, b.BypassProxyOnLocal, "#2"); in ApplyConfiguration()
236 Assert.AreEqual (true, t.BypassProxyOnLocal, "#3"); in Elements_TransportBindingElement()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.WebProxy/ref/
H A DSystem.Net.WebProxy.cs29 public bool BypassProxyOnLocal { get { throw null; } set { } } property in System.Net.WebProxy
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel.Web/Test/System.ServiceModel.Configuration/
H A DWebHttpBindingElementTest.cs35 Assert.AreEqual (true, b.BypassProxyOnLocal, "#2"); in ApplyConfiguration()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/Configuration/
H A DDefaultProxySection.cs247 …tempProxy.BypassProxyOnLocal = section.Proxy.BypassOnLocal == ProxyElement.BypassOnLocalValues.Tru… in DefaultProxySectionInternal()
305 p.BypassProxyOnLocal = (pe.BypassOnLocal == ProxyElement.BypassOnLocalValues.True);

1234