<Type Name="WebProxy" FullName="System.Net.WebProxy" FullNameSP="System_Net_WebProxy" Maintainer="ecma">
  <TypeSignature Language="ILASM" Value=".class public serializable WebProxy extends System.Object implements System.Net.IWebProxy" />
  <TypeSignature Language="C#" Value="public class WebProxy : System.Net.IWebProxy, System.Runtime.Serialization.ISerializable" />
  <TypeSignature Language="ILAsm" Value=".class public auto ansi serializable beforefieldinit WebProxy extends System.Object implements class System.Net.IWebProxy, class System.Runtime.Serialization.ISerializable" />
  <MemberOfLibrary>Networking</MemberOfLibrary>
  <AssemblyInfo>
    <AssemblyName>System</AssemblyName>
    <AssemblyPublicKey>[00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00 ]</AssemblyPublicKey>
    <AssemblyVersion>1.0.x.x</AssemblyVersion>
    <AssemblyVersion>1.0.5000.0</AssemblyVersion>
    <AssemblyVersion>2.0.0.0</AssemblyVersion>
    <AssemblyVersion>4.0.0.0</AssemblyVersion>
  </AssemblyInfo>
  <ThreadingSafetyStatement>All public static members of this type are safe for multithreaded operations. No instance members are guaranteed to be thread safe.</ThreadingSafetyStatement>
  <Base>
    <BaseTypeName>System.Object</BaseTypeName>
  </Base>
  <Interfaces>
    <Interface>
      <InterfaceName>System.Net.IWebProxy</InterfaceName>
    </Interface>
    <Interface>
      <InterfaceName>System.Runtime.Serialization.ISerializable</InterfaceName>
    </Interface>
  </Interfaces>
  <Docs>
    <summary>
      <para>Contains HTTP proxy settings for the <see cref="T:System.Net.WebRequest" /> class.</para>
    </summary>
    <remarks>
      <para>
        <see cref="T:System.Net.WebRequest" /> instances
   use <see cref="T:System.Net.WebProxy" /> instances to override the proxy settings in
<see cref="T:System.Net.GlobalProxySelection" /> . </para>
      <para>
        <block subset="none" type="note">Local requests are
   identified by the lack of a period (.) in the authority of the URI, as in "http://webserver/"
   versus "http://www.contoso.com/
   ".</block>
      </para>
    </remarks>
    <example>
      <para>The following example sets a <see cref="T:System.Net.WebProxy" /> for a
<see cref="T:System.Net.WebRequest" />. The <see cref="T:System.Net.WebRequest" /> instance uses the proxy to 
   connect to external Internet resources.</para>
      <code lang="C#">using System;
using System.Net;

public class WebProxyExample {

  public static void Main() {

    WebProxy proxyObject =
      new WebProxy("http://proxyserver:80/",true);
    WebRequest req =
      WebRequest.Create("http://www.contoso.com");
    req.Proxy = proxyObject;
  }
}
</code>
    </example>
  </Docs>
  <Members>
    <Member MemberName=".ctor">
      <MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor()" />
      <MemberSignature Language="C#" Value="public WebProxy ();" />
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
      <MemberType>Constructor</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue />
      <Parameters />
      <Docs>
        <summary>
          <para>Constructs and initializes a new instance of the <see cref="T:System.Net.WebProxy" />
class.</para>
        </summary>
        <remarks>
          <para>This constructor initializes the properties of the new instance as
      follows.</para>
          <list type="table">
            <listheader>
              <term>Property</term>
              <description>Value</description>
            </listheader>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.Address" />
                </para>
              </term>
              <description>
                <see langword="null" />
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassArrayList" />
                </para>
              </term>
              <description> A new empty 
   <see cref="T:System.Collections.ArrayList" />.</description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassList" />
                </para>
              </term>
              <description> 
      A
      new empty <see cref="T:System.String" />
      array. </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassProxyOnLocal" />
                </para>
              </term>
              <description>
                <see langword="false" />
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.Credentials" />
                </para>
              </term>
              <description>
                <see langword="null" />
              </description>
            </item>
          </list>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor(string Address)" />
      <MemberSignature Language="C#" Value="public WebProxy (string address);" />
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string address) cil managed" />
      <MemberType>Constructor</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue />
      <Parameters>
        <Parameter Name="address" Type="System.String" />
      </Parameters>
      <Docs>
        <param name="address">A <see cref="T:System.String" /> containing the URI of the proxy server.</param>
        <summary>
          <para>Constructs and initializes a new instance of the <see cref="T:System.Net.WebProxy" /> class with the specified URI. </para>
        </summary>
        <remarks>
          <para> This constructor initializes the properties of the new instance
      as follows.</para>
          <list type="table">
            <listheader>
              <term>Property</term>
              <description>Value</description>
            </listheader>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.Address" />
                </para>
              </term>
              <description>A new
         <see cref="T:System.Uri" /> constructed from <paramref name="Address" /> or, if <paramref name="Address" /> does not contain "://", constructed from "http://<paramref name="Address" />". If <paramref name="Address" /> is <see langword="null" />,
            this property is set to <see langword="null" />.</description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassArrayList" />
                </para>
              </term>
              <description> A new empty 
         <see cref="T:System.Collections.ArrayList" />.</description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassList" />
                </para>
              </term>
              <description> 
            A
            new empty <see cref="T:System.String" />
            array. </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassProxyOnLocal" />
                </para>
              </term>
              <description>
                <see langword="false" />
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.Credentials" />
                </para>
              </term>
              <description>
                <see langword="null" />
              </description>
            </item>
          </list>
        </remarks>
        <exception cref="T:System.UriFormatException">
          <paramref name="Address " />is not <see langword="null" /> and not in a valid URI format.</exception>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor(class System.Uri Address)" />
      <MemberSignature Language="C#" Value="public WebProxy (Uri address);" />
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.Uri address) cil managed" />
      <MemberType>Constructor</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue />
      <Parameters>
        <Parameter Name="address" Type="System.Uri" />
      </Parameters>
      <Docs>
        <param name="address">A <see cref="T:System.Uri" /> containing the address of the proxy server.</param>
        <summary>
          <para>Constructs and initializes a new instance of the <see cref="T:System.Net.WebProxy" /> class using the specified <see cref="T:System.Uri" />
.</para>
        </summary>
        <remarks>
          <para>This constructor initializes the properties of the new instance as
      follows.</para>
          <list type="table">
            <listheader>
              <term>Property</term>
              <description>Value</description>
            </listheader>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.Address" />
                </para>
              </term>
              <description>
                <paramref name="Address" />
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassArrayList" />
                </para>
              </term>
              <description> A new empty 
   <see cref="T:System.Collections.ArrayList" />.</description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassList" />
                </para>
              </term>
              <description> 
      A
      new empty <see cref="T:System.String" />
      array. </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassProxyOnLocal" />
                </para>
              </term>
              <description>
                <see langword="false" />
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.Credentials" />
                </para>
              </term>
              <description>
                <see langword="null" />
              </description>
            </item>
          </list>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="C#" Value="protected WebProxy (System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext);" />
      <MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor(class System.Runtime.Serialization.SerializationInfo serializationInfo, valuetype System.Runtime.Serialization.StreamingContext streamingContext) cil managed" />
      <MemberType>Constructor</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <Parameters>
        <Parameter Name="serializationInfo" Type="System.Runtime.Serialization.SerializationInfo" />
        <Parameter Name="streamingContext" Type="System.Runtime.Serialization.StreamingContext" />
      </Parameters>
      <Docs>
        <param name="serializationInfo">To be added.</param>
        <param name="streamingContext">To be added.</param>
        <summary>To be added.</summary>
        <remarks>To be added.</remarks>
      </Docs>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor(string Address, bool BypassOnLocal)" />
      <MemberSignature Language="C#" Value="public WebProxy (string address, bool bypassOnLocal);" />
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string address, bool bypassOnLocal) cil managed" />
      <MemberType>Constructor</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue />
      <Parameters>
        <Parameter Name="address" Type="System.String" />
        <Parameter Name="bypassOnLocal" Type="System.Boolean" />
      </Parameters>
      <Docs>
        <param name="address">To be added.</param>
        <param name="bypassOnLocal">To be added.</param>
        <summary>
          <para>Constructs and initializes a new instance of the <see cref="T:System.Net.WebProxy" /> class with the specified URI and bypass setting.</para>
        </summary>
        <remarks>
          <para> This constructor initializes the properties of the new instance
      as follows.</para>
          <list type="table">
            <listheader>
              <term>Property</term>
              <description>Value</description>
            </listheader>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.Address" />
                </para>
              </term>
              <description>A new
         <see cref="T:System.Uri" /> constructed from <paramref name="Address" /> or, if <paramref name="Address" /> does not contain "://", constructed from "http://<paramref name="Address" />".
            If <paramref name="Address" /> is <see langword="null" />,
            this property is set to <see langword="null" />.</description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassArrayList" />
                </para>
              </term>
              <description> A new empty 
         <see cref="T:System.Collections.ArrayList" />.</description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassList" />
                </para>
              </term>
              <description> 
            A
            new empty <see cref="T:System.String" />
            array. </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassProxyOnLocal" />
                </para>
              </term>
              <description>
                <paramref name="BypassOnLocal" />
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.Credentials" />
                </para>
              </term>
              <description>
                <see langword="null" />
              </description>
            </item>
          </list>
        </remarks>
        <exception cref="T:System.UriFormatException">
          <para>
            <paramref name="Address " />is not in a valid URI format.</para>
        </exception>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor(string Host, int32 Port)" />
      <MemberSignature Language="C#" Value="public WebProxy (string host, int port);" />
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string host, int32 port) cil managed" />
      <MemberType>Constructor</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue />
      <Parameters>
        <Parameter Name="host" Type="System.String" />
        <Parameter Name="port" Type="System.Int32" />
      </Parameters>
      <Docs>
        <param name="host">To be added.</param>
        <param name="port">To be added.</param>
        <summary>
          <para>Constructs and initializes a new instance of the <see cref="T:System.Net.WebProxy" /> class with
   the specified host and port number.</para>
        </summary>
        <remarks>
          <para> This constructor initializes the properties of the new instance
      as follows.</para>
          <list type="table">
            <listheader>
              <term>Property</term>
              <description>Value</description>
            </listheader>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.Address" />
                </para>
              </term>
              <description>A new <see cref="T:System.Uri" /> 
   constructed from "http://<paramref name="Host" />:<paramref name="Port" />".</description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassArrayList" />
                </para>
              </term>
              <description> A new empty 
   <see cref="T:System.Collections.ArrayList" />.</description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassList" />
                </para>
              </term>
              <description> 
      A
      new empty <see cref="T:System.String" />
      array. </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassProxyOnLocal" />
                </para>
              </term>
              <description>
                <see langword="false" />
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.Credentials" />
                </para>
              </term>
              <description>
                <see langword="null" />
              </description>
            </item>
          </list>
        </remarks>
        <exception cref="T:System.UriFormatException">The URI formed by combining <paramref name="Host" /> and <paramref name="Port" /> is not in a valid URI format.</exception>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor(class System.Uri Address, bool BypassOnLocal)" />
      <MemberSignature Language="C#" Value="public WebProxy (Uri address, bool bypassOnLocal);" />
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.Uri address, bool bypassOnLocal) cil managed" />
      <MemberType>Constructor</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue />
      <Parameters>
        <Parameter Name="address" Type="System.Uri" />
        <Parameter Name="bypassOnLocal" Type="System.Boolean" />
      </Parameters>
      <Docs>
        <param name="address">To be added.</param>
        <param name="bypassOnLocal">To be added.</param>
        <summary>
          <para>Constructs and initializes a new instance of the <see cref="T:System.Net.WebProxy" /> class using the specified <see cref="T:System.Uri" /> and specified bypass setting.</para>
        </summary>
        <remarks>
          <para>The properties of the new instance are initialized as detailed in the
      following table.</para>
          <list type="table">
            <listheader>
              <term>Property</term>
              <description>Value</description>
            </listheader>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.Address" />
                </para>
              </term>
              <description>
                <paramref name="Address" />
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassArrayList" />
                </para>
              </term>
              <description> A new empty 
   <see cref="T:System.Collections.ArrayList" />.</description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassList" />
                </para>
              </term>
              <description> 
      A
      new empty <see cref="T:System.String" />
      array. </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassProxyOnLocal" />
                </para>
              </term>
              <description>
                <paramref name="BypassOnLocal" />
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.Credentials" />
                </para>
              </term>
              <description>
                <see langword="null" />
              </description>
            </item>
          </list>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor(string Address, bool BypassOnLocal, class System.String[] BypassList)" />
      <MemberSignature Language="C#" Value="public WebProxy (string address, bool bypassOnLocal, string[] bypassList);" />
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string address, bool bypassOnLocal, string[] bypassList) cil managed" />
      <MemberType>Constructor</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue />
      <Parameters>
        <Parameter Name="address" Type="System.String" />
        <Parameter Name="bypassOnLocal" Type="System.Boolean" />
        <Parameter Name="bypassList" Type="System.String[]" />
      </Parameters>
      <Docs>
        <param name="address">To be added.</param>
        <param name="bypassOnLocal">To be added.</param>
        <param name="bypassList">To be added.</param>
        <summary>
          <para>Constructs and initializes a new instance of the <see cref="T:System.Net.WebProxy" /> class with the specified URI, bypass setting, and list of URIs to bypass.</para>
        </summary>
        <remarks>
          <para> This constructor initializes the properties of the new instance
      as follows.</para>
          <list type="table">
            <listheader>
              <term>Property</term>
              <description>Value</description>
            </listheader>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.Address" />
                </para>
              </term>
              <description>A new
         <see cref="T:System.Uri" /> constructed from <paramref name="Address" /> or, if <paramref name="Address" /> does not contain "://", constructed from "http://<paramref name="Address" />". If <paramref name="Address" /> is <see langword="null" />,
            this property is set to <see langword="null" />.</description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassArrayList" />
                </para>
              </term>
              <description> 
            A new <see cref="T:System.Collections.ArrayList" />
            constructed from <paramref name="BypassList" /> or, if <paramref name="BypassList" /> is
         <see langword="null" />, a new 
            empty <see cref="T:System.Collections.ArrayList" />.</description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassList" />
                </para>
              </term>
              <description>
                <paramref name="BypassList" /> or, if <paramref name="BypassList" /> is 
      <see langword="null" />, a new empty <see cref="T:System.String" /> array.</description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassProxyOnLocal" />
                </para>
              </term>
              <description>
                <paramref name="BypassOnLocal" />
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.Credentials" />
                </para>
              </term>
              <description>
                <see langword="null" />
              </description>
            </item>
          </list>
        </remarks>
        <exception cref="T:System.UriFormatException">
          <para>
            <paramref name="Address " />is not in a valid URI format.</para>
        </exception>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor(class System.Uri Address, bool BypassOnLocal, class System.String[] BypassList)" />
      <MemberSignature Language="C#" Value="public WebProxy (Uri address, bool bypassOnLocal, string[] bypassList);" />
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.Uri address, bool bypassOnLocal, string[] bypassList) cil managed" />
      <MemberType>Constructor</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue />
      <Parameters>
        <Parameter Name="address" Type="System.Uri" />
        <Parameter Name="bypassOnLocal" Type="System.Boolean" />
        <Parameter Name="bypassList" Type="System.String[]" />
      </Parameters>
      <Docs>
        <param name="address">To be added.</param>
        <param name="bypassOnLocal">To be added.</param>
        <param name="bypassList">To be added.</param>
        <summary>
          <para>Constructs a new instance of the <see cref="T:System.Net.WebProxy" /> class with the specified <see cref="T:System.Uri" /> , bypass setting,
   and list of URIs to bypass.</para>
        </summary>
        <remarks>
          <para> This constructor initializes the properties of the new instance
      as follows.</para>
          <list type="table">
            <listheader>
              <term>Property</term>
              <description>Value</description>
            </listheader>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.Address" />
                </para>
              </term>
              <description>
                <paramref name="Address" />
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassArrayList" />
                </para>
              </term>
              <description> 
         A new <see cref="T:System.Collections.ArrayList" />
         constructed from <paramref name="BypassList" /> or, if <paramref name="BypassList" /> is
      <see langword="null" />, a new 
         empty <see cref="T:System.Collections.ArrayList" />.</description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassList" />
                </para>
              </term>
              <description>
                <paramref name="BypassList" /> or, if <paramref name="BypassList" /> is 
   <see langword="null" />, a new empty <see cref="T:System.String" /> array.</description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassProxyOnLocal" />
                </para>
              </term>
              <description>
                <paramref name="BypassOnLocal" />
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.Credentials" />
                </para>
              </term>
              <description>
                <see langword="null" />
              </description>
            </item>
          </list>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor(string Address, bool BypassOnLocal, class System.String[] BypassList, class System.Net.ICredentials Credentials)" />
      <MemberSignature Language="C#" Value="public WebProxy (string address, bool bypassOnLocal, string[] bypassList, System.Net.ICredentials credentials);" />
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string address, bool bypassOnLocal, string[] bypassList, class System.Net.ICredentials credentials) cil managed" />
      <MemberType>Constructor</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue />
      <Parameters>
        <Parameter Name="address" Type="System.String" />
        <Parameter Name="bypassOnLocal" Type="System.Boolean" />
        <Parameter Name="bypassList" Type="System.String[]" />
        <Parameter Name="credentials" Type="System.Net.ICredentials" />
      </Parameters>
      <Docs>
        <param name="address">To be added.</param>
        <param name="bypassOnLocal">To be added.</param>
        <param name="bypassList">To be added.</param>
        <param name="credentials">To be added.</param>
        <summary>
          <para>Constructs and initializes a new instance of the <see cref="T:System.Net.WebProxy" /> class with the specified URI, bypass setting, list of URIs to bypass, and credentials.</para>
        </summary>
        <remarks>
          <para> This constructor initializes the properties of the new instance
      as follows.</para>
          <list type="table">
            <listheader>
              <term>Property</term>
              <description>Value</description>
            </listheader>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.Address" />
                </para>
              </term>
              <description>A new
         <see cref="T:System.Uri" /> constructed from <paramref name="Address" /> or, if <paramref name="Address" /> does not contain "://", constructed from "http://<paramref name="Address" />". If <paramref name="Address" /> is <see langword="null" />,
            this property is set to <see langword="null" />.</description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassArrayList" />
                </para>
              </term>
              <description> 
            A new <see cref="T:System.Collections.ArrayList" />
            constructed from <paramref name="BypassList" /> or, if <paramref name="BypassList" /> is
         <see langword="null" />, a new 
            empty <see cref="T:System.Collections.ArrayList" />.</description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassList" />
                </para>
              </term>
              <description>
                <paramref name="BypassList" /> or, if <paramref name="BypassList" /> is 
      <see langword="null" />, a new empty <see cref="T:System.String" /> array.</description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassProxyOnLocal" />
                </para>
              </term>
              <description>
                <paramref name="BypassOnLocal" />
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.Credentials" />
                </para>
              </term>
              <description>
                <paramref name="Credentials" />
              </description>
            </item>
          </list>
        </remarks>
        <exception cref="T:System.UriFormatException">
          <para>
            <paramref name="Address " />is not in a valid URI format.</para>
        </exception>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName=".ctor">
      <MemberSignature Language="ILASM" Value="public rtspecialname specialname instance void .ctor(class System.Uri Address, bool BypassOnLocal, class System.String[] BypassList, class System.Net.ICredentials Credentials)" />
      <MemberSignature Language="C#" Value="public WebProxy (Uri address, bool bypassOnLocal, string[] bypassList, System.Net.ICredentials credentials);" />
      <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.Uri address, bool bypassOnLocal, string[] bypassList, class System.Net.ICredentials credentials) cil managed" />
      <MemberType>Constructor</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue />
      <Parameters>
        <Parameter Name="address" Type="System.Uri" />
        <Parameter Name="bypassOnLocal" Type="System.Boolean" />
        <Parameter Name="bypassList" Type="System.String[]" />
        <Parameter Name="credentials" Type="System.Net.ICredentials" />
      </Parameters>
      <Docs>
        <param name="address">To be added.</param>
        <param name="bypassOnLocal">To be added.</param>
        <param name="bypassList">To be added.</param>
        <param name="credentials">To be added.</param>
        <summary>
          <para>Constructs and initializes a new instance of the <see cref="T:System.Net.WebProxy" /> class with the specified <see cref="T:System.Uri" /> , bypass setting, list of URIs to bypass, and credentials.</para>
        </summary>
        <remarks>
          <para> This constructor initializes the properties of the new instance
      as follows.</para>
          <list type="table">
            <listheader>
              <term>Property</term>
              <description>Value</description>
            </listheader>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.Address" />
                </para>
              </term>
              <description>
                <paramref name="Address" />
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassArrayList" />
                </para>
              </term>
              <description> 
         A new <see cref="T:System.Collections.ArrayList" />
         constructed from <paramref name="BypassList" /> or, if <paramref name="BypassList" /> is
      <see langword="null" />, a new 
         empty <see cref="T:System.Collections.ArrayList" />.</description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassList" />
                </para>
              </term>
              <description>
                <paramref name="BypassList" /> or, if <paramref name="BypassList" /> is 
   <see langword="null" />, a new empty <see cref="T:System.String" /> array.</description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.BypassProxyOnLocal" />
                </para>
              </term>
              <description>
                <paramref name="BypassOnLocal" />
              </description>
            </item>
            <item>
              <term>
                <para>
                  <see cref="P:System.Net.WebProxy.Credentials" />
                </para>
              </term>
              <description>
                <paramref name="Credentials" />
              </description>
            </item>
          </list>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Address">
      <MemberSignature Language="ILASM" Value=".property class System.Uri Address { public hidebysig specialname instance class System.Uri get_Address() public hidebysig specialname instance void set_Address(class System.Uri value) }" />
      <MemberSignature Language="C#" Value="public Uri Address { get; set; }" />
      <MemberSignature Language="ILAsm" Value=".property instance class System.Uri Address" />
      <MemberType>Property</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Uri</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>
          <para>Gets or sets the address of the proxy server represented by the current instance.</para>
        </summary>
        <value>
          <para>A <see cref="T:System.Uri" /> containing the 
 address of the proxy server represented by the current instance.</para>
        </value>
        <remarks>
          <block subset="none" type="note">
            <para> 
 When <see cref="P:System.Net.WebProxy.Address" /> is <see langword="null" /> , all requests that reference the current
 instance bypass the proxy and connect directly to the destination host. </para>
            <para>For additional information, see <see cref="P:System.Net.WebRequest.Proxy" />.</para>
          </block>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="BypassArrayList">
      <MemberSignature Language="ILASM" Value=".property class System.Collections.ArrayList BypassArrayList { public hidebysig specialname instance class System.Collections.ArrayList get_BypassArrayList() }" />
      <MemberSignature Language="C#" Value="public System.Collections.ArrayList BypassArrayList { get; }" />
      <MemberSignature Language="ILAsm" Value=".property instance class System.Collections.ArrayList BypassArrayList" />
      <MemberType>Property</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Collections.ArrayList</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>
          <para> Gets a list of the URIs that do not use the proxy server.</para>
        </summary>
        <value>
          <para> A <see cref="T:System.Collections.ArrayList" /> of
<see cref="T:System.String" /> instances. The elements of 
   the list represent the URIs that a <see cref="T:System.Net.WebRequest" />
   instance accesses directly instead of through the proxy server.</para>
        </value>
        <remarks>
          <para>This property is read-only.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="BypassList">
      <MemberSignature Language="ILASM" Value=".property class System.String[] BypassList { public hidebysig specialname instance class System.String[] get_BypassList() public hidebysig specialname instance void set_BypassList(class System.String[] value) }" />
      <MemberSignature Language="C#" Value="public string[] BypassList { get; set; }" />
      <MemberSignature Language="ILAsm" Value=".property instance string[] BypassList" />
      <MemberType>Property</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.String[]</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>
          <para>Gets or sets an array of the URIs that do not use the proxy server.</para>
        </summary>
        <value>
          <para>A <see cref="T:System.Array" /> of <see cref="T:System.String" /> instances. The elements of the array represent URIs that
   a <see cref="T:System.Net.WebRequest" />
   instance accesses directly instead of through the
   proxy server. </para>
        </value>
        <remarks>
          <para>This property is equivalent to <see cref="P:System.Net.WebProxy.BypassArrayList" />.<see langword="ToArray" />(<see langword="typeof" />(<see cref="T:System.String" />)).</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="BypassProxyOnLocal">
      <MemberSignature Language="ILASM" Value=".property bool BypassProxyOnLocal { public hidebysig specialname instance bool get_BypassProxyOnLocal() public hidebysig specialname instance void set_BypassProxyOnLocal(bool value) }" />
      <MemberSignature Language="C#" Value="public bool BypassProxyOnLocal { get; set; }" />
      <MemberSignature Language="ILAsm" Value=".property instance bool BypassProxyOnLocal" />
      <MemberType>Property</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Boolean</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>
          <para> Gets or sets a <see cref="T:System.Boolean" /> value indicating whether requests
   for local resources bypass the proxy server.</para>
        </summary>
        <value>
          <para>
            <see langword="true " />to bypass the proxy server for local resources;
   otherwise, <see langword="false" />. The default value is
<see langword="false" />.</para>
        </value>
        <remarks>
          <para>The setting of this property
      determines whether <see cref="T:System.Net.WebRequest" /> instances use the
      proxy server when accessing local resources. If <see cref="P:System.Net.WebProxy.BypassProxyOnLocal" /> is <see langword="true" /> , requests
      to local resources do not use the proxy server. Local resources are
      identified by the lack of a period (.) in the URI, as in "http://webserver/". When <see cref="P:System.Net.WebProxy.BypassProxyOnLocal" /> is
   <see langword="false" /> , all
      requests for resources are made through the proxy server. </para>
          <para>
            <block subset="none" type="note">If a request for a
      resource residing on a local machine is made using a URI that contains a period,
      the proxy is used to send the request. Create an entity in
      the <see cref="P:System.Net.WebProxy.BypassList" /> to access local resources directly.</block>
          </para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="Credentials">
      <MemberSignature Language="ILASM" Value=".property class System.Net.ICredentials Credentials { public final hidebysig virtual specialname class System.Net.ICredentials get_Credentials() public final hidebysig virtual specialname void set_Credentials(class System.Net.ICredentials value) }" />
      <MemberSignature Language="C#" Value="public System.Net.ICredentials Credentials { get; set; }" />
      <MemberSignature Language="ILAsm" Value=".property instance class System.Net.ICredentials Credentials" />
      <MemberType>Property</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Net.ICredentials</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>
          <para>Gets or sets the credentials to submit to the proxy server
 for authentication.</para>
        </summary>
        <value>
          <para> A <see cref="T:System.Net.ICredentials" /> object
 containing the credentials to submit to the proxy server
 for authentication.</para>
        </value>
        <remarks>
          <para>This property contains the authentication
 credentials to send to the proxy server in response to an HTTP 407 (proxy authorization)
 status code.</para>
          <para>
            <block subset="none" type="note">For more information regarding HTTP 
 status code 407, see <see cref="F:System.Net.HttpStatusCode.ProxyAuthenticationRequired" />.</block>
          </para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="GetDefaultProxy">
      <MemberSignature Language="ILASM" Value=".method public hidebysig static class System.Net.WebProxy GetDefaultProxy()" />
      <MemberSignature Language="C#" Value="public static System.Net.WebProxy GetDefaultProxy ();" />
      <MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Net.WebProxy GetDefaultProxy() cil managed" />
      <MemberType>Method</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <Attributes>
        <Attribute>
          <AttributeName>System.MonoTODO("Can we get this info under windows from the system?")</AttributeName>
        </Attribute>
        <Attribute>
          <AttributeName>System.Obsolete("This method has been deprecated", false)</AttributeName>
        </Attribute>
      </Attributes>
      <ReturnValue>
        <ReturnType>System.Net.WebProxy</ReturnType>
      </ReturnValue>
      <Parameters />
      <Docs>
        <summary>
          <para>Returns a new <see cref="T:System.Net.WebProxy" /> instance that contains the default proxy settings of the system.</para>
        </summary>
        <returns>
          <para>A new <see cref="T:System.Net.WebProxy" />
instance that contains the default proxy settings of the
system.</para>
        </returns>
        <remarks>
          <para>The default proxy settings of the system are implementation-defined.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="GetObjectData">
      <MemberSignature Language="C#" Value="protected virtual void GetObjectData (System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext);" />
      <MemberSignature Language="ILAsm" Value=".method familyhidebysig newslot virtual instance void GetObjectData(class System.Runtime.Serialization.SerializationInfo serializationInfo, valuetype System.Runtime.Serialization.StreamingContext streamingContext) cil managed" />
      <MemberType>Method</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="serializationInfo" Type="System.Runtime.Serialization.SerializationInfo" />
        <Parameter Name="streamingContext" Type="System.Runtime.Serialization.StreamingContext" />
      </Parameters>
      <Docs>
        <param name="serializationInfo">To be added.</param>
        <param name="streamingContext">To be added.</param>
        <summary>To be added.</summary>
        <remarks>To be added.</remarks>
      </Docs>
    </Member>
    <Member MemberName="GetProxy">
      <MemberSignature Language="ILASM" Value=".method public final hidebysig virtual class System.Uri GetProxy(class System.Uri destination)" />
      <MemberSignature Language="C#" Value="public Uri GetProxy (Uri destination);" />
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Uri GetProxy(class System.Uri destination) cil managed" />
      <MemberType>Method</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Uri</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="destination" Type="System.Uri" />
      </Parameters>
      <Docs>
        <param name="destination">The <see cref="T:System.Uri" /> of the requested resource.</param>
        <summary>
          <para>Returns the URI of the server that is contacted for the specified resource.</para>
        </summary>
        <returns>
          <para>If <paramref name="destination" /> is on the bypass list of the 
 current instance, returns <paramref name="destination" />; otherwise, returns the <see cref="P:System.Net.WebProxy.Address" /> of
 the current instance.</para>
        </returns>
        <remarks>
          <para>This
 method returns the URI that the <see cref="T:System.Net.WebRequest" /> uses to access the resource. <see cref="M:System.Net.WebProxy.GetProxy(System.Uri)" /> compares <paramref name="destination " /> with the contents
 of <see cref="P:System.Net.WebProxy.BypassList" /> using the <see cref="M:System.Net.WebProxy.IsBypassed(System.Uri)" /> method.</para>
        </remarks>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="IsBypassed">
      <MemberSignature Language="ILASM" Value=".method public final hidebysig virtual bool IsBypassed(class System.Uri host)" />
      <MemberSignature Language="C#" Value="public bool IsBypassed (Uri host);" />
      <MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool IsBypassed(class System.Uri host) cil managed" />
      <MemberType>Method</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Boolean</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="host" Type="System.Uri" />
      </Parameters>
      <Docs>
        <param name="host">A <see cref="T:System.Uri" /> containing the URI of the server to check. </param>
        <summary>
          <para> Indicates whether a request will bypass the proxy server
      when accessing the resource represented by the specified URI.</para>
        </summary>
        <returns>
          <para>Returns <see langword="true" /> under any of the following conditions:</para>
          <list type="bullet">
            <item>
              <term>
      
      The <see cref="P:System.Net.WebProxy.BypassProxyOnLocal" /> property of the current instance is
   <see langword="true" /> and <paramref name="host " />is a local URI.</term>
            </item>
            <item>
              <term>
                <paramref name="host " />matches a regular expression in <see cref="P:System.Net.WebProxy.BypassList" />.</term>
            </item>
            <item>
              <term>
      
      The <see cref="P:System.Net.WebProxy.Address" /> of the current instance is
   <see langword="null" />.</term>
            </item>
          </list>
          <para>All other conditions return <see langword="false" />.</para>
        </returns>
        <remarks>To be added.</remarks>
        <exception cref="T:System.ArgumentException">The <see cref="P:System.Net.WebProxy.BypassList" /> of the current instance contains an invalid regular expression.</exception>
      </Docs>
      <Excluded>0</Excluded>
    </Member>
    <Member MemberName="System.Runtime.Serialization.ISerializable.GetObjectData">
      <MemberSignature Language="C#" Value="void ISerializable.GetObjectData (System.Runtime.Serialization.SerializationInfo serializationInfo, System.Runtime.Serialization.StreamingContext streamingContext);" />
      <MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance void System.Runtime.Serialization.ISerializable.GetObjectData(class System.Runtime.Serialization.SerializationInfo serializationInfo, valuetype System.Runtime.Serialization.StreamingContext streamingContext) cil managed" />
      <MemberType>Method</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>1.0.5000.0</AssemblyVersion>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.Void</ReturnType>
      </ReturnValue>
      <Parameters>
        <Parameter Name="serializationInfo" Type="System.Runtime.Serialization.SerializationInfo" />
        <Parameter Name="streamingContext" Type="System.Runtime.Serialization.StreamingContext" />
      </Parameters>
      <Docs>
        <param name="serializationInfo">To be added.</param>
        <param name="streamingContext">To be added.</param>
        <summary>To be added.</summary>
        <remarks>To be added.</remarks>
      </Docs>
    </Member>
    <Member MemberName="UseDefaultCredentials">
      <MemberSignature Language="C#" Value="public bool UseDefaultCredentials { get; set; }" />
      <MemberSignature Language="ILAsm" Value=".property instance bool UseDefaultCredentials" />
      <MemberType>Property</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <Attributes>
        <Attribute>
          <AttributeName>System.MonoTODO("Does not affect Credentials, since CredentialCache.DefaultCredentials is not implemented.")</AttributeName>
        </Attribute>
      </Attributes>
      <ReturnValue>
        <ReturnType>System.Boolean</ReturnType>
      </ReturnValue>
      <Docs>
        <summary>To be added.</summary>
        <value>To be added.</value>
        <remarks>To be added.</remarks>
      </Docs>
    </Member>
  </Members>
  <TypeExcluded>0</TypeExcluded>
</Type>
