summaryrefslogtreecommitdiff
path: root/.dotnet/packs/Microsoft.NETCore.App.Ref/3.1.0/ref/netcoreapp3.1/System.Runtime.Extensions.xml
diff options
context:
space:
mode:
Diffstat (limited to '.dotnet/packs/Microsoft.NETCore.App.Ref/3.1.0/ref/netcoreapp3.1/System.Runtime.Extensions.xml')
-rwxr-xr-x.dotnet/packs/Microsoft.NETCore.App.Ref/3.1.0/ref/netcoreapp3.1/System.Runtime.Extensions.xml10736
1 files changed, 10736 insertions, 0 deletions
diff --git a/.dotnet/packs/Microsoft.NETCore.App.Ref/3.1.0/ref/netcoreapp3.1/System.Runtime.Extensions.xml b/.dotnet/packs/Microsoft.NETCore.App.Ref/3.1.0/ref/netcoreapp3.1/System.Runtime.Extensions.xml
new file mode 100755
index 0000000000..7d5b426e6b
--- /dev/null
+++ b/.dotnet/packs/Microsoft.NETCore.App.Ref/3.1.0/ref/netcoreapp3.1/System.Runtime.Extensions.xml
@@ -0,0 +1,10736 @@
+<?xml version="1.0" encoding="utf-8"?>
+<doc>
+ <assembly>
+ <name>System.Runtime.Extensions</name>
+ </assembly>
+ <members>
+ <member name="T:System.AppDomain">
+ <summary>Represents an application domain, which is an isolated environment where applications execute. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.AppDomain.AppendPrivatePath(System.String)">
+ <summary>Appends the specified directory name to the private path list.</summary>
+ <param name="path">The name of the directory to be appended to the private path.</param>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ </member>
+ <member name="M:System.AppDomain.ApplyPolicy(System.String)">
+ <summary>Returns the assembly display name after policy has been applied.</summary>
+ <param name="assemblyName">The assembly display name, in the form provided by the <see cref="P:System.Reflection.Assembly.FullName" /> property.</param>
+ <returns>A string containing the assembly display name after policy has been applied.</returns>
+ </member>
+ <member name="E:System.AppDomain.AssemblyLoad">
+ <summary>Occurs when an assembly is loaded.</summary>
+ </member>
+ <member name="E:System.AppDomain.AssemblyResolve">
+ <summary>Occurs when the resolution of an assembly fails.</summary>
+ </member>
+ <member name="P:System.AppDomain.BaseDirectory">
+ <summary>Gets the base directory that the assembly resolver uses to probe for assemblies.</summary>
+ <returns>The base directory that the assembly resolver uses to probe for assemblies.</returns>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ </member>
+ <member name="M:System.AppDomain.ClearPrivatePath">
+ <summary>Resets the path that specifies the location of private assemblies to the empty string ("").</summary>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ </member>
+ <member name="M:System.AppDomain.ClearShadowCopyPath">
+ <summary>Resets the list of directories containing shadow copied assemblies to the empty string ("").</summary>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ </member>
+ <member name="M:System.AppDomain.CreateDomain(System.String)">
+ <summary>Creates a new application domain with the specified name.</summary>
+ <param name="friendlyName">The friendly name of the domain.</param>
+ <returns>The newly created application domain.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="friendlyName" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.PlatformNotSupportedException">Method not supported on .NET Core.</exception>
+ </member>
+ <member name="M:System.AppDomain.CreateInstance(System.String,System.String)">
+ <summary>Creates a new instance of the specified type defined in the specified assembly.</summary>
+ <param name="assemblyName">The display name of the assembly. See <see cref="P:System.Reflection.Assembly.FullName" />.</param>
+ <param name="typeName">The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property.</param>
+ <returns>An object that is a wrapper for the new instance specified by <paramref name="typeName" />. The return value needs to be unwrapped to access the real object.</returns>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="assemblyName" /> or <paramref name="typeName" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.BadImageFormatException">
+ <paramref name="assemblyName" /> is not a valid assembly.
+-or-
+Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyName" /> was compiled with a later version.</exception>
+ <exception cref="T:System.IO.FileLoadException">An assembly or module was loaded twice with two different evidences.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">
+ <paramref name="assemblyName" /> was not found.</exception>
+ <exception cref="T:System.MethodAccessException">The caller does not have permission to call this constructor.</exception>
+ <exception cref="T:System.MissingMethodException">No matching public constructor was found.</exception>
+ <exception cref="T:System.TypeLoadException">
+ <paramref name="typename" /> was not found in <paramref name="assemblyName" />.</exception>
+ <exception cref="T:System.NullReferenceException">This instance is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.AppDomain.CreateInstance(System.String,System.String,System.Boolean,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo,System.Object[])">
+ <summary>Creates a new instance of the specified type defined in the specified assembly. Parameters specify a binder, binding flags, constructor arguments, culture-specific information used to interpret arguments, and optional activation attributes.</summary>
+ <param name="assemblyName">The display name of the assembly. See <see cref="P:System.Reflection.Assembly.FullName" />.</param>
+ <param name="typeName">The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property.</param>
+ <param name="ignoreCase">A Boolean value specifying whether to perform a case-sensitive search or not.</param>
+ <param name="bindingAttr">A combination of zero or more bit flags that affect the search for the <paramref name="typeName" /> constructor. If <paramref name="bindingAttr" /> is zero, a case-sensitive search for public constructors is conducted.</param>
+ <param name="binder">An object that enables the binding, coercion of argument types, invocation of members, and retrieval of <see cref="T:System.Reflection.MemberInfo" /> objects using reflection. If <paramref name="binder" /> is null, the default binder is used.</param>
+ <param name="args">The arguments to pass to the constructor. This array of arguments must match in number, order, and type the parameters of the constructor to invoke. If the parameterless constructor is preferred, <paramref name="args" /> must be an empty array or null.</param>
+ <param name="culture">Culture-specific information that governs the coercion of <paramref name="args" /> to the formal types declared for the <paramref name="typeName" /> constructor. If <paramref name="culture" /> is <see langword="null" />, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used.</param>
+ <param name="activationAttributes">An array of one or more attributes that can participate in activation. Typically, an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object that specifies the URL that is required to activate a remote object.
+This parameter is related to client-activated objects. Client activation is a legacy technology that is retained for backward compatibility but is not recommended for new development. Distributed applications should instead use Windows Communication Foundation.</param>
+ <returns>An object that is a wrapper for the new instance specified by <paramref name="typeName" />. The return value needs to be unwrapped to access the real object.</returns>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="assemblyName" /> or <paramref name="typeName" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.BadImageFormatException">
+ <paramref name="assemblyName" /> is not a valid assembly.
+-or-
+<paramref name="assemblyName" /> was compiled with a later version of the common language runtime than the version that is currently loaded.</exception>
+ <exception cref="T:System.IO.FileLoadException">An assembly or module was loaded twice with two different evidences.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">
+ <paramref name="assemblyName" /> was not found.</exception>
+ <exception cref="T:System.MethodAccessException">The caller does not have permission to call this constructor.</exception>
+ <exception cref="T:System.MissingMethodException">No matching constructor was found.</exception>
+ <exception cref="T:System.NotSupportedException">The caller cannot provide activation attributes for an object that does not inherit from <see cref="T:System.MarshalByRefObject" />.</exception>
+ <exception cref="T:System.TypeLoadException">
+ <paramref name="typename" /> was not found in <paramref name="assemblyName" />.</exception>
+ <exception cref="T:System.NullReferenceException">This instance is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.AppDomain.CreateInstance(System.String,System.String,System.Object[])">
+ <summary>Creates a new instance of the specified type defined in the specified assembly. A parameter specifies an array of activation attributes.</summary>
+ <param name="assemblyName">The display name of the assembly. See <see cref="P:System.Reflection.Assembly.FullName" />.</param>
+ <param name="typeName">The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property.</param>
+ <param name="activationAttributes">An array of one or more attributes that can participate in activation. Typically, an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object that specifies the URL that is required to activate a remote object.
+This parameter is related to client-activated objects.Client activation is a legacy technology that is retained for backward compatibility but is not recommended for new development. Distributed applications should instead use Windows Communication Foundation.</param>
+ <returns>An object that is a wrapper for the new instance specified by <paramref name="typeName" />. The return value needs to be unwrapped to access the real object.</returns>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="assemblyName" /> or <paramref name="typeName" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.BadImageFormatException">
+ <paramref name="assemblyName" /> is not a valid assembly.
+-or-
+Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyName" /> was compiled with a later version.</exception>
+ <exception cref="T:System.IO.FileLoadException">An assembly or module was loaded twice with two different evidences.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">
+ <paramref name="assemblyName" /> was not found.</exception>
+ <exception cref="T:System.MethodAccessException">The caller does not have permission to call this constructor.</exception>
+ <exception cref="T:System.MissingMethodException">No matching public constructor was found.</exception>
+ <exception cref="T:System.NotSupportedException">The caller cannot provide activation attributes for an object that does not inherit from <see cref="T:System.MarshalByRefObject" />.</exception>
+ <exception cref="T:System.TypeLoadException">
+ <paramref name="typename" /> was not found in <paramref name="assemblyName" />.</exception>
+ <exception cref="T:System.NullReferenceException">This instance is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.AppDomain.CreateInstanceAndUnwrap(System.String,System.String)">
+ <summary>Creates a new instance of the specified type. Parameters specify the assembly where the type is defined, and the name of the type.</summary>
+ <param name="assemblyName">The display name of the assembly. See <see cref="P:System.Reflection.Assembly.FullName" />.</param>
+ <param name="typeName">The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property.</param>
+ <returns>An instance of the object specified by <paramref name="typeName" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="assemblyName" /> or <paramref name="typeName" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.MissingMethodException">No matching public constructor was found.</exception>
+ <exception cref="T:System.TypeLoadException">
+ <paramref name="typename" /> was not found in <paramref name="assemblyName" />.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">
+ <paramref name="assemblyName" /> was not found.</exception>
+ <exception cref="T:System.MethodAccessException">The caller does not have permission to call this constructor.</exception>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ <exception cref="T:System.BadImageFormatException">
+ <paramref name="assemblyName" /> is not a valid assembly.
+-or-
+Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyName" /> was compiled with a later version.</exception>
+ <exception cref="T:System.IO.FileLoadException">An assembly or module was loaded twice with two different evidences.</exception>
+ </member>
+ <member name="M:System.AppDomain.CreateInstanceAndUnwrap(System.String,System.String,System.Boolean,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo,System.Object[])">
+ <summary>Creates a new instance of the specified type defined in the specified assembly, specifying whether the case of the type name is ignored; the binding attributes and the binder that are used to select the type to be created; the arguments of the constructor; the culture; and the activation attributes.</summary>
+ <param name="assemblyName">The display name of the assembly. See <see cref="P:System.Reflection.Assembly.FullName" />.</param>
+ <param name="typeName">The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property.</param>
+ <param name="ignoreCase">A Boolean value specifying whether to perform a case-sensitive search or not.</param>
+ <param name="bindingAttr">A combination of zero or more bit flags that affect the search for the <paramref name="typeName" /> constructor. If <paramref name="bindingAttr" /> is zero, a case-sensitive search for public constructors is conducted.</param>
+ <param name="binder">An object that enables the binding, coercion of argument types, invocation of members, and retrieval of <see cref="T:System.Reflection.MemberInfo" /> objects using reflection. If <paramref name="binder" /> is null, the default binder is used.</param>
+ <param name="args">The arguments to pass to the constructor. This array of arguments must match in number, order, and type the parameters of the constructor to invoke. If the parameterless constructor is preferred, <paramref name="args" /> must be an empty array or null.</param>
+ <param name="culture">A culture-specific object used to govern the coercion of types. If <paramref name="culture" /> is <see langword="null" />, the <see langword="CultureInfo" /> for the current thread is used.</param>
+ <param name="activationAttributes">An array of one or more attributes that can participate in activation. Typically, an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object. that specifies the URL that is required to activate a remote object.
+This parameter is related to client-activated objects. Client activation is a legacy technology that is retained for backward compatibility but is not recommended for new development. Distributed applications should instead use Windows Communication Foundation.</param>
+ <returns>An instance of the object specified by <paramref name="typeName" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="assemblyName" /> or <paramref name="typeName" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.MissingMethodException">No matching constructor was found.</exception>
+ <exception cref="T:System.TypeLoadException">
+ <paramref name="typename" /> was not found in <paramref name="assemblyName" />.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">
+ <paramref name="assemblyName" /> was not found.</exception>
+ <exception cref="T:System.MethodAccessException">The caller does not have permission to call this constructor.</exception>
+ <exception cref="T:System.NotSupportedException">The caller cannot provide activation attributes for an object that does not inherit from <see cref="T:System.MarshalByRefObject" />.</exception>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ <exception cref="T:System.BadImageFormatException">
+ <paramref name="assemblyName" /> is not a valid assembly.
+-or-
+<paramref name="assemblyName" /> was compiled with a later version of the common language runtime than the version that is currently loaded.</exception>
+ <exception cref="T:System.IO.FileLoadException">An assembly or module was loaded twice with two different evidences.</exception>
+ </member>
+ <member name="M:System.AppDomain.CreateInstanceAndUnwrap(System.String,System.String,System.Object[])">
+ <summary>Creates a new instance of the specified type. Parameters specify the assembly where the type is defined, the name of the type, and an array of activation attributes.</summary>
+ <param name="assemblyName">The display name of the assembly. See <see cref="P:System.Reflection.Assembly.FullName" />.</param>
+ <param name="typeName">The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property.</param>
+ <param name="activationAttributes">An array of one or more attributes that can participate in activation. Typically, an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object that specifies the URL that is required to activate a remote object.
+This parameter is related to client-activated objects.Client activation is a legacy technology that is retained for backward compatibility but is not recommended for new development. Distributed applications should instead use Windows Communication Foundation.</param>
+ <returns>An instance of the object specified by <paramref name="typeName" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="assemblyName" /> or <paramref name="typeName" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.MissingMethodException">No matching public constructor was found.</exception>
+ <exception cref="T:System.TypeLoadException">
+ <paramref name="typename" /> was not found in <paramref name="assemblyName" />.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">
+ <paramref name="assemblyName" /> was not found.</exception>
+ <exception cref="T:System.MethodAccessException">The caller does not have permission to call this constructor.</exception>
+ <exception cref="T:System.NotSupportedException">The caller cannot provide activation attributes for an object that does not inherit from <see cref="T:System.MarshalByRefObject" />.</exception>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ <exception cref="T:System.BadImageFormatException">
+ <paramref name="assemblyName" /> is not a valid assembly.
+-or-
+Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyName" /> was compiled with a later version.</exception>
+ <exception cref="T:System.IO.FileLoadException">An assembly or module was loaded twice with two different evidences.</exception>
+ </member>
+ <member name="M:System.AppDomain.CreateInstanceFrom(System.String,System.String)">
+ <summary>Creates a new instance of the specified type defined in the specified assembly file.</summary>
+ <param name="assemblyFile">The name, including the path, of a file that contains an assembly that defines the requested type. The assembly is loaded using the <see cref="M:System.Reflection.Assembly.LoadFrom(System.String)" /> method.</param>
+ <param name="typeName">The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property.</param>
+ <returns>An object that is a wrapper for the new instance, or <see langword="null" /> if <paramref name="typeName" /> is not found. The return value needs to be unwrapped to access the real object.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="assemblyFile" /> is <see langword="null" />.
+-or-
+<paramref name="typeName" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">
+ <paramref name="assemblyFile" /> was not found.</exception>
+ <exception cref="T:System.TypeLoadException">
+ <paramref name="typeName" /> was not found in <paramref name="assemblyFile" />.</exception>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ <exception cref="T:System.MissingMethodException">No parameterless public constructor was found.</exception>
+ <exception cref="T:System.MethodAccessException">The caller does not have sufficient permission to call this constructor.</exception>
+ <exception cref="T:System.BadImageFormatException">
+ <paramref name="assemblyFile" /> is not a valid assembly.
+-or-
+Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyFile" /> was compiled with a later version.</exception>
+ <exception cref="T:System.IO.FileLoadException">An assembly or module was loaded twice with two different evidences.</exception>
+ <exception cref="T:System.NullReferenceException">This instance is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.AppDomain.CreateInstanceFrom(System.String,System.String,System.Boolean,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo,System.Object[])">
+ <summary>Creates a new instance of the specified type defined in the specified assembly file.</summary>
+ <param name="assemblyFile">The name, including the path, of a file that contains an assembly that defines the requested type. The assembly is loaded using the <see cref="M:System.Reflection.Assembly.LoadFrom(System.String)" /> method.</param>
+ <param name="typeName">The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property.</param>
+ <param name="ignoreCase">A Boolean value specifying whether to perform a case-sensitive search or not.</param>
+ <param name="bindingAttr">A combination of zero or more bit flags that affect the search for the <paramref name="typeName" /> constructor. If <paramref name="bindingAttr" /> is zero, a case-sensitive search for public constructors is conducted.</param>
+ <param name="binder">An object that enables the binding, coercion of argument types, invocation of members, and retrieval of <see cref="T:System.Reflection.MemberInfo" /> objects through reflection. If <paramref name="binder" /> is null, the default binder is used.</param>
+ <param name="args">The arguments to pass to the constructor. This array of arguments must match in number, order, and type the parameters of the constructor to invoke. If the parameterless constructor is preferred, <paramref name="args" /> must be an empty array or null.</param>
+ <param name="culture">Culture-specific information that governs the coercion of <paramref name="args" /> to the formal types declared for the <paramref name="typeName" /> constructor. If <paramref name="culture" /> is <see langword="null" />, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used.</param>
+ <param name="activationAttributes">An array of one or more attributes that can participate in activation. Typically, an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object that specifies the URL that is required to activate a remote object.
+This parameter is related to client-activated objects. Client activation is a legacy technology that is retained for backward compatibility but is not recommended for new development. Distributed applications should instead use Windows Communication Foundation.</param>
+ <returns>An object that is a wrapper for the new instance, or <see langword="null" /> if <paramref name="typeName" /> is not found. The return value needs to be unwrapped to access the real object.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="assemblyFile" /> is <see langword="null" />.
+-or-
+<paramref name="typeName" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.NotSupportedException">The caller cannot provide activation attributes for an object that does not inherit from <see cref="T:System.MarshalByRefObject" />.</exception>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">
+ <paramref name="assemblyFile" /> was not found.</exception>
+ <exception cref="T:System.TypeLoadException">
+ <paramref name="typeName" /> was not found in <paramref name="assemblyFile" />.</exception>
+ <exception cref="T:System.MissingMethodException">No matching public constructor was found.</exception>
+ <exception cref="T:System.MethodAccessException">The caller does not have sufficient permission to call this constructor.</exception>
+ <exception cref="T:System.BadImageFormatException">
+ <paramref name="assemblyFile" /> is not a valid assembly.
+-or-
+<paramref name="assemblyFile" /> was compiled with a later version of the common language runtime than the version that is currently loaded.</exception>
+ <exception cref="T:System.IO.FileLoadException">An assembly or module was loaded twice with two different evidences.</exception>
+ <exception cref="T:System.NullReferenceException">This instance is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.AppDomain.CreateInstanceFrom(System.String,System.String,System.Object[])">
+ <summary>Creates a new instance of the specified type defined in the specified assembly file.</summary>
+ <param name="assemblyFile">The name, including the path, of a file that contains an assembly that defines the requested type. The assembly is loaded using the <see cref="M:System.Reflection.Assembly.LoadFrom(System.String)" /> method.</param>
+ <param name="typeName">The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property.</param>
+ <param name="activationAttributes">An array of one or more attributes that can participate in activation. Typically, an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object that specifies the URL that is required to activate a remote object.
+This parameter is related to client-activated objects.Client activation is a legacy technology that is retained for backward compatibility but is not recommended for new development. Distributed applications should instead use Windows Communication Foundation.</param>
+ <returns>An object that is a wrapper for the new instance, or <see langword="null" /> if <paramref name="typeName" /> is not found. The return value needs to be unwrapped to access the real object.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="assemblyFile" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">
+ <paramref name="assemblyFile" /> was not found.</exception>
+ <exception cref="T:System.TypeLoadException">
+ <paramref name="typeName" /> was not found in <paramref name="assemblyFile" />.</exception>
+ <exception cref="T:System.MethodAccessException">The caller does not have sufficient permission to call this constructor.</exception>
+ <exception cref="T:System.MissingMethodException">No matching public constructor was found.</exception>
+ <exception cref="T:System.NotSupportedException">The caller cannot provide activation attributes for an object that does not inherit from <see cref="T:System.MarshalByRefObject" />.</exception>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ <exception cref="T:System.BadImageFormatException">
+ <paramref name="assemblyFile" /> is not a valid assembly.
+-or-
+Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyFile" /> was compiled with a later version.</exception>
+ <exception cref="T:System.IO.FileLoadException">An assembly or module was loaded twice with two different evidences.</exception>
+ <exception cref="T:System.NullReferenceException">This instance is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.AppDomain.CreateInstanceFromAndUnwrap(System.String,System.String)">
+ <summary>Creates a new instance of the specified type defined in the specified assembly file.</summary>
+ <param name="assemblyName">The file name and path of the assembly that defines the requested type.</param>
+ <param name="typeName">The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property.</param>
+ <returns>The requested object, or <see langword="null" /> if <paramref name="typeName" /> is not found.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="assemblyName" /> is <see langword="null" />.
+-or-
+<paramref name="typeName" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">
+ <paramref name="assemblyName" /> was not found.</exception>
+ <exception cref="T:System.TypeLoadException">
+ <paramref name="typeName" /> was not found in <paramref name="assemblyName" />.</exception>
+ <exception cref="T:System.MissingMethodException">No parameterless public constructor was found.</exception>
+ <exception cref="T:System.MethodAccessException">The caller does not have sufficient permission to call this constructor.</exception>
+ <exception cref="T:System.BadImageFormatException">
+ <paramref name="assemblyName" /> is not a valid assembly.
+-or-
+Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyName" /> was compiled with a later version.</exception>
+ <exception cref="T:System.IO.FileLoadException">An assembly or module was loaded twice with two different evidences.</exception>
+ </member>
+ <member name="M:System.AppDomain.CreateInstanceFromAndUnwrap(System.String,System.String,System.Boolean,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object[],System.Globalization.CultureInfo,System.Object[])">
+ <summary>Creates a new instance of the specified type defined in the specified assembly file, specifying whether the case of the type name is ignored; the binding attributes and the binder that are used to select the type to be created; the arguments of the constructor; the culture; and the activation attributes.</summary>
+ <param name="assemblyFile">The file name and path of the assembly that defines the requested type.</param>
+ <param name="typeName">The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the <see cref="P:System.Type.FullName" /> property.</param>
+ <param name="ignoreCase">A Boolean value specifying whether to perform a case-sensitive search or not.</param>
+ <param name="bindingAttr">A combination of zero or more bit flags that affect the search for the <paramref name="typeName" /> constructor. If <paramref name="bindingAttr" /> is zero, a case-sensitive search for public constructors is conducted.</param>
+ <param name="binder">An object that enables the binding, coercion of argument types, invocation of members, and retrieval of <see cref="T:System.Reflection.MemberInfo" /> objects through reflection. If <paramref name="binder" /> is null, the default binder is used.</param>
+ <param name="args">The arguments to pass to the constructor. This array of arguments must match in number, order, and type the parameters of the constructor to invoke. If the parameterless constructor is preferred, <paramref name="args" /> must be an empty array or null.</param>
+ <param name="culture">Culture-specific information that governs the coercion of <paramref name="args" /> to the formal types declared for the <paramref name="typeName" /> constructor. If <paramref name="culture" /> is <see langword="null" />, the <see cref="T:System.Globalization.CultureInfo" /> for the current thread is used.</param>
+ <param name="activationAttributes">An array of one or more attributes that can participate in activation. Typically, an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object that specifies the URL that is required to activate a remote object.
+This parameter is related to client-activated objects. Client activation is a legacy technology that is retained for backward compatibility but is not recommended for new development. Distributed applications should instead use Windows Communication Foundation.</param>
+ <returns>The requested object, or <see langword="null" /> if <paramref name="typeName" /> is not found.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="assemblyName" /> is <see langword="null" />.
+-or-
+<paramref name="typeName" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.NotSupportedException">The caller cannot provide activation attributes for an object that does not inherit from <see cref="T:System.MarshalByRefObject" />.</exception>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">
+ <paramref name="assemblyName" /> was not found.</exception>
+ <exception cref="T:System.TypeLoadException">
+ <paramref name="typeName" /> was not found in <paramref name="assemblyName" />.</exception>
+ <exception cref="T:System.MissingMethodException">No matching public constructor was found.</exception>
+ <exception cref="T:System.MethodAccessException">The caller does not have sufficient permission to call this constructor.</exception>
+ <exception cref="T:System.BadImageFormatException">
+ <paramref name="assemblyName" /> is not a valid assembly.
+-or-
+<paramref name="assemblyName" /> was compiled with a later version of the common language runtime that the version that is currently loaded.</exception>
+ <exception cref="T:System.IO.FileLoadException">An assembly or module was loaded twice with two different evidences.</exception>
+ </member>
+ <member name="M:System.AppDomain.CreateInstanceFromAndUnwrap(System.String,System.String,System.Object[])">
+ <summary>Creates a new instance of the specified type defined in the specified assembly file.</summary>
+ <param name="assemblyName">The file name and path of the assembly that defines the requested type.</param>
+ <param name="typeName">The fully qualified name of the requested type, including the namespace but not the assembly (see the <see cref="P:System.Type.FullName" /> property).</param>
+ <param name="activationAttributes">An array of one or more attributes that can participate in activation. Typically, an array that contains a single <see cref="T:System.Runtime.Remoting.Activation.UrlAttribute" /> object that specifies the URL that is required to activate a remote object.
+This parameter is related to client-activated objects.Client activation is a legacy technology that is retained for backward compatibility but is not recommended for new development. Distributed applications should instead use Windows Communication Foundation.</param>
+ <returns>The requested object, or <see langword="null" /> if <paramref name="typeName" /> is not found.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="assemblyName" /> is <see langword="null" />.
+-or-
+<paramref name="typeName" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.NotSupportedException">The caller cannot provide activation attributes for an object that does not inherit from <see cref="T:System.MarshalByRefObject" />.</exception>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">
+ <paramref name="assemblyName" /> was not found.</exception>
+ <exception cref="T:System.TypeLoadException">
+ <paramref name="typeName" /> was not found in <paramref name="assemblyName" />.</exception>
+ <exception cref="T:System.MissingMethodException">No parameterless public constructor was found.</exception>
+ <exception cref="T:System.MethodAccessException">The caller does not have sufficient permission to call this constructor.</exception>
+ <exception cref="T:System.BadImageFormatException">
+ <paramref name="assemblyName" /> is not a valid assembly.
+-or-
+Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyName" /> was compiled with a later version.</exception>
+ <exception cref="T:System.IO.FileLoadException">An assembly or module was loaded twice with two different evidences.</exception>
+ </member>
+ <member name="P:System.AppDomain.CurrentDomain">
+ <summary>Gets the current application domain for the current <see cref="T:System.Threading.Thread" />.</summary>
+ <returns>The current application domain.</returns>
+ </member>
+ <member name="E:System.AppDomain.DomainUnload">
+ <summary>Occurs when an <see cref="T:System.AppDomain" /> is about to be unloaded.</summary>
+ </member>
+ <member name="P:System.AppDomain.DynamicDirectory">
+ <summary>Gets the directory that the assembly resolver uses to probe for dynamically created assemblies.</summary>
+ <returns>The directory that the assembly resolver uses to probe for dynamically created assemblies.</returns>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ </member>
+ <member name="M:System.AppDomain.ExecuteAssembly(System.String)">
+ <summary>Executes the assembly contained in the specified file.</summary>
+ <param name="assemblyFile">The name of the file that contains the assembly to execute.</param>
+ <returns>The value returned by the entry point of the assembly.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="assemblyFile" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">
+ <paramref name="assemblyFile" /> is not found.</exception>
+ <exception cref="T:System.BadImageFormatException">
+ <paramref name="assemblyFile" /> is not a valid assembly.
+-or-
+Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyFile" /> was compiled with a later version.</exception>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ <exception cref="T:System.IO.FileLoadException">An assembly or module was loaded twice with two different evidences.</exception>
+ <exception cref="T:System.MissingMethodException">The specified assembly has no entry point.</exception>
+ </member>
+ <member name="M:System.AppDomain.ExecuteAssembly(System.String,System.String[])">
+ <summary>Executes the assembly contained in the specified file, using the specified arguments.</summary>
+ <param name="assemblyFile">The name of the file that contains the assembly to execute.</param>
+ <param name="args">The arguments to the entry point of the assembly.</param>
+ <returns>The value that is returned by the entry point of the assembly.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="assemblyFile" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">
+ <paramref name="assemblyFile" /> is not found.</exception>
+ <exception cref="T:System.BadImageFormatException">
+ <paramref name="assemblyFile" /> is not a valid assembly.
+-or-
+<paramref name="assemblyFile" /> was compiled with a later version of the common language runtime than the version that is currently loaded.</exception>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ <exception cref="T:System.IO.FileLoadException">An assembly or module was loaded twice with two different evidences.</exception>
+ <exception cref="T:System.MissingMethodException">The specified assembly has no entry point.</exception>
+ </member>
+ <member name="M:System.AppDomain.ExecuteAssembly(System.String,System.String[],System.Byte[],System.Configuration.Assemblies.AssemblyHashAlgorithm)">
+ <summary>Executes the assembly contained in the specified file, using the specified arguments, hash value, and hash algorithm.</summary>
+ <param name="assemblyFile">The name of the file that contains the assembly to execute.</param>
+ <param name="args">The arguments to the entry point of the assembly.</param>
+ <param name="hashValue">Represents the value of the computed hash code.</param>
+ <param name="hashAlgorithm">Represents the hash algorithm used by the assembly manifest.</param>
+ <returns>The value that is returned by the entry point of the assembly.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="assemblyFile" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">
+ <paramref name="assemblyFile" /> is not found.</exception>
+ <exception cref="T:System.BadImageFormatException">
+ <paramref name="assemblyFile" /> is not a valid assembly.
+-or-
+<paramref name="assemblyFile" /> was compiled with a later version of the common language runtime than the version that is currently loaded.</exception>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ <exception cref="T:System.IO.FileLoadException">An assembly or module was loaded twice with two different evidences.</exception>
+ <exception cref="T:System.MissingMethodException">The specified assembly has no entry point.</exception>
+ </member>
+ <member name="M:System.AppDomain.ExecuteAssemblyByName(System.Reflection.AssemblyName,System.String[])">
+ <summary>Executes the assembly given an <see cref="T:System.Reflection.AssemblyName" />, using the specified arguments.</summary>
+ <param name="assemblyName">An <see cref="T:System.Reflection.AssemblyName" /> object representing the name of the assembly.</param>
+ <param name="args">Command-line arguments to pass when starting the process.</param>
+ <returns>The value that is returned by the entry point of the assembly.</returns>
+ <exception cref="T:System.IO.FileNotFoundException">The assembly specified by <paramref name="assemblyName" /> is not found.</exception>
+ <exception cref="T:System.IO.FileLoadException">The assembly specified by <paramref name="assemblyName" /> was found, but could not be loaded.</exception>
+ <exception cref="T:System.BadImageFormatException">The assembly specified by <paramref name="assemblyName" /> is not a valid assembly.
+-or-
+<paramref name="assemblyName" /> was compiled with a later version of the common language runtime than the version that is currently loaded.</exception>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ <exception cref="T:System.MissingMethodException">The specified assembly has no entry point.</exception>
+ </member>
+ <member name="M:System.AppDomain.ExecuteAssemblyByName(System.String)">
+ <summary>Executes an assembly given its display name.</summary>
+ <param name="assemblyName">The display name of the assembly. See <see cref="P:System.Reflection.Assembly.FullName" />.</param>
+ <returns>The value returned by the entry point of the assembly.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="assemblyName" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">The assembly specified by <paramref name="assemblyName" /> is not found.</exception>
+ <exception cref="T:System.BadImageFormatException">The assembly specified by <paramref name="assemblyName" /> is not a valid assembly.
+-or-
+Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyName" /> was compiled with a later version.</exception>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ <exception cref="T:System.IO.FileLoadException">The assembly specified by <paramref name="assemblyName" /> was found, but could not be loaded.</exception>
+ <exception cref="T:System.MissingMethodException">The specified assembly has no entry point.</exception>
+ </member>
+ <member name="M:System.AppDomain.ExecuteAssemblyByName(System.String,System.String[])">
+ <summary>Executes the assembly given its display name, using the specified arguments.</summary>
+ <param name="assemblyName">The display name of the assembly. See <see cref="P:System.Reflection.Assembly.FullName" />.</param>
+ <param name="args">Command-line arguments to pass when starting the process.</param>
+ <returns>The value that is returned by the entry point of the assembly.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="assemblyName" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">The assembly specified by <paramref name="assemblyName" /> is not found.</exception>
+ <exception cref="T:System.IO.FileLoadException">The assembly specified by <paramref name="assemblyName" /> was found, but could not be loaded.</exception>
+ <exception cref="T:System.BadImageFormatException">The assembly specified by <paramref name="assemblyName" /> is not a valid assembly.
+-or-
+<paramref name="assemblyName" /> was compiled with a later version of the common language runtime than the version that is currently loaded.</exception>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ <exception cref="T:System.MissingMethodException">The specified assembly has no entry point.</exception>
+ </member>
+ <member name="E:System.AppDomain.FirstChanceException">
+ <summary>Occurs when an exception is thrown in managed code, before the runtime searches the call stack for an exception handler in the application domain.</summary>
+ </member>
+ <member name="P:System.AppDomain.FriendlyName">
+ <summary>Gets the friendly name of this application domain.</summary>
+ <returns>The friendly name of this application domain.</returns>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ </member>
+ <member name="M:System.AppDomain.GetAssemblies">
+ <summary>Gets the assemblies that have been loaded into the execution context of this application domain.</summary>
+ <returns>An array of assemblies in this application domain.</returns>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ </member>
+ <member name="M:System.AppDomain.GetCurrentThreadId">
+ <summary>Gets the current thread identifier.</summary>
+ <returns>A 32-bit signed integer that is the identifier of the current thread.</returns>
+ </member>
+ <member name="M:System.AppDomain.GetData(System.String)">
+ <summary>Gets the value stored in the current application domain for the specified name.</summary>
+ <param name="name">The name of a predefined application domain property, or the name of an application domain property you have defined.</param>
+ <returns>The value of the <paramref name="name" /> property, or <see langword="null" /> if the property does not exist.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="name" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ </member>
+ <member name="P:System.AppDomain.Id">
+ <summary>Gets an integer that uniquely identifies the application domain within the process.</summary>
+ <returns>An integer that identifies the application domain.</returns>
+ </member>
+ <member name="M:System.AppDomain.IsCompatibilitySwitchSet(System.String)">
+ <summary>Gets a nullable Boolean value that indicates whether any compatibility switches are set, and if so, whether the specified compatibility switch is set.</summary>
+ <param name="value">The compatibility switch to test.</param>
+ <returns>A null reference (<see langword="Nothing" /> in Visual Basic) if no compatibility switches are set; otherwise, a Boolean value that indicates whether the compatibility switch that is specified by <paramref name="value" /> is set.</returns>
+ </member>
+ <member name="M:System.AppDomain.IsDefaultAppDomain">
+ <summary>Returns a value that indicates whether the application domain is the default application domain for the process.</summary>
+ <returns>
+ <see langword="true" /> if the current <see cref="T:System.AppDomain" /> object represents the default application domain for the process; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.AppDomain.IsFinalizingForUnload">
+ <summary>Indicates whether this application domain is unloading, and the objects it contains are being finalized by the common language runtime.</summary>
+ <returns>
+ <see langword="true" /> if this application domain is unloading and the common language runtime has started invoking finalizers; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.AppDomain.IsFullyTrusted">
+ <summary>Gets a value that indicates whether assemblies that are loaded into the current application domain execute with full trust.</summary>
+ <returns>
+ <see langword="true" /> if assemblies that are loaded into the current application domain execute with full trust; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.AppDomain.IsHomogenous">
+ <summary>Gets a value that indicates whether the current application domain has a set of permissions that is granted to all assemblies that are loaded into the application domain.</summary>
+ <returns>
+ <see langword="true" /> if the current application domain has a homogenous set of permissions; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.AppDomain.Load(System.Byte[])">
+ <summary>Loads the <see cref="T:System.Reflection.Assembly" /> with a common object file format (COFF) based image containing an emitted <see cref="T:System.Reflection.Assembly" />.</summary>
+ <param name="rawAssembly">An array of type <see langword="byte" /> that is a COFF-based image containing an emitted assembly.</param>
+ <returns>The loaded assembly.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="rawAssembly" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.BadImageFormatException">
+ <paramref name="rawAssembly" /> is not a valid assembly.
+-or-
+Version 2.0 or later of the common language runtime is currently loaded and <paramref name="rawAssembly" /> was compiled with a later version.</exception>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ <exception cref="T:System.IO.FileLoadException">An assembly or module was loaded twice with two different evidences.</exception>
+ </member>
+ <member name="M:System.AppDomain.Load(System.Byte[],System.Byte[])">
+ <summary>Loads the <see cref="T:System.Reflection.Assembly" /> with a common object file format (COFF) based image containing an emitted <see cref="T:System.Reflection.Assembly" />. The raw bytes representing the symbols for the <see cref="T:System.Reflection.Assembly" /> are also loaded.</summary>
+ <param name="rawAssembly">An array of type <see langword="byte" /> that is a COFF-based image containing an emitted assembly.</param>
+ <param name="rawSymbolStore">An array of type <see langword="byte" /> containing the raw bytes representing the symbols for the assembly.</param>
+ <returns>The loaded assembly.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="rawAssembly" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.BadImageFormatException">
+ <paramref name="rawAssembly" /> is not a valid assembly.
+-or-
+Version 2.0 or later of the common language runtime is currently loaded and <paramref name="rawAssembly" /> was compiled with a later version.</exception>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ <exception cref="T:System.IO.FileLoadException">An assembly or module was loaded twice with two different evidences.</exception>
+ </member>
+ <member name="M:System.AppDomain.Load(System.Reflection.AssemblyName)">
+ <summary>Loads an <see cref="T:System.Reflection.Assembly" /> given its <see cref="T:System.Reflection.AssemblyName" />.</summary>
+ <param name="assemblyRef">An object that describes the assembly to load.</param>
+ <returns>The loaded assembly.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="assemblyRef" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">
+ <paramref name="assemblyRef" /> is not found.</exception>
+ <exception cref="T:System.BadImageFormatException">
+ <paramref name="assemblyRef" /> is not a valid assembly.
+-or-
+Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyRef" /> was compiled with a later version.</exception>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ <exception cref="T:System.IO.FileLoadException">An assembly or module was loaded twice with two different evidences.</exception>
+ </member>
+ <member name="M:System.AppDomain.Load(System.String)">
+ <summary>Loads an <see cref="T:System.Reflection.Assembly" /> given its display name.</summary>
+ <param name="assemblyString">The display name of the assembly. See <see cref="P:System.Reflection.Assembly.FullName" />.</param>
+ <returns>The loaded assembly.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="assemblyString" /> is <see langword="null" /></exception>
+ <exception cref="T:System.IO.FileNotFoundException">
+ <paramref name="assemblyString" /> is not found.</exception>
+ <exception cref="T:System.BadImageFormatException">
+ <paramref name="assemblyString" /> is not a valid assembly.
+-or-
+Version 2.0 or later of the common language runtime is currently loaded and <paramref name="assemblyString" /> was compiled with a later version.</exception>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ <exception cref="T:System.IO.FileLoadException">An assembly or module was loaded twice with two different evidences.</exception>
+ </member>
+ <member name="P:System.AppDomain.MonitoringIsEnabled">
+ <summary>Gets or sets a value that indicates whether CPU and memory monitoring of application domains is enabled for the current process. Once monitoring is enabled for a process, it cannot be disabled.</summary>
+ <returns>
+ <see langword="true" /> if monitoring is enabled; otherwise <see langword="false" />.</returns>
+ <exception cref="T:System.ArgumentException">The current process attempted to assign the value <see langword="false" /> to this property.</exception>
+ </member>
+ <member name="P:System.AppDomain.MonitoringSurvivedMemorySize">
+ <summary>Gets the number of bytes that survived the last collection and that are known to be referenced by the current application domain.</summary>
+ <returns>The number of surviving bytes.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see langword="static" /> (<see langword="Shared" /> in Visual Basic) <see cref="P:System.AppDomain.MonitoringIsEnabled" /> property is set to <see langword="false" />.</exception>
+ </member>
+ <member name="P:System.AppDomain.MonitoringSurvivedProcessMemorySize">
+ <summary>Gets the total bytes that survived from the last collection for all application domains in the process.</summary>
+ <returns>The total number of surviving bytes for the process.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see langword="static" /> (<see langword="Shared" /> in Visual Basic) <see cref="P:System.AppDomain.MonitoringIsEnabled" /> property is set to <see langword="false" />.</exception>
+ </member>
+ <member name="P:System.AppDomain.MonitoringTotalAllocatedMemorySize">
+ <summary>Gets the total size, in bytes, of all memory allocations that have been made by the application domain since it was created, without subtracting memory that has been collected.</summary>
+ <returns>The total size of all memory allocations.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see langword="static" /> (<see langword="Shared" /> in Visual Basic) <see cref="P:System.AppDomain.MonitoringIsEnabled" /> property is set to <see langword="false" />.</exception>
+ </member>
+ <member name="P:System.AppDomain.MonitoringTotalProcessorTime">
+ <summary>Gets the total processor time that has been used by all threads while executing in the current application domain, since the process started.</summary>
+ <returns>Total processor time for the current application domain.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see langword="static" /> (<see langword="Shared" /> in Visual Basic) <see cref="P:System.AppDomain.MonitoringIsEnabled" /> property is set to <see langword="false" />.</exception>
+ </member>
+ <member name="P:System.AppDomain.PermissionSet">
+ <summary>Gets the permission set of a sandboxed application domain.</summary>
+ <returns>The permission set of the sandboxed application domain.</returns>
+ </member>
+ <member name="E:System.AppDomain.ProcessExit">
+ <summary>Occurs when the default application domain's parent process exits.</summary>
+ </member>
+ <member name="E:System.AppDomain.ReflectionOnlyAssemblyResolve">
+ <summary>Occurs when the resolution of an assembly fails in the reflection-only context.</summary>
+ </member>
+ <member name="M:System.AppDomain.ReflectionOnlyGetAssemblies">
+ <summary>Returns the assemblies that have been loaded into the reflection-only context of the application domain.</summary>
+ <returns>An array of <see cref="T:System.Reflection.Assembly" /> objects that represent the assemblies loaded into the reflection-only context of the application domain.</returns>
+ <exception cref="T:System.AppDomainUnloadedException">An operation is attempted on an unloaded application domain.</exception>
+ </member>
+ <member name="P:System.AppDomain.RelativeSearchPath">
+ <summary>Gets the path under the base directory where the assembly resolver should probe for private assemblies.</summary>
+ <returns>The path under the base directory where the assembly resolver should probe for private assemblies.</returns>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ </member>
+ <member name="E:System.AppDomain.ResourceResolve">
+ <summary>Occurs when the resolution of a resource fails because the resource is not a valid linked or embedded resource in the assembly.</summary>
+ </member>
+ <member name="M:System.AppDomain.SetCachePath(System.String)">
+ <summary>Establishes the specified directory path as the location where assemblies are shadow copied.</summary>
+ <param name="path">The fully qualified path to the shadow copy location.</param>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ </member>
+ <member name="M:System.AppDomain.SetData(System.String,System.Object)">
+ <summary>Assigns the specified value to the specified application domain property.</summary>
+ <param name="name">The name of a user-defined application domain property to create or change.</param>
+ <param name="data">The value of the property.</param>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ </member>
+ <member name="M:System.AppDomain.SetDynamicBase(System.String)">
+ <summary>Establishes the specified directory path as the base directory for subdirectories where dynamically generated files are stored and accessed.</summary>
+ <param name="path">The fully qualified path that is the base directory for subdirectories where dynamic assemblies are stored.</param>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ </member>
+ <member name="M:System.AppDomain.SetPrincipalPolicy(System.Security.Principal.PrincipalPolicy)">
+ <summary>Specifies how principal and identity objects should be attached to a thread if the thread attempts to bind to a principal while executing in this application domain.</summary>
+ <param name="policy">One of the <see cref="T:System.Security.Principal.PrincipalPolicy" /> values that specifies the type of the principal object to attach to threads.</param>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ </member>
+ <member name="M:System.AppDomain.SetShadowCopyFiles">
+ <summary>Turns on shadow copying.</summary>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ </member>
+ <member name="M:System.AppDomain.SetShadowCopyPath(System.String)">
+ <summary>Establishes the specified directory path as the location of assemblies to be shadow copied.</summary>
+ <param name="path">A list of directory names, where each name is separated by a semicolon.</param>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ </member>
+ <member name="M:System.AppDomain.SetThreadPrincipal(System.Security.Principal.IPrincipal)">
+ <summary>Sets the default principal object to be attached to threads if they attempt to bind to a principal while executing in this application domain.</summary>
+ <param name="principal">The principal object to attach to threads.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="principal" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.Security.Policy.PolicyException">The thread principal has already been set.</exception>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ </member>
+ <member name="P:System.AppDomain.SetupInformation">
+ <summary>Gets the application domain configuration information for this instance.</summary>
+ <returns>The application domain initialization information.</returns>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ </member>
+ <member name="P:System.AppDomain.ShadowCopyFiles">
+ <summary>Gets an indication whether the application domain is configured to shadow copy files.</summary>
+ <returns>
+ <see langword="true" /> if the application domain is configured to shadow copy files; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
+ </member>
+ <member name="M:System.AppDomain.ToString">
+ <summary>Obtains a string representation that includes the friendly name of the application domain and any context policies.</summary>
+ <returns>A string formed by concatenating the literal string "Name:", the friendly name of the application domain, and either string representations of the context policies or the string "There are no context policies."</returns>
+ <exception cref="T:System.AppDomainUnloadedException">The application domain represented by the current <see cref="T:System.AppDomain" /> has been unloaded.</exception>
+ </member>
+ <member name="E:System.AppDomain.TypeResolve">
+ <summary>Occurs when the resolution of a type fails.</summary>
+ </member>
+ <member name="E:System.AppDomain.UnhandledException">
+ <summary>Occurs when an exception is not caught.</summary>
+ </member>
+ <member name="M:System.AppDomain.Unload(System.AppDomain)">
+ <summary>Unloads the specified application domain.</summary>
+ <param name="domain">An application domain to unload.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="domain" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.CannotUnloadAppDomainException">
+ <paramref name="domain" /> could not be unloaded.</exception>
+ <exception cref="T:System.Exception">An error occurred during the unload process.</exception>
+ </member>
+ <member name="T:System.AppDomainSetup">
+ <summary>Represents assembly binding information that can be added to an instance of <see cref="T:System.AppDomain" />.</summary>
+ </member>
+ <member name="P:System.AppDomainSetup.ApplicationBase">
+ <summary>Gets or sets the name of the directory containing the application.</summary>
+ <returns>The name of the application base directory.</returns>
+ </member>
+ <member name="P:System.AppDomainSetup.TargetFrameworkName">
+ <summary>Gets or sets a string that specifies the target version and profile of the .NET Framework for the application domain, in a format that can be parsed by the <see cref="M:System.Runtime.Versioning.FrameworkName.#ctor(System.String)" /> constructor.</summary>
+ <returns>The target version and profile of the .NET Framework.</returns>
+ </member>
+ <member name="T:System.AppDomainUnloadedException">
+ <summary>The exception that is thrown when an attempt is made to access an unloaded application domain.</summary>
+ </member>
+ <member name="M:System.AppDomainUnloadedException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.AppDomainUnloadedException" /> class.</summary>
+ </member>
+ <member name="M:System.AppDomainUnloadedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.AppDomainUnloadedException" /> class with serialized data.</summary>
+ <param name="info">The object that holds the serialized object data.</param>
+ <param name="context">The contextual information about the source or destination.</param>
+ </member>
+ <member name="M:System.AppDomainUnloadedException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.AppDomainUnloadedException" /> class with a specified error message.</summary>
+ <param name="message">The message that describes the error.</param>
+ </member>
+ <member name="M:System.AppDomainUnloadedException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.AppDomainUnloadedException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The message that describes the error.</param>
+ <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
+ </member>
+ <member name="T:System.ApplicationId">
+ <summary>Contains information used to uniquely identify a manifest-based application. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.ApplicationId.#ctor(System.Byte[],System.String,System.Version,System.String,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.ApplicationId" /> class.</summary>
+ <param name="publicKeyToken">The array of bytes representing the raw public key data.</param>
+ <param name="name">The name of the application.</param>
+ <param name="version">A <see cref="T:System.Version" /> object that specifies the version of the application.</param>
+ <param name="processorArchitecture">The processor architecture of the application.</param>
+ <param name="culture">The culture of the application.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="name" /> is <see langword="null" />.
+-or-
+<paramref name="version" /> is <see langword="null" />.
+-or-
+<paramref name="publicKeyToken" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="name" /> is an empty string.</exception>
+ </member>
+ <member name="M:System.ApplicationId.Copy">
+ <summary>Creates and returns an identical copy of the current application identity.</summary>
+ <returns>An <see cref="T:System.ApplicationId" /> object that represents an exact copy of the original.</returns>
+ </member>
+ <member name="P:System.ApplicationId.Culture">
+ <summary>Gets a string representing the culture information for the application.</summary>
+ <returns>The culture information for the application.</returns>
+ </member>
+ <member name="M:System.ApplicationId.Equals(System.Object)">
+ <summary>Determines whether the specified <see cref="T:System.ApplicationId" /> object is equivalent to the current <see cref="T:System.ApplicationId" />.</summary>
+ <param name="o">The <see cref="T:System.ApplicationId" /> object to compare to the current <see cref="T:System.ApplicationId" />.</param>
+ <returns>
+ <see langword="true" /> if the specified <see cref="T:System.ApplicationId" /> object is equivalent to the current <see cref="T:System.ApplicationId" />; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.ApplicationId.GetHashCode">
+ <summary>Gets the hash code for the current application identity.</summary>
+ <returns>The hash code for the current application identity.</returns>
+ </member>
+ <member name="P:System.ApplicationId.Name">
+ <summary>Gets the name of the application.</summary>
+ <returns>The name of the application.</returns>
+ </member>
+ <member name="P:System.ApplicationId.ProcessorArchitecture">
+ <summary>Gets the target processor architecture for the application.</summary>
+ <returns>The processor architecture of the application.</returns>
+ </member>
+ <member name="P:System.ApplicationId.PublicKeyToken">
+ <summary>Gets the public key token for the application.</summary>
+ <returns>A byte array containing the public key token for the application.</returns>
+ </member>
+ <member name="M:System.ApplicationId.ToString">
+ <summary>Creates and returns a string representation of the application identity.</summary>
+ <returns>A string representation of the application identity.</returns>
+ </member>
+ <member name="P:System.ApplicationId.Version">
+ <summary>Gets the version of the application.</summary>
+ <returns>A <see cref="T:System.Version" /> that specifies the version of the application.</returns>
+ </member>
+ <member name="T:System.AssemblyLoadEventArgs">
+ <summary>Provides data for the <see cref="E:System.AppDomain.AssemblyLoad" /> event.</summary>
+ </member>
+ <member name="M:System.AssemblyLoadEventArgs.#ctor(System.Reflection.Assembly)">
+ <summary>Initializes a new instance of the <see cref="T:System.AssemblyLoadEventArgs" /> class using the specified <see cref="T:System.Reflection.Assembly" />.</summary>
+ <param name="loadedAssembly">An instance that represents the currently loaded assembly.</param>
+ </member>
+ <member name="P:System.AssemblyLoadEventArgs.LoadedAssembly">
+ <summary>Gets an <see cref="T:System.Reflection.Assembly" /> that represents the currently loaded assembly.</summary>
+ <returns>An instance of <see cref="T:System.Reflection.Assembly" /> that represents the currently loaded assembly.</returns>
+ </member>
+ <member name="T:System.AssemblyLoadEventHandler">
+ <summary>Represents the method that handles the <see cref="E:System.AppDomain.AssemblyLoad" /> event of an <see cref="T:System.AppDomain" />.</summary>
+ <param name="sender">The source of the event.</param>
+ <param name="args">An <see cref="T:System.AssemblyLoadEventArgs" /> that contains the event data.</param>
+ </member>
+ <member name="T:System.Base64FormattingOptions">
+ <summary>Specifies whether relevant <see cref="Overload:System.Convert.ToBase64CharArray" /> and <see cref="Overload:System.Convert.ToBase64String" /> methods insert line breaks in their output.</summary>
+ </member>
+ <member name="F:System.Base64FormattingOptions.InsertLineBreaks">
+ <summary>Inserts line breaks after every 76 characters in the string representation.</summary>
+ </member>
+ <member name="F:System.Base64FormattingOptions.None">
+ <summary>Does not insert line breaks after every 76 characters in the string representation.</summary>
+ </member>
+ <member name="T:System.BitConverter">
+ <summary>Converts base data types to an array of bytes, and an array of bytes to base data types.</summary>
+ </member>
+ <member name="M:System.BitConverter.DoubleToInt64Bits(System.Double)">
+ <summary>Converts the specified double-precision floating point number to a 64-bit signed integer.</summary>
+ <param name="value">The number to convert.</param>
+ <returns>A 64-bit signed integer whose value is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.BitConverter.GetBytes(System.Boolean)">
+ <summary>Returns the specified Boolean value as a byte array.</summary>
+ <param name="value">A Boolean value.</param>
+ <returns>A byte array with length 1.</returns>
+ </member>
+ <member name="M:System.BitConverter.GetBytes(System.Char)">
+ <summary>Returns the specified Unicode character value as an array of bytes.</summary>
+ <param name="value">A character to convert.</param>
+ <returns>An array of bytes with length 2.</returns>
+ </member>
+ <member name="M:System.BitConverter.GetBytes(System.Double)">
+ <summary>Returns the specified double-precision floating point value as an array of bytes.</summary>
+ <param name="value">The number to convert.</param>
+ <returns>An array of bytes with length 8.</returns>
+ </member>
+ <member name="M:System.BitConverter.GetBytes(System.Int16)">
+ <summary>Returns the specified 16-bit signed integer value as an array of bytes.</summary>
+ <param name="value">The number to convert.</param>
+ <returns>An array of bytes with length 2.</returns>
+ </member>
+ <member name="M:System.BitConverter.GetBytes(System.Int32)">
+ <summary>Returns the specified 32-bit signed integer value as an array of bytes.</summary>
+ <param name="value">The number to convert.</param>
+ <returns>An array of bytes with length 4.</returns>
+ </member>
+ <member name="M:System.BitConverter.GetBytes(System.Int64)">
+ <summary>Returns the specified 64-bit signed integer value as an array of bytes.</summary>
+ <param name="value">The number to convert.</param>
+ <returns>An array of bytes with length 8.</returns>
+ </member>
+ <member name="M:System.BitConverter.GetBytes(System.Single)">
+ <summary>Returns the specified single-precision floating point value as an array of bytes.</summary>
+ <param name="value">The number to convert.</param>
+ <returns>An array of bytes with length 4.</returns>
+ </member>
+ <member name="M:System.BitConverter.GetBytes(System.UInt16)">
+ <summary>Returns the specified 16-bit unsigned integer value as an array of bytes.</summary>
+ <param name="value">The number to convert.</param>
+ <returns>An array of bytes with length 2.</returns>
+ </member>
+ <member name="M:System.BitConverter.GetBytes(System.UInt32)">
+ <summary>Returns the specified 32-bit unsigned integer value as an array of bytes.</summary>
+ <param name="value">The number to convert.</param>
+ <returns>An array of bytes with length 4.</returns>
+ </member>
+ <member name="M:System.BitConverter.GetBytes(System.UInt64)">
+ <summary>Returns the specified 64-bit unsigned integer value as an array of bytes.</summary>
+ <param name="value">The number to convert.</param>
+ <returns>An array of bytes with length 8.</returns>
+ </member>
+ <member name="M:System.BitConverter.Int32BitsToSingle(System.Int32)">
+ <summary>Reinterprets the specified 32-bit integer as a single-precision floating-point value.</summary>
+ <param name="value">The integer to convert.</param>
+ <returns>A single-precision floating-point value that represents the converted integer.</returns>
+ </member>
+ <member name="M:System.BitConverter.Int64BitsToDouble(System.Int64)">
+ <summary>Reinterprets the specified 64-bit signed integer to a double-precision floating point number.</summary>
+ <param name="value">The number to convert.</param>
+ <returns>A double-precision floating point number whose value is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="F:System.BitConverter.IsLittleEndian">
+ <summary>Indicates the byte order ("endianness") in which data is stored in this computer architecture.</summary>
+ </member>
+ <member name="M:System.BitConverter.SingleToInt32Bits(System.Single)">
+ <summary>Converts a single-precision floating-point value into an integer.</summary>
+ <param name="value">The single-precision floating-point value to convert.</param>
+ <returns>An integer representing the converted single-precision floating-point value.</returns>
+ </member>
+ <member name="M:System.BitConverter.ToBoolean(System.Byte[],System.Int32)">
+ <summary>Returns a Boolean value converted from the byte at a specified position in a byte array.</summary>
+ <param name="value">A byte array.</param>
+ <param name="startIndex">The index of the byte within <paramref name="value" />.</param>
+ <returns>
+ <see langword="true" /> if the byte at <paramref name="startIndex" /> in <paramref name="value" /> is nonzero; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1.</exception>
+ </member>
+ <member name="M:System.BitConverter.ToBoolean(System.ReadOnlySpan{System.Byte})">
+ <summary>Converts a read-only byte span to a Boolean value.</summary>
+ <param name="value">A read-only span containing the bytes to convert.</param>
+ <returns>A Boolean representing the converted bytes.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The length of <paramref name="value" /> is less than 0.</exception>
+ </member>
+ <member name="M:System.BitConverter.ToChar(System.Byte[],System.Int32)">
+ <summary>Returns a Unicode character converted from two bytes at a specified position in a byte array.</summary>
+ <param name="value">An array.</param>
+ <param name="startIndex">The starting position within <paramref name="value" />.</param>
+ <returns>A character formed by two bytes beginning at <paramref name="startIndex" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="startIndex" /> equals the length of <paramref name="value" /> minus 1.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1.</exception>
+ </member>
+ <member name="M:System.BitConverter.ToChar(System.ReadOnlySpan{System.Byte})">
+ <summary>Converts a read-only byte span into a character.</summary>
+ <param name="value">A read-only span containing the bytes to convert.</param>
+ <returns>A character representing the converted bytes.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The length of <paramref name="value" /> is less than the length of a <see cref="T:System.Char" />.</exception>
+ </member>
+ <member name="M:System.BitConverter.ToDouble(System.Byte[],System.Int32)">
+ <summary>Returns a double-precision floating point number converted from eight bytes at a specified position in a byte array.</summary>
+ <param name="value">An array of bytes.</param>
+ <param name="startIndex">The starting position within <paramref name="value" />.</param>
+ <returns>A double precision floating point number formed by eight bytes beginning at <paramref name="startIndex" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="startIndex" /> is greater than or equal to the length of <paramref name="value" /> minus 7, and is less than or equal to the length of <paramref name="value" /> minus 1.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1.</exception>
+ </member>
+ <member name="M:System.BitConverter.ToDouble(System.ReadOnlySpan{System.Byte})">
+ <summary>Converts a read-only byte span into a double-precision floating-point value.</summary>
+ <param name="value">A read-only span containing the bytes to convert.</param>
+ <returns>A double-precision floating-point value that represents the converted bytes.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The length of <paramref name="value" /> is less than the length of a <see cref="T:System.Double" /> value.</exception>
+ </member>
+ <member name="M:System.BitConverter.ToInt16(System.Byte[],System.Int32)">
+ <summary>Returns a 16-bit signed integer converted from two bytes at a specified position in a byte array.</summary>
+ <param name="value">An array of bytes.</param>
+ <param name="startIndex">The starting position within <paramref name="value" />.</param>
+ <returns>A 16-bit signed integer formed by two bytes beginning at <paramref name="startIndex" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="startIndex" /> equals the length of <paramref name="value" /> minus 1.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1.</exception>
+ </member>
+ <member name="M:System.BitConverter.ToInt16(System.ReadOnlySpan{System.Byte})">
+ <summary>Converts a read-only byte span into a 16-bit signed integer.</summary>
+ <param name="value">A read-only span containing the bytes to convert.</param>
+ <returns>A 16-bit signed integer representing the converted bytes.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The length of <paramref name="value" /> is less than 2.</exception>
+ </member>
+ <member name="M:System.BitConverter.ToInt32(System.Byte[],System.Int32)">
+ <summary>Returns a 32-bit signed integer converted from four bytes at a specified position in a byte array.</summary>
+ <param name="value">An array of bytes.</param>
+ <param name="startIndex">The starting position within <paramref name="value" />.</param>
+ <returns>A 32-bit signed integer formed by four bytes beginning at <paramref name="startIndex" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="startIndex" /> is greater than or equal to the length of <paramref name="value" /> minus 3, and is less than or equal to the length of <paramref name="value" /> minus 1.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1.</exception>
+ </member>
+ <member name="M:System.BitConverter.ToInt32(System.ReadOnlySpan{System.Byte})">
+ <summary>Converts a read-only byte span into a 32-bit signed integer.</summary>
+ <param name="value">A read-only span containing the bytes to convert.</param>
+ <returns>A 32-bit signed integer representing the converted bytes.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The length of <paramref name="value" /> is less than 4.</exception>
+ </member>
+ <member name="M:System.BitConverter.ToInt64(System.Byte[],System.Int32)">
+ <summary>Returns a 64-bit signed integer converted from eight bytes at a specified position in a byte array.</summary>
+ <param name="value">An array of bytes.</param>
+ <param name="startIndex">The starting position within <paramref name="value" />.</param>
+ <returns>A 64-bit signed integer formed by eight bytes beginning at <paramref name="startIndex" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="startIndex" /> is greater than or equal to the length of <paramref name="value" /> minus 7, and is less than or equal to the length of <paramref name="value" /> minus 1.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1.</exception>
+ </member>
+ <member name="M:System.BitConverter.ToInt64(System.ReadOnlySpan{System.Byte})">
+ <summary>Converts a read-only byte span into a 64-bit signed integer.</summary>
+ <param name="value">A read-only span containing the bytes to convert.</param>
+ <returns>A 64-bit signed integer representing the converted bytes.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The length of <paramref name="value" /> is less than 8.</exception>
+ </member>
+ <member name="M:System.BitConverter.ToSingle(System.Byte[],System.Int32)">
+ <summary>Returns a single-precision floating point number converted from four bytes at a specified position in a byte array.</summary>
+ <param name="value">An array of bytes.</param>
+ <param name="startIndex">The starting position within <paramref name="value" />.</param>
+ <returns>A single-precision floating point number formed by four bytes beginning at <paramref name="startIndex" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="startIndex" /> is greater than or equal to the length of <paramref name="value" /> minus 3, and is less than or equal to the length of <paramref name="value" /> minus 1.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1.</exception>
+ </member>
+ <member name="M:System.BitConverter.ToSingle(System.ReadOnlySpan{System.Byte})">
+ <summary>Converts a read-only byte span into a double-precision floating-point value.</summary>
+ <param name="value">A read-only span containing the bytes to convert.</param>
+ <returns>A double-precision floating-point value representing the converted bytes.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The length of <paramref name="value" /> is less than the length of a <see cref="T:System.Double" /> value.</exception>
+ </member>
+ <member name="M:System.BitConverter.ToString(System.Byte[])">
+ <summary>Converts the numeric value of each element of a specified array of bytes to its equivalent hexadecimal string representation.</summary>
+ <param name="value">An array of bytes.</param>
+ <returns>A string of hexadecimal pairs separated by hyphens, where each pair represents the corresponding element in <paramref name="value" />; for example, "7F-2C-4A-00".</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.BitConverter.ToString(System.Byte[],System.Int32)">
+ <summary>Converts the numeric value of each element of a specified subarray of bytes to its equivalent hexadecimal string representation.</summary>
+ <param name="value">An array of bytes.</param>
+ <param name="startIndex">The starting position within <paramref name="value" />.</param>
+ <returns>A string of hexadecimal pairs separated by hyphens, where each pair represents the corresponding element in a subarray of <paramref name="value" />; for example, "7F-2C-4A-00".</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1.</exception>
+ </member>
+ <member name="M:System.BitConverter.ToString(System.Byte[],System.Int32,System.Int32)">
+ <summary>Converts the numeric value of each element of a specified subarray of bytes to its equivalent hexadecimal string representation.</summary>
+ <param name="value">An array of bytes.</param>
+ <param name="startIndex">The starting position within <paramref name="value" />.</param>
+ <param name="length">The number of array elements in <paramref name="value" /> to convert.</param>
+ <returns>A string of hexadecimal pairs separated by hyphens, where each pair represents the corresponding element in a subarray of <paramref name="value" />; for example, "7F-2C-4A-00".</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="startIndex" /> or <paramref name="length" /> is less than zero.
+-or-
+<paramref name="startIndex" /> is greater than zero and is greater than or equal to the length of <paramref name="value" />.</exception>
+ <exception cref="T:System.ArgumentException">The combination of <paramref name="startIndex" /> and <paramref name="length" /> does not specify a position within <paramref name="value" />; that is, the <paramref name="startIndex" /> parameter is greater than the length of <paramref name="value" /> minus the <paramref name="length" /> parameter.</exception>
+ </member>
+ <member name="M:System.BitConverter.ToUInt16(System.Byte[],System.Int32)">
+ <summary>Returns a 16-bit unsigned integer converted from two bytes at a specified position in a byte array.</summary>
+ <param name="value">The array of bytes.</param>
+ <param name="startIndex">The starting position within <paramref name="value" />.</param>
+ <returns>A 16-bit unsigned integer formed by two bytes beginning at <paramref name="startIndex" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="startIndex" /> equals the length of <paramref name="value" /> minus 1.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1.</exception>
+ </member>
+ <member name="M:System.BitConverter.ToUInt16(System.ReadOnlySpan{System.Byte})">
+ <summary>Converts a read-only byte-span into a 16-bit unsigned integer.</summary>
+ <param name="value">A read-only span containing the bytes to convert.</param>
+ <returns>An 16-bit unsigned integer representing the converted bytes.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The length of <paramref name="value" /> is less than the 2.</exception>
+ </member>
+ <member name="M:System.BitConverter.ToUInt32(System.Byte[],System.Int32)">
+ <summary>Returns a 32-bit unsigned integer converted from four bytes at a specified position in a byte array.</summary>
+ <param name="value">An array of bytes.</param>
+ <param name="startIndex">The starting position within <paramref name="value" />.</param>
+ <returns>A 32-bit unsigned integer formed by four bytes beginning at <paramref name="startIndex" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="startIndex" /> is greater than or equal to the length of <paramref name="value" /> minus 3, and is less than or equal to the length of <paramref name="value" /> minus 1.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1.</exception>
+ </member>
+ <member name="M:System.BitConverter.ToUInt32(System.ReadOnlySpan{System.Byte})">
+ <summary>Converts a read-only byte span into a 32-bit unsigned integer.</summary>
+ <param name="value">A read-only span containing the bytes to convert.</param>
+ <returns>A 32-bit unsigned integer representing the converted bytes.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The length of <paramref name="value" /> is less than 4.</exception>
+ </member>
+ <member name="M:System.BitConverter.ToUInt64(System.Byte[],System.Int32)">
+ <summary>Returns a 64-bit unsigned integer converted from eight bytes at a specified position in a byte array.</summary>
+ <param name="value">An array of bytes.</param>
+ <param name="startIndex">The starting position within <paramref name="value" />.</param>
+ <returns>A 64-bit unsigned integer formed by the eight bytes beginning at <paramref name="startIndex" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="startIndex" /> is greater than or equal to the length of <paramref name="value" /> minus 7, and is less than or equal to the length of <paramref name="value" /> minus 1.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="startIndex" /> is less than zero or greater than the length of <paramref name="value" /> minus 1.</exception>
+ </member>
+ <member name="M:System.BitConverter.ToUInt64(System.ReadOnlySpan{System.Byte})">
+ <summary>Converts bytes into an unsigned long.</summary>
+ <param name="value">A read-only span containing the bytes to convert.</param>
+ <returns>A 64-bit unsigned integer representing the converted bytes.</returns>
+ </member>
+ <member name="M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.Boolean)">
+ <summary>Converts a Boolean into a span of bytes.</summary>
+ <param name="destination">When this method returns, the bytes representing the converted Boolean.</param>
+ <param name="value">The Boolean to convert.</param>
+ <returns>
+ <see langword="true" /> if the conversion was successful; <see langword="false" /> otherwise.</returns>
+ </member>
+ <member name="M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.Char)">
+ <summary>Converts a character into a span of bytes.</summary>
+ <param name="destination">When this method returns, the bytes representing the converted character.</param>
+ <param name="value">The character to convert.</param>
+ <returns>
+ <see langword="true" /> if the conversion was successful; <see langword="false" /> otherwise.</returns>
+ </member>
+ <member name="M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.Double)">
+ <summary>Converts a double-precision floating-point value into a span of bytes.</summary>
+ <param name="destination">When this method returns, the bytes representing the converted double-precision floating-point value.</param>
+ <param name="value">The double-precision floating-point value to convert.</param>
+ <returns>
+ <see langword="true" /> if the conversion was successful; <see langword="false" /> otherwise.</returns>
+ </member>
+ <member name="M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.Int16)">
+ <summary>Converts a 16-bit signed integer into a span of bytes.</summary>
+ <param name="destination">When this method returns, the bytes representing the converted 16-bit signed integer.</param>
+ <param name="value">The 16-bit signed integer to convert.</param>
+ <returns>
+ <see langword="true" /> if the conversion was successful; <see langword="false" /> otherwise.</returns>
+ </member>
+ <member name="M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.Int32)">
+ <summary>Converts a 32-bit signed integer into a span of bytes.</summary>
+ <param name="destination">When this method returns, the bytes representing the converted 32-bit signed integer.</param>
+ <param name="value">The 32-bit signed integer to convert.</param>
+ <returns>
+ <see langword="true" /> if the conversion was successful; <see langword="false" /> otherwise.</returns>
+ </member>
+ <member name="M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.Int64)">
+ <summary>Converts a 64-bit signed integer into a span of bytes.</summary>
+ <param name="destination">When this method returns, the bytes representing the converted 64-bit signed integer.</param>
+ <param name="value">The 64-bit signed integer to convert.</param>
+ <returns>
+ <see langword="true" /> if the conversion was successful; <see langword="false" /> otherwise.</returns>
+ </member>
+ <member name="M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.Single)">
+ <summary>Converts a double-precision floating-point value into a span of bytes.</summary>
+ <param name="destination">When this method returns, the bytes representing the converted double-precision floating-point value.</param>
+ <param name="value">The double-precision floating-point value to convert.</param>
+ <returns>
+ <see langword="true" /> if the conversion was successful; <see langword="false" /> otherwise.</returns>
+ </member>
+ <member name="M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.UInt16)">
+ <summary>Converts an unsigned 16-bit integer into a span of bytes.</summary>
+ <param name="destination">When this method returns, the bytes representing the converted unsigned 16-bit integer.</param>
+ <param name="value">The unsigned 16-bit integer to convert.</param>
+ <returns>
+ <see langword="true" /> if the conversion was successful; <see langword="false" /> otherwise.</returns>
+ </member>
+ <member name="M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.UInt32)">
+ <summary>Converts a 32-bit unsigned integer into a span of bytes.</summary>
+ <param name="destination">When this method returns, the bytes representing the converted unsigned 32-bit integer.</param>
+ <param name="value">The unsigned 32-bit integer to convert.</param>
+ <returns>
+ <see langword="true" /> if the conversion was successful; <see langword="false" /> otherwise.</returns>
+ </member>
+ <member name="M:System.BitConverter.TryWriteBytes(System.Span{System.Byte},System.UInt64)">
+ <summary>Converts an unsigned 64-bit integer into a span of bytes.</summary>
+ <param name="destination">When this method returns, the bytes representing the converted unsigned 64-bit integer.</param>
+ <param name="value">The unsigned 64-bit integer to convert.</param>
+ <returns>
+ <see langword="true" /> if the conversion was successful; <see langword="false" /> otherwise.</returns>
+ </member>
+ <member name="T:System.CannotUnloadAppDomainException">
+ <summary>The exception that is thrown when an attempt to unload an application domain fails.</summary>
+ </member>
+ <member name="M:System.CannotUnloadAppDomainException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.CannotUnloadAppDomainException" /> class.</summary>
+ </member>
+ <member name="M:System.CannotUnloadAppDomainException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.CannotUnloadAppDomainException" /> class from serialized data.</summary>
+ <param name="info">The object that holds the serialized object data.</param>
+ <param name="context">The contextual information about the source or destination.</param>
+ </member>
+ <member name="M:System.CannotUnloadAppDomainException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.CannotUnloadAppDomainException" /> class with a specified error message.</summary>
+ <param name="message">A <see cref="T:System.String" /> that describes the error.</param>
+ </member>
+ <member name="M:System.CannotUnloadAppDomainException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.CannotUnloadAppDomainException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not a null reference (<see langword="Nothing" /> in Visual Basic), the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
+ </member>
+ <member name="T:System.CodeDom.Compiler.IndentedTextWriter">
+ <summary>Provides a text writer that can indent new lines by a tab string token.</summary>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.#ctor(System.IO.TextWriter)">
+ <summary>Initializes a new instance of the <see cref="T:System.CodeDom.Compiler.IndentedTextWriter" /> class using the specified text writer and default tab string.</summary>
+ <param name="writer">The <see cref="T:System.IO.TextWriter" /> to use for output.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.#ctor(System.IO.TextWriter,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.CodeDom.Compiler.IndentedTextWriter" /> class using the specified text writer and tab string.</summary>
+ <param name="writer">The <see cref="T:System.IO.TextWriter" /> to use for output.</param>
+ <param name="tabString">The tab string to use for indentation.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.Close">
+ <summary>Closes the document being written to.</summary>
+ </member>
+ <member name="F:System.CodeDom.Compiler.IndentedTextWriter.DefaultTabString">
+ <summary>Specifies the default tab string. This field is constant.</summary>
+ </member>
+ <member name="P:System.CodeDom.Compiler.IndentedTextWriter.Encoding">
+ <summary>Gets the encoding for the text writer to use.</summary>
+ <returns>An <see cref="T:System.Text.Encoding" /> that indicates the encoding for the text writer to use.</returns>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.Flush">
+ <summary>Flushes the stream.</summary>
+ </member>
+ <member name="P:System.CodeDom.Compiler.IndentedTextWriter.Indent">
+ <summary>Gets or sets the number of spaces to indent.</summary>
+ <returns>The number of spaces to indent.</returns>
+ </member>
+ <member name="P:System.CodeDom.Compiler.IndentedTextWriter.InnerWriter">
+ <summary>Gets the <see cref="T:System.IO.TextWriter" /> to use.</summary>
+ <returns>The <see cref="T:System.IO.TextWriter" /> to use.</returns>
+ </member>
+ <member name="P:System.CodeDom.Compiler.IndentedTextWriter.NewLine">
+ <summary>Gets or sets the new line character to use.</summary>
+ <returns>The new line character to use.</returns>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.OutputTabs">
+ <summary>Outputs the tab string once for each level of indentation according to the <see cref="P:System.CodeDom.Compiler.IndentedTextWriter.Indent" /> property.</summary>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.Boolean)">
+ <summary>Writes the text representation of a Boolean value to the text stream.</summary>
+ <param name="value">The Boolean value to write.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.Char)">
+ <summary>Writes a character to the text stream.</summary>
+ <param name="value">The character to write.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.Char[])">
+ <summary>Writes a character array to the text stream.</summary>
+ <param name="buffer">The character array to write.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.Char[],System.Int32,System.Int32)">
+ <summary>Writes a subarray of characters to the text stream.</summary>
+ <param name="buffer">The character array to write data from.</param>
+ <param name="index">Starting index in the buffer.</param>
+ <param name="count">The number of characters to write.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.Double)">
+ <summary>Writes the text representation of a Double to the text stream.</summary>
+ <param name="value">The <see langword="double" /> to write.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.Int32)">
+ <summary>Writes the text representation of an integer to the text stream.</summary>
+ <param name="value">The integer to write.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.Int64)">
+ <summary>Writes the text representation of an 8-byte integer to the text stream.</summary>
+ <param name="value">The 8-byte integer to write.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.Object)">
+ <summary>Writes the text representation of an object to the text stream.</summary>
+ <param name="value">The object to write.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.Single)">
+ <summary>Writes the text representation of a Single to the text stream.</summary>
+ <param name="value">The <see langword="single" /> to write.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.String)">
+ <summary>Writes the specified string to the text stream.</summary>
+ <param name="s">The string to write.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.String,System.Object)">
+ <summary>Writes out a formatted string, using the same semantics as specified.</summary>
+ <param name="format">The formatting string.</param>
+ <param name="arg0">The object to write into the formatted string.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.String,System.Object,System.Object)">
+ <summary>Writes out a formatted string, using the same semantics as specified.</summary>
+ <param name="format">The formatting string to use.</param>
+ <param name="arg0">The first object to write into the formatted string.</param>
+ <param name="arg1">The second object to write into the formatted string.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.Write(System.String,System.Object[])">
+ <summary>Writes out a formatted string, using the same semantics as specified.</summary>
+ <param name="format">The formatting string to use.</param>
+ <param name="arg">The argument array to output.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine">
+ <summary>Writes a line terminator.</summary>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.Boolean)">
+ <summary>Writes the text representation of a Boolean, followed by a line terminator, to the text stream.</summary>
+ <param name="value">The Boolean to write.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.Char)">
+ <summary>Writes a character, followed by a line terminator, to the text stream.</summary>
+ <param name="value">The character to write.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.Char[])">
+ <summary>Writes a character array, followed by a line terminator, to the text stream.</summary>
+ <param name="buffer">The character array to write.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.Char[],System.Int32,System.Int32)">
+ <summary>Writes a subarray of characters, followed by a line terminator, to the text stream.</summary>
+ <param name="buffer">The character array to write data from.</param>
+ <param name="index">Starting index in the buffer.</param>
+ <param name="count">The number of characters to write.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.Double)">
+ <summary>Writes the text representation of a Double, followed by a line terminator, to the text stream.</summary>
+ <param name="value">The <see langword="double" /> to write.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.Int32)">
+ <summary>Writes the text representation of an integer, followed by a line terminator, to the text stream.</summary>
+ <param name="value">The integer to write.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.Int64)">
+ <summary>Writes the text representation of an 8-byte integer, followed by a line terminator, to the text stream.</summary>
+ <param name="value">The 8-byte integer to write.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.Object)">
+ <summary>Writes the text representation of an object, followed by a line terminator, to the text stream.</summary>
+ <param name="value">The object to write.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.Single)">
+ <summary>Writes the text representation of a Single, followed by a line terminator, to the text stream.</summary>
+ <param name="value">The <see langword="single" /> to write.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.String)">
+ <summary>Writes the specified string, followed by a line terminator, to the text stream.</summary>
+ <param name="s">The string to write.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.String,System.Object)">
+ <summary>Writes out a formatted string, followed by a line terminator, using the same semantics as specified.</summary>
+ <param name="format">The formatting string.</param>
+ <param name="arg0">The object to write into the formatted string.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.String,System.Object,System.Object)">
+ <summary>Writes out a formatted string, followed by a line terminator, using the same semantics as specified.</summary>
+ <param name="format">The formatting string to use.</param>
+ <param name="arg0">The first object to write into the formatted string.</param>
+ <param name="arg1">The second object to write into the formatted string.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.String,System.Object[])">
+ <summary>Writes out a formatted string, followed by a line terminator, using the same semantics as specified.</summary>
+ <param name="format">The formatting string to use.</param>
+ <param name="arg">The argument array to output.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.WriteLine(System.UInt32)">
+ <summary>Writes the text representation of a UInt32, followed by a line terminator, to the text stream.</summary>
+ <param name="value">A UInt32 to output.</param>
+ </member>
+ <member name="M:System.CodeDom.Compiler.IndentedTextWriter.WriteLineNoTabs(System.String)">
+ <summary>Writes the specified string to a line without tabs.</summary>
+ <param name="s">The string to write.</param>
+ </member>
+ <member name="T:System.Collections.ArrayList">
+ <summary>Implements the <see cref="T:System.Collections.IList" /> interface using an array whose size is dynamically increased as required.</summary>
+ </member>
+ <member name="M:System.Collections.ArrayList.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.ArrayList" /> class that is empty and has the default initial capacity.</summary>
+ </member>
+ <member name="M:System.Collections.ArrayList.#ctor(System.Collections.ICollection)">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.ArrayList" /> class that contains elements copied from the specified collection and that has the same initial capacity as the number of elements copied.</summary>
+ <param name="c">The <see cref="T:System.Collections.ICollection" /> whose elements are copied to the new list.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="c" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.#ctor(System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.ArrayList" /> class that is empty and has the specified initial capacity.</summary>
+ <param name="capacity">The number of elements that the new list can initially store.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="capacity" /> is less than zero.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.Adapter(System.Collections.IList)">
+ <summary>Creates an <see cref="T:System.Collections.ArrayList" /> wrapper for a specific <see cref="T:System.Collections.IList" />.</summary>
+ <param name="list">The <see cref="T:System.Collections.IList" /> to wrap.</param>
+ <returns>The <see cref="T:System.Collections.ArrayList" /> wrapper around the <see cref="T:System.Collections.IList" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="list" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.Add(System.Object)">
+ <summary>Adds an object to the end of the <see cref="T:System.Collections.ArrayList" />.</summary>
+ <param name="value">The <see cref="T:System.Object" /> to be added to the end of the <see cref="T:System.Collections.ArrayList" />. The value can be <see langword="null" />.</param>
+ <returns>The <see cref="T:System.Collections.ArrayList" /> index at which the <paramref name="value" /> has been added.</returns>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.ArrayList" /> is read-only.
+-or-
+The <see cref="T:System.Collections.ArrayList" /> has a fixed size.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.AddRange(System.Collections.ICollection)">
+ <summary>Adds the elements of an <see cref="T:System.Collections.ICollection" /> to the end of the <see cref="T:System.Collections.ArrayList" />.</summary>
+ <param name="c">The <see cref="T:System.Collections.ICollection" /> whose elements should be added to the end of the <see cref="T:System.Collections.ArrayList" />. The collection itself cannot be <see langword="null" />, but it can contain elements that are <see langword="null" />.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="c" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.ArrayList" /> is read-only.
+-or-
+The <see cref="T:System.Collections.ArrayList" /> has a fixed size.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.BinarySearch(System.Int32,System.Int32,System.Object,System.Collections.IComparer)">
+ <summary>Searches a range of elements in the sorted <see cref="T:System.Collections.ArrayList" /> for an element using the specified comparer and returns the zero-based index of the element.</summary>
+ <param name="index">The zero-based starting index of the range to search.</param>
+ <param name="count">The length of the range to search.</param>
+ <param name="value">The <see cref="T:System.Object" /> to locate. The value can be <see langword="null" />.</param>
+ <param name="comparer">The <see cref="T:System.Collections.IComparer" /> implementation to use when comparing elements.
+-or-
+<see langword="null" /> to use the default comparer that is the <see cref="T:System.IComparable" /> implementation of each element.</param>
+ <returns>The zero-based index of <paramref name="value" /> in the sorted <see cref="T:System.Collections.ArrayList" />, if <paramref name="value" /> is found; otherwise, a negative number, which is the bitwise complement of the index of the next element that is larger than <paramref name="value" /> or, if there is no larger element, the bitwise complement of <see cref="P:System.Collections.ArrayList.Count" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="index" /> and <paramref name="count" /> do not denote a valid range in the <see cref="T:System.Collections.ArrayList" />.
+-or-
+<paramref name="comparer" /> is <see langword="null" /> and neither <paramref name="value" /> nor the elements of <see cref="T:System.Collections.ArrayList" /> implement the <see cref="T:System.IComparable" /> interface.</exception>
+ <exception cref="T:System.InvalidOperationException">
+ <paramref name="comparer" /> is <see langword="null" /> and <paramref name="value" /> is not of the same type as the elements of the <see cref="T:System.Collections.ArrayList" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> is less than zero.
+-or-
+<paramref name="count" /> is less than zero.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.BinarySearch(System.Object)">
+ <summary>Searches the entire sorted <see cref="T:System.Collections.ArrayList" /> for an element using the default comparer and returns the zero-based index of the element.</summary>
+ <param name="value">The <see cref="T:System.Object" /> to locate. The value can be <see langword="null" />.</param>
+ <returns>The zero-based index of <paramref name="value" /> in the sorted <see cref="T:System.Collections.ArrayList" />, if <paramref name="value" /> is found; otherwise, a negative number, which is the bitwise complement of the index of the next element that is larger than <paramref name="value" /> or, if there is no larger element, the bitwise complement of <see cref="P:System.Collections.ArrayList.Count" />.</returns>
+ <exception cref="T:System.ArgumentException">Neither <paramref name="value" /> nor the elements of <see cref="T:System.Collections.ArrayList" /> implement the <see cref="T:System.IComparable" /> interface.</exception>
+ <exception cref="T:System.InvalidOperationException">
+ <paramref name="value" /> is not of the same type as the elements of the <see cref="T:System.Collections.ArrayList" />.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.BinarySearch(System.Object,System.Collections.IComparer)">
+ <summary>Searches the entire sorted <see cref="T:System.Collections.ArrayList" /> for an element using the specified comparer and returns the zero-based index of the element.</summary>
+ <param name="value">The <see cref="T:System.Object" /> to locate. The value can be <see langword="null" />.</param>
+ <param name="comparer">The <see cref="T:System.Collections.IComparer" /> implementation to use when comparing elements.
+-or-
+<see langword="null" /> to use the default comparer that is the <see cref="T:System.IComparable" /> implementation of each element.</param>
+ <returns>The zero-based index of <paramref name="value" /> in the sorted <see cref="T:System.Collections.ArrayList" />, if <paramref name="value" /> is found; otherwise, a negative number, which is the bitwise complement of the index of the next element that is larger than <paramref name="value" /> or, if there is no larger element, the bitwise complement of <see cref="P:System.Collections.ArrayList.Count" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="comparer" /> is <see langword="null" /> and neither <paramref name="value" /> nor the elements of <see cref="T:System.Collections.ArrayList" /> implement the <see cref="T:System.IComparable" /> interface.</exception>
+ <exception cref="T:System.InvalidOperationException">
+ <paramref name="comparer" /> is <see langword="null" /> and <paramref name="value" /> is not of the same type as the elements of the <see cref="T:System.Collections.ArrayList" />.</exception>
+ </member>
+ <member name="P:System.Collections.ArrayList.Capacity">
+ <summary>Gets or sets the number of elements that the <see cref="T:System.Collections.ArrayList" /> can contain.</summary>
+ <returns>The number of elements that the <see cref="T:System.Collections.ArrayList" /> can contain.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <see cref="P:System.Collections.ArrayList.Capacity" /> is set to a value that is less than <see cref="P:System.Collections.ArrayList.Count" />.</exception>
+ <exception cref="T:System.OutOfMemoryException">There is not enough memory available on the system.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.Clear">
+ <summary>Removes all elements from the <see cref="T:System.Collections.ArrayList" />.</summary>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.ArrayList" /> is read-only.
+-or-
+The <see cref="T:System.Collections.ArrayList" /> has a fixed size.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.Clone">
+ <summary>Creates a shallow copy of the <see cref="T:System.Collections.ArrayList" />.</summary>
+ <returns>A shallow copy of the <see cref="T:System.Collections.ArrayList" />.</returns>
+ </member>
+ <member name="M:System.Collections.ArrayList.Contains(System.Object)">
+ <summary>Determines whether an element is in the <see cref="T:System.Collections.ArrayList" />.</summary>
+ <param name="item">The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.ArrayList" />. The value can be <see langword="null" />.</param>
+ <returns>
+ <see langword="true" /> if <paramref name="item" /> is found in the <see cref="T:System.Collections.ArrayList" />; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Collections.ArrayList.CopyTo(System.Array)">
+ <summary>Copies the entire <see cref="T:System.Collections.ArrayList" /> to a compatible one-dimensional <see cref="T:System.Array" />, starting at the beginning of the target array.</summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ArrayList" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="array" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="array" /> is multidimensional.
+-or-
+The number of elements in the source <see cref="T:System.Collections.ArrayList" /> is greater than the number of elements that the destination <paramref name="array" /> can contain.</exception>
+ <exception cref="T:System.InvalidCastException">The type of the source <see cref="T:System.Collections.ArrayList" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.CopyTo(System.Array,System.Int32)">
+ <summary>Copies the entire <see cref="T:System.Collections.ArrayList" /> to a compatible one-dimensional <see cref="T:System.Array" />, starting at the specified index of the target array.</summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ArrayList" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
+ <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="array" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="arrayIndex" /> is less than zero.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="array" /> is multidimensional.
+-or-
+The number of elements in the source <see cref="T:System.Collections.ArrayList" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.</exception>
+ <exception cref="T:System.InvalidCastException">The type of the source <see cref="T:System.Collections.ArrayList" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.CopyTo(System.Int32,System.Array,System.Int32,System.Int32)">
+ <summary>Copies a range of elements from the <see cref="T:System.Collections.ArrayList" /> to a compatible one-dimensional <see cref="T:System.Array" />, starting at the specified index of the target array.</summary>
+ <param name="index">The zero-based index in the source <see cref="T:System.Collections.ArrayList" /> at which copying begins.</param>
+ <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.ArrayList" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
+ <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
+ <param name="count">The number of elements to copy.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="array" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> is less than zero.
+-or-
+<paramref name="arrayIndex" /> is less than zero.
+-or-
+<paramref name="count" /> is less than zero.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="array" /> is multidimensional.
+-or-
+<paramref name="index" /> is equal to or greater than the <see cref="P:System.Collections.ArrayList.Count" /> of the source <see cref="T:System.Collections.ArrayList" />.
+-or-
+The number of elements from <paramref name="index" /> to the end of the source <see cref="T:System.Collections.ArrayList" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.</exception>
+ <exception cref="T:System.InvalidCastException">The type of the source <see cref="T:System.Collections.ArrayList" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
+ </member>
+ <member name="P:System.Collections.ArrayList.Count">
+ <summary>Gets the number of elements actually contained in the <see cref="T:System.Collections.ArrayList" />.</summary>
+ <returns>The number of elements actually contained in the <see cref="T:System.Collections.ArrayList" />.</returns>
+ </member>
+ <member name="M:System.Collections.ArrayList.FixedSize(System.Collections.ArrayList)">
+ <summary>Returns an <see cref="T:System.Collections.ArrayList" /> wrapper with a fixed size.</summary>
+ <param name="list">The <see cref="T:System.Collections.ArrayList" /> to wrap.</param>
+ <returns>An <see cref="T:System.Collections.ArrayList" /> wrapper with a fixed size.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="list" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.FixedSize(System.Collections.IList)">
+ <summary>Returns an <see cref="T:System.Collections.IList" /> wrapper with a fixed size.</summary>
+ <param name="list">The <see cref="T:System.Collections.IList" /> to wrap.</param>
+ <returns>An <see cref="T:System.Collections.IList" /> wrapper with a fixed size.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="list" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.GetEnumerator">
+ <summary>Returns an enumerator for the entire <see cref="T:System.Collections.ArrayList" />.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator" /> for the entire <see cref="T:System.Collections.ArrayList" />.</returns>
+ </member>
+ <member name="M:System.Collections.ArrayList.GetEnumerator(System.Int32,System.Int32)">
+ <summary>Returns an enumerator for a range of elements in the <see cref="T:System.Collections.ArrayList" />.</summary>
+ <param name="index">The zero-based starting index of the <see cref="T:System.Collections.ArrayList" /> section that the enumerator should refer to.</param>
+ <param name="count">The number of elements in the <see cref="T:System.Collections.ArrayList" /> section that the enumerator should refer to.</param>
+ <returns>An <see cref="T:System.Collections.IEnumerator" /> for the specified range of elements in the <see cref="T:System.Collections.ArrayList" />.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> is less than zero.
+-or-
+<paramref name="count" /> is less than zero.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="index" /> and <paramref name="count" /> do not specify a valid range in the <see cref="T:System.Collections.ArrayList" />.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.GetRange(System.Int32,System.Int32)">
+ <summary>Returns an <see cref="T:System.Collections.ArrayList" /> which represents a subset of the elements in the source <see cref="T:System.Collections.ArrayList" />.</summary>
+ <param name="index">The zero-based <see cref="T:System.Collections.ArrayList" /> index at which the range starts.</param>
+ <param name="count">The number of elements in the range.</param>
+ <returns>An <see cref="T:System.Collections.ArrayList" /> which represents a subset of the elements in the source <see cref="T:System.Collections.ArrayList" />.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> is less than zero.
+-or-
+<paramref name="count" /> is less than zero.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="index" /> and <paramref name="count" /> do not denote a valid range of elements in the <see cref="T:System.Collections.ArrayList" />.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.IndexOf(System.Object)">
+ <summary>Searches for the specified <see cref="T:System.Object" /> and returns the zero-based index of the first occurrence within the entire <see cref="T:System.Collections.ArrayList" />.</summary>
+ <param name="value">The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.ArrayList" />. The value can be <see langword="null" />.</param>
+ <returns>The zero-based index of the first occurrence of <paramref name="value" /> within the entire <see cref="T:System.Collections.ArrayList" />, if found; otherwise, -1.</returns>
+ </member>
+ <member name="M:System.Collections.ArrayList.IndexOf(System.Object,System.Int32)">
+ <summary>Searches for the specified <see cref="T:System.Object" /> and returns the zero-based index of the first occurrence within the range of elements in the <see cref="T:System.Collections.ArrayList" /> that extends from the specified index to the last element.</summary>
+ <param name="value">The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.ArrayList" />. The value can be <see langword="null" />.</param>
+ <param name="startIndex">The zero-based starting index of the search. 0 (zero) is valid in an empty list.</param>
+ <returns>The zero-based index of the first occurrence of <paramref name="value" /> within the range of elements in the <see cref="T:System.Collections.ArrayList" /> that extends from <paramref name="startIndex" /> to the last element, if found; otherwise, -1.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="startIndex" /> is outside the range of valid indexes for the <see cref="T:System.Collections.ArrayList" />.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.IndexOf(System.Object,System.Int32,System.Int32)">
+ <summary>Searches for the specified <see cref="T:System.Object" /> and returns the zero-based index of the first occurrence within the range of elements in the <see cref="T:System.Collections.ArrayList" /> that starts at the specified index and contains the specified number of elements.</summary>
+ <param name="value">The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.ArrayList" />. The value can be <see langword="null" />.</param>
+ <param name="startIndex">The zero-based starting index of the search. 0 (zero) is valid in an empty list.</param>
+ <param name="count">The number of elements in the section to search.</param>
+ <returns>The zero-based index of the first occurrence of <paramref name="value" /> within the range of elements in the <see cref="T:System.Collections.ArrayList" /> that starts at <paramref name="startIndex" /> and contains <paramref name="count" /> number of elements, if found; otherwise, -1.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="startIndex" /> is outside the range of valid indexes for the <see cref="T:System.Collections.ArrayList" />.
+-or-
+<paramref name="count" /> is less than zero.
+-or-
+<paramref name="startIndex" /> and <paramref name="count" /> do not specify a valid section in the <see cref="T:System.Collections.ArrayList" />.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.Insert(System.Int32,System.Object)">
+ <summary>Inserts an element into the <see cref="T:System.Collections.ArrayList" /> at the specified index.</summary>
+ <param name="index">The zero-based index at which <paramref name="value" /> should be inserted.</param>
+ <param name="value">The <see cref="T:System.Object" /> to insert. The value can be <see langword="null" />.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> is less than zero.
+-or-
+<paramref name="index" /> is greater than <see cref="P:System.Collections.ArrayList.Count" />.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.ArrayList" /> is read-only.
+-or-
+The <see cref="T:System.Collections.ArrayList" /> has a fixed size.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.InsertRange(System.Int32,System.Collections.ICollection)">
+ <summary>Inserts the elements of a collection into the <see cref="T:System.Collections.ArrayList" /> at the specified index.</summary>
+ <param name="index">The zero-based index at which the new elements should be inserted.</param>
+ <param name="c">The <see cref="T:System.Collections.ICollection" /> whose elements should be inserted into the <see cref="T:System.Collections.ArrayList" />. The collection itself cannot be <see langword="null" />, but it can contain elements that are <see langword="null" />.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="c" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> is less than zero.
+-or-
+<paramref name="index" /> is greater than <see cref="P:System.Collections.ArrayList.Count" />.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.ArrayList" /> is read-only.
+-or-
+The <see cref="T:System.Collections.ArrayList" /> has a fixed size.</exception>
+ </member>
+ <member name="P:System.Collections.ArrayList.IsFixedSize">
+ <summary>Gets a value indicating whether the <see cref="T:System.Collections.ArrayList" /> has a fixed size.</summary>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Collections.ArrayList" /> has a fixed size; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Collections.ArrayList.IsReadOnly">
+ <summary>Gets a value indicating whether the <see cref="T:System.Collections.ArrayList" /> is read-only.</summary>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Collections.ArrayList" /> is read-only; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Collections.ArrayList.IsSynchronized">
+ <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.ArrayList" /> is synchronized (thread safe).</summary>
+ <returns>
+ <see langword="true" /> if access to the <see cref="T:System.Collections.ArrayList" /> is synchronized (thread safe); otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Collections.ArrayList.Item(System.Int32)">
+ <summary>Gets or sets the element at the specified index.</summary>
+ <param name="index">The zero-based index of the element to get or set.</param>
+ <returns>The element at the specified index.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> is less than zero.
+-or-
+<paramref name="index" /> is equal to or greater than <see cref="P:System.Collections.ArrayList.Count" />.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.LastIndexOf(System.Object)">
+ <summary>Searches for the specified <see cref="T:System.Object" /> and returns the zero-based index of the last occurrence within the entire <see cref="T:System.Collections.ArrayList" />.</summary>
+ <param name="value">The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.ArrayList" />. The value can be <see langword="null" />.</param>
+ <returns>The zero-based index of the last occurrence of <paramref name="value" /> within the entire the <see cref="T:System.Collections.ArrayList" />, if found; otherwise, -1.</returns>
+ </member>
+ <member name="M:System.Collections.ArrayList.LastIndexOf(System.Object,System.Int32)">
+ <summary>Searches for the specified <see cref="T:System.Object" /> and returns the zero-based index of the last occurrence within the range of elements in the <see cref="T:System.Collections.ArrayList" /> that extends from the first element to the specified index.</summary>
+ <param name="value">The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.ArrayList" />. The value can be <see langword="null" />.</param>
+ <param name="startIndex">The zero-based starting index of the backward search.</param>
+ <returns>The zero-based index of the last occurrence of <paramref name="value" /> within the range of elements in the <see cref="T:System.Collections.ArrayList" /> that extends from the first element to <paramref name="startIndex" />, if found; otherwise, -1.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="startIndex" /> is outside the range of valid indexes for the <see cref="T:System.Collections.ArrayList" />.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.LastIndexOf(System.Object,System.Int32,System.Int32)">
+ <summary>Searches for the specified <see cref="T:System.Object" /> and returns the zero-based index of the last occurrence within the range of elements in the <see cref="T:System.Collections.ArrayList" /> that contains the specified number of elements and ends at the specified index.</summary>
+ <param name="value">The <see cref="T:System.Object" /> to locate in the <see cref="T:System.Collections.ArrayList" />. The value can be <see langword="null" />.</param>
+ <param name="startIndex">The zero-based starting index of the backward search.</param>
+ <param name="count">The number of elements in the section to search.</param>
+ <returns>The zero-based index of the last occurrence of <paramref name="value" /> within the range of elements in the <see cref="T:System.Collections.ArrayList" /> that contains <paramref name="count" /> number of elements and ends at <paramref name="startIndex" />, if found; otherwise, -1.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="startIndex" /> is outside the range of valid indexes for the <see cref="T:System.Collections.ArrayList" />.
+-or-
+<paramref name="count" /> is less than zero.
+-or-
+<paramref name="startIndex" /> and <paramref name="count" /> do not specify a valid section in the <see cref="T:System.Collections.ArrayList" />.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.ReadOnly(System.Collections.ArrayList)">
+ <summary>Returns a read-only <see cref="T:System.Collections.ArrayList" /> wrapper.</summary>
+ <param name="list">The <see cref="T:System.Collections.ArrayList" /> to wrap.</param>
+ <returns>A read-only <see cref="T:System.Collections.ArrayList" /> wrapper around <paramref name="list" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="list" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.ReadOnly(System.Collections.IList)">
+ <summary>Returns a read-only <see cref="T:System.Collections.IList" /> wrapper.</summary>
+ <param name="list">The <see cref="T:System.Collections.IList" /> to wrap.</param>
+ <returns>A read-only <see cref="T:System.Collections.IList" /> wrapper around <paramref name="list" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="list" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.Remove(System.Object)">
+ <summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.ArrayList" />.</summary>
+ <param name="obj">The <see cref="T:System.Object" /> to remove from the <see cref="T:System.Collections.ArrayList" />. The value can be <see langword="null" />.</param>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.ArrayList" /> is read-only.
+-or-
+The <see cref="T:System.Collections.ArrayList" /> has a fixed size.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.RemoveAt(System.Int32)">
+ <summary>Removes the element at the specified index of the <see cref="T:System.Collections.ArrayList" />.</summary>
+ <param name="index">The zero-based index of the element to remove.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> is less than zero.
+-or-
+<paramref name="index" /> is equal to or greater than <see cref="P:System.Collections.ArrayList.Count" />.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.ArrayList" /> is read-only.
+-or-
+The <see cref="T:System.Collections.ArrayList" /> has a fixed size.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.RemoveRange(System.Int32,System.Int32)">
+ <summary>Removes a range of elements from the <see cref="T:System.Collections.ArrayList" />.</summary>
+ <param name="index">The zero-based starting index of the range of elements to remove.</param>
+ <param name="count">The number of elements to remove.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> is less than zero.
+-or-
+<paramref name="count" /> is less than zero.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="index" /> and <paramref name="count" /> do not denote a valid range of elements in the <see cref="T:System.Collections.ArrayList" />.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.ArrayList" /> is read-only.
+-or-
+The <see cref="T:System.Collections.ArrayList" /> has a fixed size.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.Repeat(System.Object,System.Int32)">
+ <summary>Returns an <see cref="T:System.Collections.ArrayList" /> whose elements are copies of the specified value.</summary>
+ <param name="value">The <see cref="T:System.Object" /> to copy multiple times in the new <see cref="T:System.Collections.ArrayList" />. The value can be <see langword="null" />.</param>
+ <param name="count">The number of times <paramref name="value" /> should be copied.</param>
+ <returns>An <see cref="T:System.Collections.ArrayList" /> with <paramref name="count" /> number of elements, all of which are copies of <paramref name="value" />.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="count" /> is less than zero.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.Reverse">
+ <summary>Reverses the order of the elements in the entire <see cref="T:System.Collections.ArrayList" />.</summary>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.ArrayList" /> is read-only.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.Reverse(System.Int32,System.Int32)">
+ <summary>Reverses the order of the elements in the specified range.</summary>
+ <param name="index">The zero-based starting index of the range to reverse.</param>
+ <param name="count">The number of elements in the range to reverse.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> is less than zero.
+-or-
+<paramref name="count" /> is less than zero.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="index" /> and <paramref name="count" /> do not denote a valid range of elements in the <see cref="T:System.Collections.ArrayList" />.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.ArrayList" /> is read-only.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.SetRange(System.Int32,System.Collections.ICollection)">
+ <summary>Copies the elements of a collection over a range of elements in the <see cref="T:System.Collections.ArrayList" />.</summary>
+ <param name="index">The zero-based <see cref="T:System.Collections.ArrayList" /> index at which to start copying the elements of <paramref name="c" />.</param>
+ <param name="c">The <see cref="T:System.Collections.ICollection" /> whose elements to copy to the <see cref="T:System.Collections.ArrayList" />. The collection itself cannot be <see langword="null" />, but it can contain elements that are <see langword="null" />.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> is less than zero.
+-or-
+<paramref name="index" /> plus the number of elements in <paramref name="c" /> is greater than <see cref="P:System.Collections.ArrayList.Count" />.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="c" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.ArrayList" /> is read-only.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.Sort">
+ <summary>Sorts the elements in the entire <see cref="T:System.Collections.ArrayList" />.</summary>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.ArrayList" /> is read-only.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.Sort(System.Collections.IComparer)">
+ <summary>Sorts the elements in the entire <see cref="T:System.Collections.ArrayList" /> using the specified comparer.</summary>
+ <param name="comparer">The <see cref="T:System.Collections.IComparer" /> implementation to use when comparing elements.
+-or-
+A null reference (<see langword="Nothing" /> in Visual Basic) to use the <see cref="T:System.IComparable" /> implementation of each element.</param>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.ArrayList" /> is read-only.</exception>
+ <exception cref="T:System.InvalidOperationException">An error occurred while comparing two elements.</exception>
+ <exception cref="T:System.ArgumentException">
+ <see langword="null" /> is passed for <paramref name="comparer" />, and the elements in the list do not implement <see cref="T:System.IComparable" />.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.Sort(System.Int32,System.Int32,System.Collections.IComparer)">
+ <summary>Sorts the elements in a range of elements in <see cref="T:System.Collections.ArrayList" /> using the specified comparer.</summary>
+ <param name="index">The zero-based starting index of the range to sort.</param>
+ <param name="count">The length of the range to sort.</param>
+ <param name="comparer">The <see cref="T:System.Collections.IComparer" /> implementation to use when comparing elements.
+-or-
+A null reference (<see langword="Nothing" /> in Visual Basic) to use the <see cref="T:System.IComparable" /> implementation of each element.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> is less than zero.
+-or-
+<paramref name="count" /> is less than zero.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="index" /> and <paramref name="count" /> do not specify a valid range in the <see cref="T:System.Collections.ArrayList" />.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.ArrayList" /> is read-only.</exception>
+ <exception cref="T:System.InvalidOperationException">An error occurred while comparing two elements.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.Synchronized(System.Collections.ArrayList)">
+ <summary>Returns an <see cref="T:System.Collections.ArrayList" /> wrapper that is synchronized (thread safe).</summary>
+ <param name="list">The <see cref="T:System.Collections.ArrayList" /> to synchronize.</param>
+ <returns>An <see cref="T:System.Collections.ArrayList" /> wrapper that is synchronized (thread safe).</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="list" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.Synchronized(System.Collections.IList)">
+ <summary>Returns an <see cref="T:System.Collections.IList" /> wrapper that is synchronized (thread safe).</summary>
+ <param name="list">The <see cref="T:System.Collections.IList" /> to synchronize.</param>
+ <returns>An <see cref="T:System.Collections.IList" /> wrapper that is synchronized (thread safe).</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="list" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="P:System.Collections.ArrayList.SyncRoot">
+ <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.ArrayList" />.</summary>
+ <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.ArrayList" />.</returns>
+ </member>
+ <member name="M:System.Collections.ArrayList.ToArray">
+ <summary>Copies the elements of the <see cref="T:System.Collections.ArrayList" /> to a new <see cref="T:System.Object" /> array.</summary>
+ <returns>An <see cref="T:System.Object" /> array containing copies of the elements of the <see cref="T:System.Collections.ArrayList" />.</returns>
+ </member>
+ <member name="M:System.Collections.ArrayList.ToArray(System.Type)">
+ <summary>Copies the elements of the <see cref="T:System.Collections.ArrayList" /> to a new array of the specified element type.</summary>
+ <param name="type">The element <see cref="T:System.Type" /> of the destination array to create and copy elements to.</param>
+ <returns>An array of the specified element type containing copies of the elements of the <see cref="T:System.Collections.ArrayList" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="type" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidCastException">The type of the source <see cref="T:System.Collections.ArrayList" /> cannot be cast automatically to the specified type.</exception>
+ </member>
+ <member name="M:System.Collections.ArrayList.TrimToSize">
+ <summary>Sets the capacity to the actual number of elements in the <see cref="T:System.Collections.ArrayList" />.</summary>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.ArrayList" /> is read-only.
+-or-
+The <see cref="T:System.Collections.ArrayList" /> has a fixed size.</exception>
+ </member>
+ <member name="T:System.Collections.Comparer">
+ <summary>Compares two objects for equivalence, where string comparisons are case-sensitive.</summary>
+ </member>
+ <member name="M:System.Collections.Comparer.#ctor(System.Globalization.CultureInfo)">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Comparer" /> class using the specified <see cref="T:System.Globalization.CultureInfo" />.</summary>
+ <param name="culture">The <see cref="T:System.Globalization.CultureInfo" /> to use for the new <see cref="T:System.Collections.Comparer" />.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="culture" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Collections.Comparer.Compare(System.Object,System.Object)">
+ <summary>Performs a case-sensitive comparison of two objects of the same type and returns a value indicating whether one is less than, equal to, or greater than the other.</summary>
+ <param name="a">The first object to compare.</param>
+ <param name="b">The second object to compare.</param>
+ <returns>A signed integer that indicates the relative values of <paramref name="a" /> and <paramref name="b" />, as shown in the following table.
+ Value
+
+ Meaning
+
+ Less than zero
+
+ <paramref name="a" /> is less than <paramref name="b" />.
+
+ Zero
+
+ <paramref name="a" /> equals <paramref name="b" />.
+
+ Greater than zero
+
+ <paramref name="a" /> is greater than <paramref name="b" />.</returns>
+ <exception cref="T:System.ArgumentException">Neither <paramref name="a" /> nor <paramref name="b" /> implements the <see cref="T:System.IComparable" /> interface.
+-or-
+<paramref name="a" /> and <paramref name="b" /> are of different types and neither one can handle comparisons with the other.</exception>
+ </member>
+ <member name="F:System.Collections.Comparer.Default">
+ <summary>Represents an instance of <see cref="T:System.Collections.Comparer" /> that is associated with the <see cref="P:System.Threading.Thread.CurrentCulture" /> of the current thread. This field is read-only.</summary>
+ </member>
+ <member name="F:System.Collections.Comparer.DefaultInvariant">
+ <summary>Represents an instance of <see cref="T:System.Collections.Comparer" /> that is associated with <see cref="P:System.Globalization.CultureInfo.InvariantCulture" />. This field is read-only.</summary>
+ </member>
+ <member name="M:System.Collections.Comparer.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the data required for serialization.</summary>
+ <param name="info">The object to populate with data.</param>
+ <param name="context">The context information about the source or destination of the serialization.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="info" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="T:System.Collections.Hashtable">
+ <summary>Represents a collection of key/value pairs that are organized based on the hash code of the key.</summary>
+ </member>
+ <member name="M:System.Collections.Hashtable.#ctor">
+ <summary>Initializes a new, empty instance of the <see cref="T:System.Collections.Hashtable" /> class using the default initial capacity, load factor, hash code provider, and comparer.</summary>
+ </member>
+ <member name="M:System.Collections.Hashtable.#ctor(System.Collections.IDictionary)">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Hashtable" /> class by copying the elements from the specified dictionary to the new <see cref="T:System.Collections.Hashtable" /> object. The new <see cref="T:System.Collections.Hashtable" /> object has an initial capacity equal to the number of elements copied, and uses the default load factor, hash code provider, and comparer.</summary>
+ <param name="d">The <see cref="T:System.Collections.IDictionary" /> object to copy to a new <see cref="T:System.Collections.Hashtable" /> object.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="d" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Collections.Hashtable.#ctor(System.Collections.IDictionary,System.Collections.IEqualityComparer)">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Hashtable" /> class by copying the elements from the specified dictionary to a new <see cref="T:System.Collections.Hashtable" /> object. The new <see cref="T:System.Collections.Hashtable" /> object has an initial capacity equal to the number of elements copied, and uses the default load factor and the specified <see cref="T:System.Collections.IEqualityComparer" /> object.</summary>
+ <param name="d">The <see cref="T:System.Collections.IDictionary" /> object to copy to a new <see cref="T:System.Collections.Hashtable" /> object.</param>
+ <param name="equalityComparer">The <see cref="T:System.Collections.IEqualityComparer" /> object that defines the hash code provider and the comparer to use with the <see cref="T:System.Collections.Hashtable" />.
+-or-
+<see langword="null" /> to use the default hash code provider and the default comparer. The default hash code provider is each key's implementation of <see cref="M:System.Object.GetHashCode" /> and the default comparer is each key's implementation of <see cref="M:System.Object.Equals(System.Object)" />.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="d" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Collections.Hashtable.#ctor(System.Collections.IDictionary,System.Collections.IHashCodeProvider,System.Collections.IComparer)">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Hashtable" /> class by copying the elements from the specified dictionary to the new <see cref="T:System.Collections.Hashtable" /> object. The new <see cref="T:System.Collections.Hashtable" /> object has an initial capacity equal to the number of elements copied, and uses the default load factor, and the specified hash code provider and comparer. This API is obsolete. For an alternative, see <see cref="M:System.Collections.Hashtable.#ctor(System.Collections.IDictionary,System.Collections.IEqualityComparer)" />.</summary>
+ <param name="d">The <see cref="T:System.Collections.IDictionary" /> object to copy to a new <see cref="T:System.Collections.Hashtable" /> object.</param>
+ <param name="hcp">The <see cref="T:System.Collections.IHashCodeProvider" /> object that supplies the hash codes for all keys in the <see cref="T:System.Collections.Hashtable" />.
+-or-
+<see langword="null" /> to use the default hash code provider, which is each key's implementation of <see cref="M:System.Object.GetHashCode" />.</param>
+ <param name="comparer">The <see cref="T:System.Collections.IComparer" /> object to use to determine whether two keys are equal.
+-or-
+<see langword="null" /> to use the default comparer, which is each key's implementation of <see cref="M:System.Object.Equals(System.Object)" />.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="d" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Collections.Hashtable.#ctor(System.Collections.IDictionary,System.Single)">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Hashtable" /> class by copying the elements from the specified dictionary to the new <see cref="T:System.Collections.Hashtable" /> object. The new <see cref="T:System.Collections.Hashtable" /> object has an initial capacity equal to the number of elements copied, and uses the specified load factor, and the default hash code provider and comparer.</summary>
+ <param name="d">The <see cref="T:System.Collections.IDictionary" /> object to copy to a new <see cref="T:System.Collections.Hashtable" /> object.</param>
+ <param name="loadFactor">A number in the range from 0.1 through 1.0 that is multiplied by the default value which provides the best performance. The result is the maximum ratio of elements to buckets.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="d" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="loadFactor" /> is less than 0.1.
+-or-
+<paramref name="loadFactor" /> is greater than 1.0.</exception>
+ </member>
+ <member name="M:System.Collections.Hashtable.#ctor(System.Collections.IDictionary,System.Single,System.Collections.IEqualityComparer)">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Hashtable" /> class by copying the elements from the specified dictionary to the new <see cref="T:System.Collections.Hashtable" /> object. The new <see cref="T:System.Collections.Hashtable" /> object has an initial capacity equal to the number of elements copied, and uses the specified load factor and <see cref="T:System.Collections.IEqualityComparer" /> object.</summary>
+ <param name="d">The <see cref="T:System.Collections.IDictionary" /> object to copy to a new <see cref="T:System.Collections.Hashtable" /> object.</param>
+ <param name="loadFactor">A number in the range from 0.1 through 1.0 that is multiplied by the default value which provides the best performance. The result is the maximum ratio of elements to buckets.</param>
+ <param name="equalityComparer">The <see cref="T:System.Collections.IEqualityComparer" /> object that defines the hash code provider and the comparer to use with the <see cref="T:System.Collections.Hashtable" />.
+-or-
+<see langword="null" /> to use the default hash code provider and the default comparer. The default hash code provider is each key's implementation of <see cref="M:System.Object.GetHashCode" /> and the default comparer is each key's implementation of <see cref="M:System.Object.Equals(System.Object)" />.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="d" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="loadFactor" /> is less than 0.1.
+-or-
+<paramref name="loadFactor" /> is greater than 1.0.</exception>
+ </member>
+ <member name="M:System.Collections.Hashtable.#ctor(System.Collections.IDictionary,System.Single,System.Collections.IHashCodeProvider,System.Collections.IComparer)">
+ <summary>Initializes a new instance of the <see cref="T:System.Collections.Hashtable" /> class by copying the elements from the specified dictionary to the new <see cref="T:System.Collections.Hashtable" /> object. The new <see cref="T:System.Collections.Hashtable" /> object has an initial capacity equal to the number of elements copied, and uses the specified load factor, hash code provider, and comparer.</summary>
+ <param name="d">The <see cref="T:System.Collections.IDictionary" /> object to copy to a new <see cref="T:System.Collections.Hashtable" /> object.</param>
+ <param name="loadFactor">A number in the range from 0.1 through 1.0 that is multiplied by the default value which provides the best performance. The result is the maximum ratio of elements to buckets.</param>
+ <param name="hcp">The <see cref="T:System.Collections.IHashCodeProvider" /> object that supplies the hash codes for all keys in the <see cref="T:System.Collections.Hashtable" />.
+-or-
+<see langword="null" /> to use the default hash code provider, which is each key's implementation of <see cref="M:System.Object.GetHashCode" />.</param>
+ <param name="comparer">The <see cref="T:System.Collections.IComparer" /> object to use to determine whether two keys are equal.
+-or-
+<see langword="null" /> to use the default comparer, which is each key's implementation of <see cref="M:System.Object.Equals(System.Object)" />.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="d" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="loadFactor" /> is less than 0.1.
+-or-
+<paramref name="loadFactor" /> is greater than 1.0.</exception>
+ </member>
+ <member name="M:System.Collections.Hashtable.#ctor(System.Collections.IEqualityComparer)">
+ <summary>Initializes a new, empty instance of the <see cref="T:System.Collections.Hashtable" /> class using the default initial capacity and load factor, and the specified <see cref="T:System.Collections.IEqualityComparer" /> object.</summary>
+ <param name="equalityComparer">The <see cref="T:System.Collections.IEqualityComparer" /> object that defines the hash code provider and the comparer to use with the <see cref="T:System.Collections.Hashtable" /> object.
+-or-
+<see langword="null" /> to use the default hash code provider and the default comparer. The default hash code provider is each key's implementation of <see cref="M:System.Object.GetHashCode" /> and the default comparer is each key's implementation of <see cref="M:System.Object.Equals(System.Object)" />.</param>
+ </member>
+ <member name="M:System.Collections.Hashtable.#ctor(System.Collections.IHashCodeProvider,System.Collections.IComparer)">
+ <summary>Initializes a new, empty instance of the <see cref="T:System.Collections.Hashtable" /> class using the default initial capacity and load factor, and the specified hash code provider and comparer.</summary>
+ <param name="hcp">The <see cref="T:System.Collections.IHashCodeProvider" /> object that supplies the hash codes for all keys in the <see cref="T:System.Collections.Hashtable" /> object.
+-or-
+<see langword="null" /> to use the default hash code provider, which is each key's implementation of <see cref="M:System.Object.GetHashCode" />.</param>
+ <param name="comparer">The <see cref="T:System.Collections.IComparer" /> object to use to determine whether two keys are equal.
+-or-
+<see langword="null" /> to use the default comparer, which is each key's implementation of <see cref="M:System.Object.Equals(System.Object)" />.</param>
+ </member>
+ <member name="M:System.Collections.Hashtable.#ctor(System.Int32)">
+ <summary>Initializes a new, empty instance of the <see cref="T:System.Collections.Hashtable" /> class using the specified initial capacity, and the default load factor, hash code provider, and comparer.</summary>
+ <param name="capacity">The approximate number of elements that the <see cref="T:System.Collections.Hashtable" /> object can initially contain.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="capacity" /> is less than zero.</exception>
+ </member>
+ <member name="M:System.Collections.Hashtable.#ctor(System.Int32,System.Collections.IEqualityComparer)">
+ <summary>Initializes a new, empty instance of the <see cref="T:System.Collections.Hashtable" /> class using the specified initial capacity and <see cref="T:System.Collections.IEqualityComparer" />, and the default load factor.</summary>
+ <param name="capacity">The approximate number of elements that the <see cref="T:System.Collections.Hashtable" /> object can initially contain.</param>
+ <param name="equalityComparer">The <see cref="T:System.Collections.IEqualityComparer" /> object that defines the hash code provider and the comparer to use with the <see cref="T:System.Collections.Hashtable" />.
+-or-
+<see langword="null" /> to use the default hash code provider and the default comparer. The default hash code provider is each key's implementation of <see cref="M:System.Object.GetHashCode" /> and the default comparer is each key's implementation of <see cref="M:System.Object.Equals(System.Object)" />.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="capacity" /> is less than zero.</exception>
+ </member>
+ <member name="M:System.Collections.Hashtable.#ctor(System.Int32,System.Collections.IHashCodeProvider,System.Collections.IComparer)">
+ <summary>Initializes a new, empty instance of the <see cref="T:System.Collections.Hashtable" /> class using the specified initial capacity, hash code provider, comparer, and the default load factor.</summary>
+ <param name="capacity">The approximate number of elements that the <see cref="T:System.Collections.Hashtable" /> object can initially contain.</param>
+ <param name="hcp">The <see cref="T:System.Collections.IHashCodeProvider" /> object that supplies the hash codes for all keys in the <see cref="T:System.Collections.Hashtable" />.
+-or-
+<see langword="null" /> to use the default hash code provider, which is each key's implementation of <see cref="M:System.Object.GetHashCode" />.</param>
+ <param name="comparer">The <see cref="T:System.Collections.IComparer" /> object to use to determine whether two keys are equal.
+-or-
+<see langword="null" /> to use the default comparer, which is each key's implementation of <see cref="M:System.Object.Equals(System.Object)" />.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="capacity" /> is less than zero.</exception>
+ </member>
+ <member name="M:System.Collections.Hashtable.#ctor(System.Int32,System.Single)">
+ <summary>Initializes a new, empty instance of the <see cref="T:System.Collections.Hashtable" /> class using the specified initial capacity and load factor, and the default hash code provider and comparer.</summary>
+ <param name="capacity">The approximate number of elements that the <see cref="T:System.Collections.Hashtable" /> object can initially contain.</param>
+ <param name="loadFactor">A number in the range from 0.1 through 1.0 that is multiplied by the default value which provides the best performance. The result is the maximum ratio of elements to buckets.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="capacity" /> is less than zero.
+-or-
+<paramref name="loadFactor" /> is less than 0.1.
+-or-
+<paramref name="loadFactor" /> is greater than 1.0.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="capacity" /> is causing an overflow.</exception>
+ </member>
+ <member name="M:System.Collections.Hashtable.#ctor(System.Int32,System.Single,System.Collections.IEqualityComparer)">
+ <summary>Initializes a new, empty instance of the <see cref="T:System.Collections.Hashtable" /> class using the specified initial capacity, load factor, and <see cref="T:System.Collections.IEqualityComparer" /> object.</summary>
+ <param name="capacity">The approximate number of elements that the <see cref="T:System.Collections.Hashtable" /> object can initially contain.</param>
+ <param name="loadFactor">A number in the range from 0.1 through 1.0 that is multiplied by the default value which provides the best performance. The result is the maximum ratio of elements to buckets.</param>
+ <param name="equalityComparer">The <see cref="T:System.Collections.IEqualityComparer" /> object that defines the hash code provider and the comparer to use with the <see cref="T:System.Collections.Hashtable" />.
+-or-
+<see langword="null" /> to use the default hash code provider and the default comparer. The default hash code provider is each key's implementation of <see cref="M:System.Object.GetHashCode" /> and the default comparer is each key's implementation of <see cref="M:System.Object.Equals(System.Object)" />.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="capacity" /> is less than zero.
+-or-
+<paramref name="loadFactor" /> is less than 0.1.
+-or-
+<paramref name="loadFactor" /> is greater than 1.0.</exception>
+ </member>
+ <member name="M:System.Collections.Hashtable.#ctor(System.Int32,System.Single,System.Collections.IHashCodeProvider,System.Collections.IComparer)">
+ <summary>Initializes a new, empty instance of the <see cref="T:System.Collections.Hashtable" /> class using the specified initial capacity, load factor, hash code provider, and comparer.</summary>
+ <param name="capacity">The approximate number of elements that the <see cref="T:System.Collections.Hashtable" /> object can initially contain.</param>
+ <param name="loadFactor">A number in the range from 0.1 through 1.0 that is multiplied by the default value which provides the best performance. The result is the maximum ratio of elements to buckets.</param>
+ <param name="hcp">The <see cref="T:System.Collections.IHashCodeProvider" /> object that supplies the hash codes for all keys in the <see cref="T:System.Collections.Hashtable" />.
+-or-
+<see langword="null" /> to use the default hash code provider, which is each key's implementation of <see cref="M:System.Object.GetHashCode" />.</param>
+ <param name="comparer">The <see cref="T:System.Collections.IComparer" /> object to use to determine whether two keys are equal.
+-or-
+<see langword="null" /> to use the default comparer, which is each key's implementation of <see cref="M:System.Object.Equals(System.Object)" />.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="capacity" /> is less than zero.
+-or-
+<paramref name="loadFactor" /> is less than 0.1.
+-or-
+<paramref name="loadFactor" /> is greater than 1.0.</exception>
+ </member>
+ <member name="M:System.Collections.Hashtable.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new, empty instance of the <see cref="T:System.Collections.Hashtable" /> class that is serializable using the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> objects.</summary>
+ <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object containing the information required to serialize the <see cref="T:System.Collections.Hashtable" /> object.</param>
+ <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object containing the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Hashtable" />.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="info" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Collections.Hashtable.Add(System.Object,System.Object)">
+ <summary>Adds an element with the specified key and value into the <see cref="T:System.Collections.Hashtable" />.</summary>
+ <param name="key">The key of the element to add.</param>
+ <param name="value">The value of the element to add. The value can be <see langword="null" />.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="key" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">An element with the same key already exists in the <see cref="T:System.Collections.Hashtable" />.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Hashtable" /> is read-only.
+-or-
+The <see cref="T:System.Collections.Hashtable" /> has a fixed size.</exception>
+ </member>
+ <member name="M:System.Collections.Hashtable.Clear">
+ <summary>Removes all elements from the <see cref="T:System.Collections.Hashtable" />.</summary>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Hashtable" /> is read-only.</exception>
+ </member>
+ <member name="M:System.Collections.Hashtable.Clone">
+ <summary>Creates a shallow copy of the <see cref="T:System.Collections.Hashtable" />.</summary>
+ <returns>A shallow copy of the <see cref="T:System.Collections.Hashtable" />.</returns>
+ </member>
+ <member name="P:System.Collections.Hashtable.comparer">
+ <summary>Gets or sets the <see cref="T:System.Collections.IComparer" /> to use for the <see cref="T:System.Collections.Hashtable" />.</summary>
+ <returns>The <see cref="T:System.Collections.IComparer" /> to use for the <see cref="T:System.Collections.Hashtable" />.</returns>
+ <exception cref="T:System.ArgumentException">The property is set to a value, but the hash table was created using an <see cref="T:System.Collections.IEqualityComparer" />.</exception>
+ </member>
+ <member name="M:System.Collections.Hashtable.Contains(System.Object)">
+ <summary>Determines whether the <see cref="T:System.Collections.Hashtable" /> contains a specific key.</summary>
+ <param name="key">The key to locate in the <see cref="T:System.Collections.Hashtable" />.</param>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Collections.Hashtable" /> contains an element with the specified key; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="key" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Collections.Hashtable.ContainsKey(System.Object)">
+ <summary>Determines whether the <see cref="T:System.Collections.Hashtable" /> contains a specific key.</summary>
+ <param name="key">The key to locate in the <see cref="T:System.Collections.Hashtable" />.</param>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Collections.Hashtable" /> contains an element with the specified key; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="key" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Collections.Hashtable.ContainsValue(System.Object)">
+ <summary>Determines whether the <see cref="T:System.Collections.Hashtable" /> contains a specific value.</summary>
+ <param name="value">The value to locate in the <see cref="T:System.Collections.Hashtable" />. The value can be <see langword="null" />.</param>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Collections.Hashtable" /> contains an element with the specified <paramref name="value" />; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Collections.Hashtable.CopyTo(System.Array,System.Int32)">
+ <summary>Copies the <see cref="T:System.Collections.Hashtable" /> elements to a one-dimensional <see cref="T:System.Array" /> instance at the specified index.</summary>
+ <param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the <see cref="T:System.Collections.DictionaryEntry" /> objects copied from <see cref="T:System.Collections.Hashtable" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
+ <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="array" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="arrayIndex" /> is less than zero.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="array" /> is multidimensional.
+-or-
+The number of elements in the source <see cref="T:System.Collections.Hashtable" /> is greater than the available space from <paramref name="arrayIndex" /> to the end of the destination <paramref name="array" />.</exception>
+ <exception cref="T:System.InvalidCastException">The type of the source <see cref="T:System.Collections.Hashtable" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
+ </member>
+ <member name="P:System.Collections.Hashtable.Count">
+ <summary>Gets the number of key/value pairs contained in the <see cref="T:System.Collections.Hashtable" />.</summary>
+ <returns>The number of key/value pairs contained in the <see cref="T:System.Collections.Hashtable" />.</returns>
+ </member>
+ <member name="P:System.Collections.Hashtable.EqualityComparer">
+ <summary>Gets the <see cref="T:System.Collections.IEqualityComparer" /> to use for the <see cref="T:System.Collections.Hashtable" />.</summary>
+ <returns>The <see cref="T:System.Collections.IEqualityComparer" /> to use for the <see cref="T:System.Collections.Hashtable" />.</returns>
+ <exception cref="T:System.ArgumentException">The property is set to a value, but the hash table was created using an <see cref="T:System.Collections.IHashCodeProvider" /> and an <see cref="T:System.Collections.IComparer" />.</exception>
+ </member>
+ <member name="M:System.Collections.Hashtable.GetEnumerator">
+ <summary>Returns an <see cref="T:System.Collections.IDictionaryEnumerator" /> that iterates through the <see cref="T:System.Collections.Hashtable" />.</summary>
+ <returns>An <see cref="T:System.Collections.IDictionaryEnumerator" /> for the <see cref="T:System.Collections.Hashtable" />.</returns>
+ </member>
+ <member name="M:System.Collections.Hashtable.GetHash(System.Object)">
+ <summary>Returns the hash code for the specified key.</summary>
+ <param name="key">The <see cref="T:System.Object" /> for which a hash code is to be returned.</param>
+ <returns>The hash code for <paramref name="key" />.</returns>
+ <exception cref="T:System.NullReferenceException">
+ <paramref name="key" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Collections.Hashtable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and returns the data needed to serialize the <see cref="T:System.Collections.Hashtable" />.</summary>
+ <param name="info">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object containing the information required to serialize the <see cref="T:System.Collections.Hashtable" />.</param>
+ <param name="context">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object containing the source and destination of the serialized stream associated with the <see cref="T:System.Collections.Hashtable" />.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="info" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The collection was modified.</exception>
+ </member>
+ <member name="P:System.Collections.Hashtable.hcp">
+ <summary>Gets or sets the object that can dispense hash codes.</summary>
+ <returns>The object that can dispense hash codes.</returns>
+ <exception cref="T:System.ArgumentException">The property is set to a value, but the hash table was created using an <see cref="T:System.Collections.IEqualityComparer" />.</exception>
+ </member>
+ <member name="P:System.Collections.Hashtable.IsFixedSize">
+ <summary>Gets a value indicating whether the <see cref="T:System.Collections.Hashtable" /> has a fixed size.</summary>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Collections.Hashtable" /> has a fixed size; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Collections.Hashtable.IsReadOnly">
+ <summary>Gets a value indicating whether the <see cref="T:System.Collections.Hashtable" /> is read-only.</summary>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Collections.Hashtable" /> is read-only; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Collections.Hashtable.IsSynchronized">
+ <summary>Gets a value indicating whether access to the <see cref="T:System.Collections.Hashtable" /> is synchronized (thread safe).</summary>
+ <returns>
+ <see langword="true" /> if access to the <see cref="T:System.Collections.Hashtable" /> is synchronized (thread safe); otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Collections.Hashtable.Item(System.Object)">
+ <summary>Gets or sets the value associated with the specified key.</summary>
+ <param name="key">The key whose value to get or set.</param>
+ <returns>The value associated with the specified key. If the specified key is not found, attempting to get it returns <see langword="null" />, and attempting to set it creates a new element using the specified key.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="key" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.NotSupportedException">The property is set and the <see cref="T:System.Collections.Hashtable" /> is read-only.
+-or-
+The property is set, <paramref name="key" /> does not exist in the collection, and the <see cref="T:System.Collections.Hashtable" /> has a fixed size.</exception>
+ </member>
+ <member name="M:System.Collections.Hashtable.KeyEquals(System.Object,System.Object)">
+ <summary>Compares a specific <see cref="T:System.Object" /> with a specific key in the <see cref="T:System.Collections.Hashtable" />.</summary>
+ <param name="item">The <see cref="T:System.Object" /> to compare with <paramref name="key" />.</param>
+ <param name="key">The key in the <see cref="T:System.Collections.Hashtable" /> to compare with <paramref name="item" />.</param>
+ <returns>
+ <see langword="true" /> if <paramref name="item" /> and <paramref name="key" /> are equal; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="item" /> is <see langword="null" />.
+-or-
+<paramref name="key" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="P:System.Collections.Hashtable.Keys">
+ <summary>Gets an <see cref="T:System.Collections.ICollection" /> containing the keys in the <see cref="T:System.Collections.Hashtable" />.</summary>
+ <returns>An <see cref="T:System.Collections.ICollection" /> containing the keys in the <see cref="T:System.Collections.Hashtable" />.</returns>
+ </member>
+ <member name="M:System.Collections.Hashtable.OnDeserialization(System.Object)">
+ <summary>Implements the <see cref="T:System.Runtime.Serialization.ISerializable" /> interface and raises the deserialization event when the deserialization is complete.</summary>
+ <param name="sender">The source of the deserialization event.</param>
+ <exception cref="T:System.Runtime.Serialization.SerializationException">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object associated with the current <see cref="T:System.Collections.Hashtable" /> is invalid.</exception>
+ </member>
+ <member name="M:System.Collections.Hashtable.Remove(System.Object)">
+ <summary>Removes the element with the specified key from the <see cref="T:System.Collections.Hashtable" />.</summary>
+ <param name="key">The key of the element to remove.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="key" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Hashtable" /> is read-only.
+-or-
+The <see cref="T:System.Collections.Hashtable" /> has a fixed size.</exception>
+ </member>
+ <member name="M:System.Collections.Hashtable.Synchronized(System.Collections.Hashtable)">
+ <summary>Returns a synchronized (thread-safe) wrapper for the <see cref="T:System.Collections.Hashtable" />.</summary>
+ <param name="table">The <see cref="T:System.Collections.Hashtable" /> to synchronize.</param>
+ <returns>A synchronized (thread-safe) wrapper for the <see cref="T:System.Collections.Hashtable" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="table" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="P:System.Collections.Hashtable.SyncRoot">
+ <summary>Gets an object that can be used to synchronize access to the <see cref="T:System.Collections.Hashtable" />.</summary>
+ <returns>An object that can be used to synchronize access to the <see cref="T:System.Collections.Hashtable" />.</returns>
+ </member>
+ <member name="M:System.Collections.Hashtable.System#Collections#IEnumerable#GetEnumerator">
+ <summary>Returns an enumerator that iterates through a collection.</summary>
+ <returns>An <see cref="T:System.Collections.IEnumerator" /> that can be used to iterate through the collection.</returns>
+ </member>
+ <member name="P:System.Collections.Hashtable.Values">
+ <summary>Gets an <see cref="T:System.Collections.ICollection" /> containing the values in the <see cref="T:System.Collections.Hashtable" />.</summary>
+ <returns>An <see cref="T:System.Collections.ICollection" /> containing the values in the <see cref="T:System.Collections.Hashtable" />.</returns>
+ </member>
+ <member name="T:System.Collections.IHashCodeProvider">
+ <summary>Supplies a hash code for an object, using a custom hash function.</summary>
+ </member>
+ <member name="M:System.Collections.IHashCodeProvider.GetHashCode(System.Object)">
+ <summary>Returns a hash code for the specified object.</summary>
+ <param name="obj">The <see cref="T:System.Object" /> for which a hash code is to be returned.</param>
+ <returns>A hash code for the specified object.</returns>
+ <exception cref="T:System.ArgumentNullException">The type of <paramref name="obj" /> is a reference type and <paramref name="obj" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="T:System.ContextBoundObject">
+ <summary>Defines the base class for all context-bound classes.</summary>
+ </member>
+ <member name="M:System.ContextBoundObject.#ctor">
+ <summary>Instantiates an instance of the <see cref="T:System.ContextBoundObject" /> class.</summary>
+ </member>
+ <member name="T:System.ContextMarshalException">
+ <summary>The exception that is thrown when an attempt to marshal an object across a context boundary fails.</summary>
+ </member>
+ <member name="M:System.ContextMarshalException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.ContextMarshalException" /> class with default properties.</summary>
+ </member>
+ <member name="M:System.ContextMarshalException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.ContextMarshalException" /> class with serialized data.</summary>
+ <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
+ <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
+ </member>
+ <member name="M:System.ContextMarshalException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.ContextMarshalException" /> class with a specified error message.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ </member>
+ <member name="M:System.ContextMarshalException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.ContextMarshalException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="inner">The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
+ </member>
+ <member name="T:System.ContextStaticAttribute">
+ <summary>Indicates that the value of a static field is unique for a particular context.</summary>
+ </member>
+ <member name="M:System.ContextStaticAttribute.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.ContextStaticAttribute" /> class.</summary>
+ </member>
+ <member name="T:System.Convert">
+ <summary>Converts a base data type to another base data type.</summary>
+ </member>
+ <member name="M:System.Convert.ChangeType(System.Object,System.Type)">
+ <summary>Returns an object of the specified type and whose value is equivalent to the specified object.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
+ <param name="conversionType">The type of object to return.</param>
+ <returns>An object whose type is <paramref name="conversionType" /> and whose value is equivalent to <paramref name="value" />.
+-or-
+A null reference (<see langword="Nothing" /> in Visual Basic), if <paramref name="value" /> is <see langword="null" /> and <paramref name="conversionType" /> is not a value type.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.
+-or-
+<paramref name="value" /> is <see langword="null" /> and <paramref name="conversionType" /> is a value type.
+-or-
+<paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in a format recognized by <paramref name="conversionType" />.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is out of the range of <paramref name="conversionType" />.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="conversionType" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Convert.ChangeType(System.Object,System.Type,System.IFormatProvider)">
+ <summary>Returns an object of the specified type whose value is equivalent to the specified object. A parameter supplies culture-specific formatting information.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
+ <param name="conversionType">The type of object to return.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>An object whose type is <paramref name="conversionType" /> and whose value is equivalent to <paramref name="value" />.
+-or-
+<paramref name="value" />, if the <see cref="T:System.Type" /> of <paramref name="value" /> and <paramref name="conversionType" /> are equal.
+-or-
+A null reference (<see langword="Nothing" /> in Visual Basic), if <paramref name="value" /> is <see langword="null" /> and <paramref name="conversionType" /> is not a value type.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.
+-or-
+<paramref name="value" /> is <see langword="null" /> and <paramref name="conversionType" /> is a value type.
+-or-
+<paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in a format for <paramref name="conversionType" /> recognized by <paramref name="provider" />.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is out of the range of <paramref name="conversionType" />.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="conversionType" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Convert.ChangeType(System.Object,System.TypeCode)">
+ <summary>Returns an object of the specified type whose value is equivalent to the specified object.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
+ <param name="typeCode">The type of object to return.</param>
+ <returns>An object whose underlying type is <paramref name="typeCode" /> and whose value is equivalent to <paramref name="value" />.
+-or-
+A null reference (<see langword="Nothing" /> in Visual Basic), if <paramref name="value" /> is <see langword="null" /> and <paramref name="typeCode" /> is <see cref="F:System.TypeCode.Empty" />, <see cref="F:System.TypeCode.String" />, or <see cref="F:System.TypeCode.Object" />.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.
+-or-
+<paramref name="value" /> is <see langword="null" /> and <paramref name="typeCode" /> specifies a value type.
+-or-
+<paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in a format recognized by the <paramref name="typeCode" /> type.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is out of the range of the <paramref name="typeCode" /> type.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="typeCode" /> is invalid.</exception>
+ </member>
+ <member name="M:System.Convert.ChangeType(System.Object,System.TypeCode,System.IFormatProvider)">
+ <summary>Returns an object of the specified type whose value is equivalent to the specified object. A parameter supplies culture-specific formatting information.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
+ <param name="typeCode">The type of object to return.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>An object whose underlying type is <paramref name="typeCode" /> and whose value is equivalent to <paramref name="value" />.
+-or-
+A null reference (<see langword="Nothing" /> in Visual Basic), if <paramref name="value" /> is <see langword="null" /> and <paramref name="typeCode" /> is <see cref="F:System.TypeCode.Empty" />, <see cref="F:System.TypeCode.String" />, or <see cref="F:System.TypeCode.Object" />.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.
+-or-
+<paramref name="value" /> is <see langword="null" /> and <paramref name="typeCode" /> specifies a value type.
+-or-
+<paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in a format for the <paramref name="typeCode" /> type recognized by <paramref name="provider" />.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is out of the range of the <paramref name="typeCode" /> type.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="typeCode" /> is invalid.</exception>
+ </member>
+ <member name="F:System.Convert.DBNull">
+ <summary>A constant that represents a database column that is absent of data; that is, database null.</summary>
+ </member>
+ <member name="M:System.Convert.FromBase64CharArray(System.Char[],System.Int32,System.Int32)">
+ <summary>Converts a subset of a Unicode character array, which encodes binary data as base-64 digits, to an equivalent 8-bit unsigned integer array. Parameters specify the subset in the input array and the number of elements to convert.</summary>
+ <param name="inArray">A Unicode character array.</param>
+ <param name="offset">A position within <paramref name="inArray" />.</param>
+ <param name="length">The number of elements in <paramref name="inArray" /> to convert.</param>
+ <returns>An array of 8-bit unsigned integers equivalent to <paramref name="length" /> elements at position <paramref name="offset" /> in <paramref name="inArray" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="inArray" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="offset" /> or <paramref name="length" /> is less than 0.
+-or-
+<paramref name="offset" /> plus <paramref name="length" /> indicates a position not within <paramref name="inArray" />.</exception>
+ <exception cref="T:System.FormatException">The length of <paramref name="inArray" />, ignoring white-space characters, is not zero or a multiple of 4.
+-or-
+The format of <paramref name="inArray" /> is invalid. <paramref name="inArray" /> contains a non-base-64 character, more than two padding characters, or a non-white-space character among the padding characters.</exception>
+ </member>
+ <member name="M:System.Convert.FromBase64String(System.String)">
+ <summary>Converts the specified string, which encodes binary data as base-64 digits, to an equivalent 8-bit unsigned integer array.</summary>
+ <param name="s">The string to convert.</param>
+ <returns>An array of 8-bit unsigned integers that is equivalent to <paramref name="s" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="s" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.FormatException">The length of <paramref name="s" />, ignoring white-space characters, is not zero or a multiple of 4.
+-or-
+The format of <paramref name="s" /> is invalid. <paramref name="s" /> contains a non-base-64 character, more than two padding characters, or a non-white space-character among the padding characters.</exception>
+ </member>
+ <member name="M:System.Convert.GetTypeCode(System.Object)">
+ <summary>Returns the <see cref="T:System.TypeCode" /> for the specified object.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
+ <returns>The <see cref="T:System.TypeCode" /> for <paramref name="value" />, or <see cref="F:System.TypeCode.Empty" /> if <paramref name="value" /> is <see langword="null" />.</returns>
+ </member>
+ <member name="M:System.Convert.IsDBNull(System.Object)">
+ <summary>Returns an indication whether the specified object is of type <see cref="T:System.DBNull" />.</summary>
+ <param name="value">An object.</param>
+ <returns>
+ <see langword="true" /> if <paramref name="value" /> is of type <see cref="T:System.DBNull" />; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToBase64CharArray(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32)">
+ <summary>Converts a subset of an 8-bit unsigned integer array to an equivalent subset of a Unicode character array encoded with base-64 digits. Parameters specify the subsets as offsets in the input and output arrays, and the number of elements in the input array to convert.</summary>
+ <param name="inArray">An input array of 8-bit unsigned integers.</param>
+ <param name="offsetIn">A position within <paramref name="inArray" />.</param>
+ <param name="length">The number of elements of <paramref name="inArray" /> to convert.</param>
+ <param name="outArray">An output array of Unicode characters.</param>
+ <param name="offsetOut">A position within <paramref name="outArray" />.</param>
+ <returns>A 32-bit signed integer containing the number of bytes in <paramref name="outArray" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="inArray" /> or <paramref name="outArray" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="offsetIn" />, <paramref name="offsetOut" />, or <paramref name="length" /> is negative.
+-or-
+<paramref name="offsetIn" /> plus <paramref name="length" /> is greater than the length of <paramref name="inArray" />.
+-or-
+<paramref name="offsetOut" /> plus the number of elements to return is greater than the length of <paramref name="outArray" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToBase64CharArray(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Base64FormattingOptions)">
+ <summary>Converts a subset of an 8-bit unsigned integer array to an equivalent subset of a Unicode character array encoded with base-64 digits. Parameters specify the subsets as offsets in the input and output arrays, the number of elements in the input array to convert, and whether line breaks are inserted in the output array.</summary>
+ <param name="inArray">An input array of 8-bit unsigned integers.</param>
+ <param name="offsetIn">A position within <paramref name="inArray" />.</param>
+ <param name="length">The number of elements of <paramref name="inArray" /> to convert.</param>
+ <param name="outArray">An output array of Unicode characters.</param>
+ <param name="offsetOut">A position within <paramref name="outArray" />.</param>
+ <param name="options">
+ <see cref="F:System.Base64FormattingOptions.InsertLineBreaks" /> to insert a line break every 76 characters, or <see cref="F:System.Base64FormattingOptions.None" /> to not insert line breaks.</param>
+ <returns>A 32-bit signed integer containing the number of bytes in <paramref name="outArray" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="inArray" /> or <paramref name="outArray" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="offsetIn" />, <paramref name="offsetOut" />, or <paramref name="length" /> is negative.
+-or-
+<paramref name="offsetIn" /> plus <paramref name="length" /> is greater than the length of <paramref name="inArray" />.
+-or-
+<paramref name="offsetOut" /> plus the number of elements to return is greater than the length of <paramref name="outArray" />.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="options" /> is not a valid <see cref="T:System.Base64FormattingOptions" /> value.</exception>
+ </member>
+ <member name="M:System.Convert.ToBase64String(System.Byte[])">
+ <summary>Converts an array of 8-bit unsigned integers to its equivalent string representation that is encoded with base-64 digits.</summary>
+ <param name="inArray">An array of 8-bit unsigned integers.</param>
+ <returns>The string representation, in base 64, of the contents of <paramref name="inArray" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="inArray" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToBase64String(System.Byte[],System.Base64FormattingOptions)">
+ <summary>Converts an array of 8-bit unsigned integers to its equivalent string representation that is encoded with base-64 digits. A parameter specifies whether to insert line breaks in the return value.</summary>
+ <param name="inArray">An array of 8-bit unsigned integers.</param>
+ <param name="options">
+ <see cref="F:System.Base64FormattingOptions.InsertLineBreaks" /> to insert a line break every 76 characters, or <see cref="F:System.Base64FormattingOptions.None" /> to not insert line breaks.</param>
+ <returns>The string representation in base 64 of the elements in <paramref name="inArray" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="inArray" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="options" /> is not a valid <see cref="T:System.Base64FormattingOptions" /> value.</exception>
+ </member>
+ <member name="M:System.Convert.ToBase64String(System.Byte[],System.Int32,System.Int32)">
+ <summary>Converts a subset of an array of 8-bit unsigned integers to its equivalent string representation that is encoded with base-64 digits. Parameters specify the subset as an offset in the input array, and the number of elements in the array to convert.</summary>
+ <param name="inArray">An array of 8-bit unsigned integers.</param>
+ <param name="offset">An offset in <paramref name="inArray" />.</param>
+ <param name="length">The number of elements of <paramref name="inArray" /> to convert.</param>
+ <returns>The string representation in base 64 of <paramref name="length" /> elements of <paramref name="inArray" />, starting at position <paramref name="offset" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="inArray" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="offset" /> or <paramref name="length" /> is negative.
+-or-
+<paramref name="offset" /> plus <paramref name="length" /> is greater than the length of <paramref name="inArray" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToBase64String(System.Byte[],System.Int32,System.Int32,System.Base64FormattingOptions)">
+ <summary>Converts a subset of an array of 8-bit unsigned integers to its equivalent string representation that is encoded with base-64 digits. Parameters specify the subset as an offset in the input array, the number of elements in the array to convert, and whether to insert line breaks in the return value.</summary>
+ <param name="inArray">An array of 8-bit unsigned integers.</param>
+ <param name="offset">An offset in <paramref name="inArray" />.</param>
+ <param name="length">The number of elements of <paramref name="inArray" /> to convert.</param>
+ <param name="options">
+ <see cref="F:System.Base64FormattingOptions.InsertLineBreaks" /> to insert a line break every 76 characters, or <see cref="F:System.Base64FormattingOptions.None" /> to not insert line breaks.</param>
+ <returns>The string representation in base 64 of <paramref name="length" /> elements of <paramref name="inArray" />, starting at position <paramref name="offset" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="inArray" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="offset" /> or <paramref name="length" /> is negative.
+-or-
+<paramref name="offset" /> plus <paramref name="length" /> is greater than the length of <paramref name="inArray" />.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="options" /> is not a valid <see cref="T:System.Base64FormattingOptions" /> value.</exception>
+ </member>
+ <member name="M:System.Convert.ToBase64String(System.ReadOnlySpan{System.Byte},System.Base64FormattingOptions)">
+ <param name="bytes" />
+ <param name="options" />
+ </member>
+ <member name="M:System.Convert.ToBoolean(System.Boolean)">
+ <summary>Returns the specified Boolean value; no actual conversion is performed.</summary>
+ <param name="value">The Boolean value to return.</param>
+ <returns>
+ <paramref name="value" /> is returned unchanged.</returns>
+ </member>
+ <member name="M:System.Convert.ToBoolean(System.Byte)">
+ <summary>Converts the value of the specified 8-bit unsigned integer to an equivalent Boolean value.</summary>
+ <param name="value">The 8-bit unsigned integer to convert.</param>
+ <returns>
+ <see langword="true" /> if <paramref name="value" /> is not zero; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToBoolean(System.Char)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The Unicode character to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToBoolean(System.DateTime)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The date and time value to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToBoolean(System.Decimal)">
+ <summary>Converts the value of the specified decimal number to an equivalent Boolean value.</summary>
+ <param name="value">The number to convert.</param>
+ <returns>
+ <see langword="true" /> if <paramref name="value" /> is not zero; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToBoolean(System.Double)">
+ <summary>Converts the value of the specified double-precision floating-point number to an equivalent Boolean value.</summary>
+ <param name="value">The double-precision floating-point number to convert.</param>
+ <returns>
+ <see langword="true" /> if <paramref name="value" /> is not zero; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToBoolean(System.Int16)">
+ <summary>Converts the value of the specified 16-bit signed integer to an equivalent Boolean value.</summary>
+ <param name="value">The 16-bit signed integer to convert.</param>
+ <returns>
+ <see langword="true" /> if <paramref name="value" /> is not zero; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToBoolean(System.Int32)">
+ <summary>Converts the value of the specified 32-bit signed integer to an equivalent Boolean value.</summary>
+ <param name="value">The 32-bit signed integer to convert.</param>
+ <returns>
+ <see langword="true" /> if <paramref name="value" /> is not zero; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToBoolean(System.Int64)">
+ <summary>Converts the value of the specified 64-bit signed integer to an equivalent Boolean value.</summary>
+ <param name="value">The 64-bit signed integer to convert.</param>
+ <returns>
+ <see langword="true" /> if <paramref name="value" /> is not zero; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToBoolean(System.Object)">
+ <summary>Converts the value of a specified object to an equivalent Boolean value.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or <see langword="null" />.</param>
+ <returns>
+ <see langword="true" /> or <see langword="false" />, which reflects the value returned by invoking the <see cref="M:System.IConvertible.ToBoolean(System.IFormatProvider)" /> method for the underlying type of <paramref name="value" />. If <paramref name="value" /> is <see langword="null" />, the method returns <see langword="false" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is a string that does not equal <see cref="F:System.Boolean.TrueString" /> or <see cref="F:System.Boolean.FalseString" />.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
+-or-
+The conversion of <paramref name="value" /> to a <see cref="T:System.Boolean" /> is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToBoolean(System.Object,System.IFormatProvider)">
+ <summary>Converts the value of the specified object to an equivalent Boolean value, using the specified culture-specific formatting information.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or <see langword="null" />.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>
+ <see langword="true" /> or <see langword="false" />, which reflects the value returned by invoking the <see cref="M:System.IConvertible.ToBoolean(System.IFormatProvider)" /> method for the underlying type of <paramref name="value" />. If <paramref name="value" /> is <see langword="null" />, the method returns <see langword="false" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is a string that does not equal <see cref="F:System.Boolean.TrueString" /> or <see cref="F:System.Boolean.FalseString" />.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
+-or-
+The conversion of <paramref name="value" /> to a <see cref="T:System.Boolean" /> is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToBoolean(System.SByte)">
+ <summary>Converts the value of the specified 8-bit signed integer to an equivalent Boolean value.</summary>
+ <param name="value">The 8-bit signed integer to convert.</param>
+ <returns>
+ <see langword="true" /> if <paramref name="value" /> is not zero; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToBoolean(System.Single)">
+ <summary>Converts the value of the specified single-precision floating-point number to an equivalent Boolean value.</summary>
+ <param name="value">The single-precision floating-point number to convert.</param>
+ <returns>
+ <see langword="true" /> if <paramref name="value" /> is not zero; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToBoolean(System.String)">
+ <summary>Converts the specified string representation of a logical value to its Boolean equivalent.</summary>
+ <param name="value">A string that contains the value of either <see cref="F:System.Boolean.TrueString" /> or <see cref="F:System.Boolean.FalseString" />.</param>
+ <returns>
+ <see langword="true" /> if <paramref name="value" /> equals <see cref="F:System.Boolean.TrueString" />, or <see langword="false" /> if <paramref name="value" /> equals <see cref="F:System.Boolean.FalseString" /> or <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not equal to <see cref="F:System.Boolean.TrueString" /> or <see cref="F:System.Boolean.FalseString" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToBoolean(System.String,System.IFormatProvider)">
+ <summary>Converts the specified string representation of a logical value to its Boolean equivalent, using the specified culture-specific formatting information.</summary>
+ <param name="value">A string that contains the value of either <see cref="F:System.Boolean.TrueString" /> or <see cref="F:System.Boolean.FalseString" />.</param>
+ <param name="provider">An object that supplies culture-specific formatting information. This parameter is ignored.</param>
+ <returns>
+ <see langword="true" /> if <paramref name="value" /> equals <see cref="F:System.Boolean.TrueString" />, or <see langword="false" /> if <paramref name="value" /> equals <see cref="F:System.Boolean.FalseString" /> or <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not equal to <see cref="F:System.Boolean.TrueString" /> or <see cref="F:System.Boolean.FalseString" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToBoolean(System.UInt16)">
+ <summary>Converts the value of the specified 16-bit unsigned integer to an equivalent Boolean value.</summary>
+ <param name="value">The 16-bit unsigned integer to convert.</param>
+ <returns>
+ <see langword="true" /> if <paramref name="value" /> is not zero; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToBoolean(System.UInt32)">
+ <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent Boolean value.</summary>
+ <param name="value">The 32-bit unsigned integer to convert.</param>
+ <returns>
+ <see langword="true" /> if <paramref name="value" /> is not zero; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToBoolean(System.UInt64)">
+ <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent Boolean value.</summary>
+ <param name="value">The 64-bit unsigned integer to convert.</param>
+ <returns>
+ <see langword="true" /> if <paramref name="value" /> is not zero; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToByte(System.Boolean)">
+ <summary>Converts the specified Boolean value to the equivalent 8-bit unsigned integer.</summary>
+ <param name="value">The Boolean value to convert.</param>
+ <returns>The number 1 if <paramref name="value" /> is <see langword="true" />; otherwise, 0.</returns>
+ </member>
+ <member name="M:System.Convert.ToByte(System.Byte)">
+ <summary>Returns the specified 8-bit unsigned integer; no actual conversion is performed.</summary>
+ <param name="value">The 8-bit unsigned integer to return.</param>
+ <returns>
+ <paramref name="value" /> is returned unchanged.</returns>
+ </member>
+ <member name="M:System.Convert.ToByte(System.Char)">
+ <summary>Converts the value of the specified Unicode character to the equivalent 8-bit unsigned integer.</summary>
+ <param name="value">The Unicode character to convert.</param>
+ <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is greater than <see cref="F:System.Byte.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToByte(System.DateTime)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The date and time value to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToByte(System.Decimal)">
+ <summary>Converts the value of the specified decimal number to an equivalent 8-bit unsigned integer.</summary>
+ <param name="value">The number to convert.</param>
+ <returns>
+ <paramref name="value" />, rounded to the nearest 8-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Byte.MaxValue" /> or less than <see cref="F:System.Byte.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToByte(System.Double)">
+ <summary>Converts the value of the specified double-precision floating-point number to an equivalent 8-bit unsigned integer.</summary>
+ <param name="value">The double-precision floating-point number to convert.</param>
+ <returns>
+ <paramref name="value" />, rounded to the nearest 8-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Byte.MaxValue" /> or less than <see cref="F:System.Byte.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToByte(System.Int16)">
+ <summary>Converts the value of the specified 16-bit signed integer to an equivalent 8-bit unsigned integer.</summary>
+ <param name="value">The 16-bit signed integer to convert.</param>
+ <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToByte(System.Int32)">
+ <summary>Converts the value of the specified 32-bit signed integer to an equivalent 8-bit unsigned integer.</summary>
+ <param name="value">The 32-bit signed integer to convert.</param>
+ <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToByte(System.Int64)">
+ <summary>Converts the value of the specified 64-bit signed integer to an equivalent 8-bit unsigned integer.</summary>
+ <param name="value">The 64-bit signed integer to convert.</param>
+ <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToByte(System.Object)">
+ <summary>Converts the value of the specified object to an 8-bit unsigned integer.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or <see langword="null" />.</param>
+ <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in the property format for a <see cref="T:System.Byte" /> value.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />.
+-or-
+Conversion from <paramref name="value" /> to the <see cref="T:System.Byte" /> type is not supported.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToByte(System.Object,System.IFormatProvider)">
+ <summary>Converts the value of the specified object to an 8-bit unsigned integer, using the specified culture-specific formatting information.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in the property format for a <see cref="T:System.Byte" /> value.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />.
+-or-
+Conversion from <paramref name="value" /> to the <see cref="T:System.Byte" /> type is not supported.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToByte(System.SByte)">
+ <summary>Converts the value of the specified 8-bit signed integer to an equivalent 8-bit unsigned integer.</summary>
+ <param name="value">The 8-bit signed integer to be converted.</param>
+ <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than <see cref="F:System.Byte.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToByte(System.Single)">
+ <summary>Converts the value of the specified single-precision floating-point number to an equivalent 8-bit unsigned integer.</summary>
+ <param name="value">A single-precision floating-point number.</param>
+ <returns>
+ <paramref name="value" />, rounded to the nearest 8-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Byte.MaxValue" /> or less than <see cref="F:System.Byte.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToByte(System.String)">
+ <summary>Converts the specified string representation of a number to an equivalent 8-bit unsigned integer.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToByte(System.String,System.IFormatProvider)">
+ <summary>Converts the specified string representation of a number to an equivalent 8-bit unsigned integer, using specified culture-specific formatting information.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToByte(System.String,System.Int32)">
+ <summary>Converts the string representation of a number in a specified base to an equivalent 8-bit unsigned integer.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <param name="fromBase">The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16.</param>
+ <returns>An 8-bit unsigned integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="fromBase" /> is not 2, 8, 10, or 16.
+-or-
+<paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="value" /> is <see cref="F:System.String.Empty" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" />, which represents a base 10 unsigned number, is prefixed with a negative sign.
+-or-
+<paramref name="value" /> represents a number that is less than <see cref="F:System.Byte.MinValue" /> or greater than <see cref="F:System.Byte.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToByte(System.UInt16)">
+ <summary>Converts the value of the specified 16-bit unsigned integer to an equivalent 8-bit unsigned integer.</summary>
+ <param name="value">The 16-bit unsigned integer to convert.</param>
+ <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Byte.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToByte(System.UInt32)">
+ <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent 8-bit unsigned integer.</summary>
+ <param name="value">The 32-bit unsigned integer to convert.</param>
+ <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Byte.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToByte(System.UInt64)">
+ <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent 8-bit unsigned integer.</summary>
+ <param name="value">The 64-bit unsigned integer to convert.</param>
+ <returns>An 8-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Byte.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToChar(System.Boolean)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The Boolean value to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToChar(System.Byte)">
+ <summary>Converts the value of the specified 8-bit unsigned integer to its equivalent Unicode character.</summary>
+ <param name="value">The 8-bit unsigned integer to convert.</param>
+ <returns>A Unicode character that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToChar(System.Char)">
+ <summary>Returns the specified Unicode character value; no actual conversion is performed.</summary>
+ <param name="value">The Unicode character to return.</param>
+ <returns>
+ <paramref name="value" /> is returned unchanged.</returns>
+ </member>
+ <member name="M:System.Convert.ToChar(System.DateTime)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The date and time value to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToChar(System.Decimal)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The decimal number to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToChar(System.Double)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The double-precision floating-point number to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToChar(System.Int16)">
+ <summary>Converts the value of the specified 16-bit signed integer to its equivalent Unicode character.</summary>
+ <param name="value">The 16-bit signed integer to convert.</param>
+ <returns>A Unicode character that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than <see cref="F:System.Char.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToChar(System.Int32)">
+ <summary>Converts the value of the specified 32-bit signed integer to its equivalent Unicode character.</summary>
+ <param name="value">The 32-bit signed integer to convert.</param>
+ <returns>A Unicode character that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than <see cref="F:System.Char.MinValue" /> or greater than <see cref="F:System.Char.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToChar(System.Int64)">
+ <summary>Converts the value of the specified 64-bit signed integer to its equivalent Unicode character.</summary>
+ <param name="value">The 64-bit signed integer to convert.</param>
+ <returns>A Unicode character that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than <see cref="F:System.Char.MinValue" /> or greater than <see cref="F:System.Char.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToChar(System.Object)">
+ <summary>Converts the value of the specified object to a Unicode character.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
+ <returns>A Unicode character that is equivalent to value, or <see cref="F:System.Char.MinValue" /> if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is a null string.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
+-or-
+The conversion of <paramref name="value" /> to a <see cref="T:System.Char" /> is not supported.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than <see cref="F:System.Char.MinValue" /> or greater than <see cref="F:System.Char.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToChar(System.Object,System.IFormatProvider)">
+ <summary>Converts the value of the specified object to its equivalent Unicode character, using the specified culture-specific formatting information.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>A Unicode character that is equivalent to <paramref name="value" />, or <see cref="F:System.Char.MinValue" /> if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is a null string.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
+-or-
+The conversion of <paramref name="value" /> to a <see cref="T:System.Char" /> is not supported.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than <see cref="F:System.Char.MinValue" /> or greater than <see cref="F:System.Char.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToChar(System.SByte)">
+ <summary>Converts the value of the specified 8-bit signed integer to its equivalent Unicode character.</summary>
+ <param name="value">The 8-bit signed integer to convert.</param>
+ <returns>A Unicode character that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than <see cref="F:System.Char.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToChar(System.Single)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The single-precision floating-point number to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToChar(System.String)">
+ <summary>Converts the first character of a specified string to a Unicode character.</summary>
+ <param name="value">A string of length 1.</param>
+ <returns>A Unicode character that is equivalent to the first and only character in <paramref name="value" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.FormatException">The length of <paramref name="value" /> is not 1.</exception>
+ </member>
+ <member name="M:System.Convert.ToChar(System.String,System.IFormatProvider)">
+ <summary>Converts the first character of a specified string to a Unicode character, using specified culture-specific formatting information.</summary>
+ <param name="value">A string of length 1 or <see langword="null" />.</param>
+ <param name="provider">An object that supplies culture-specific formatting information. This parameter is ignored.</param>
+ <returns>A Unicode character that is equivalent to the first and only character in <paramref name="value" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.FormatException">The length of <paramref name="value" /> is not 1.</exception>
+ </member>
+ <member name="M:System.Convert.ToChar(System.UInt16)">
+ <summary>Converts the value of the specified 16-bit unsigned integer to its equivalent Unicode character.</summary>
+ <param name="value">The 16-bit unsigned integer to convert.</param>
+ <returns>A Unicode character that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToChar(System.UInt32)">
+ <summary>Converts the value of the specified 32-bit unsigned integer to its equivalent Unicode character.</summary>
+ <param name="value">The 32-bit unsigned integer to convert.</param>
+ <returns>A Unicode character that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Char.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToChar(System.UInt64)">
+ <summary>Converts the value of the specified 64-bit unsigned integer to its equivalent Unicode character.</summary>
+ <param name="value">The 64-bit unsigned integer to convert.</param>
+ <returns>A Unicode character that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Char.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToDateTime(System.Boolean)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The Boolean value to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToDateTime(System.Byte)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The 8-bit unsigned integer to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToDateTime(System.Char)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The Unicode character to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToDateTime(System.DateTime)">
+ <summary>Returns the specified <see cref="T:System.DateTime" /> object; no actual conversion is performed.</summary>
+ <param name="value">A date and time value.</param>
+ <returns>
+ <paramref name="value" /> is returned unchanged.</returns>
+ </member>
+ <member name="M:System.Convert.ToDateTime(System.Decimal)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The number to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToDateTime(System.Double)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The double-precision floating-point value to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToDateTime(System.Int16)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The 16-bit signed integer to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToDateTime(System.Int32)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The 32-bit signed integer to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToDateTime(System.Int64)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The 64-bit signed integer to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToDateTime(System.Object)">
+ <summary>Converts the value of the specified object to a <see cref="T:System.DateTime" /> object.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or <see langword="null" />.</param>
+ <returns>The date and time equivalent of the value of <paramref name="value" />, or a date and time equivalent of <see cref="F:System.DateTime.MinValue" /> if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not a valid date and time value.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
+-or-
+The conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToDateTime(System.Object,System.IFormatProvider)">
+ <summary>Converts the value of the specified object to a <see cref="T:System.DateTime" /> object, using the specified culture-specific formatting information.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>The date and time equivalent of the value of <paramref name="value" />, or the date and time equivalent of <see cref="F:System.DateTime.MinValue" /> if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not a valid date and time value.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
+-or-
+The conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToDateTime(System.SByte)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The 8-bit signed integer to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToDateTime(System.Single)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The single-precision floating-point value to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToDateTime(System.String)">
+ <summary>Converts the specified string representation of a date and time to an equivalent date and time value.</summary>
+ <param name="value">The string representation of a date and time.</param>
+ <returns>The date and time equivalent of the value of <paramref name="value" />, or the date and time equivalent of <see cref="F:System.DateTime.MinValue" /> if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not a properly formatted date and time string.</exception>
+ </member>
+ <member name="M:System.Convert.ToDateTime(System.String,System.IFormatProvider)">
+ <summary>Converts the specified string representation of a number to an equivalent date and time, using the specified culture-specific formatting information.</summary>
+ <param name="value">A string that contains a date and time to convert.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>The date and time equivalent of the value of <paramref name="value" />, or the date and time equivalent of <see cref="F:System.DateTime.MinValue" /> if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not a properly formatted date and time string.</exception>
+ </member>
+ <member name="M:System.Convert.ToDateTime(System.UInt16)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The 16-bit unsigned integer to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToDateTime(System.UInt32)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The 32-bit unsigned integer to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToDateTime(System.UInt64)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The 64-bit unsigned integer to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToDecimal(System.Boolean)">
+ <summary>Converts the specified Boolean value to the equivalent decimal number.</summary>
+ <param name="value">The Boolean value to convert.</param>
+ <returns>The number 1 if <paramref name="value" /> is <see langword="true" />; otherwise, 0.</returns>
+ </member>
+ <member name="M:System.Convert.ToDecimal(System.Byte)">
+ <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent decimal number.</summary>
+ <param name="value">The 8-bit unsigned integer to convert.</param>
+ <returns>The decimal number that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToDecimal(System.Char)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The Unicode character to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToDecimal(System.DateTime)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The date and time value to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToDecimal(System.Decimal)">
+ <summary>Returns the specified decimal number; no actual conversion is performed.</summary>
+ <param name="value">A decimal number.</param>
+ <returns>
+ <paramref name="value" /> is returned unchanged.</returns>
+ </member>
+ <member name="M:System.Convert.ToDecimal(System.Double)">
+ <summary>Converts the value of the specified double-precision floating-point number to an equivalent decimal number.</summary>
+ <param name="value">The double-precision floating-point number to convert.</param>
+ <returns>A decimal number that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Decimal.MaxValue" /> or less than <see cref="F:System.Decimal.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToDecimal(System.Int16)">
+ <summary>Converts the value of the specified 16-bit signed integer to an equivalent decimal number.</summary>
+ <param name="value">The 16-bit signed integer to convert.</param>
+ <returns>A decimal number that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToDecimal(System.Int32)">
+ <summary>Converts the value of the specified 32-bit signed integer to an equivalent decimal number.</summary>
+ <param name="value">The 32-bit signed integer to convert.</param>
+ <returns>A decimal number that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToDecimal(System.Int64)">
+ <summary>Converts the value of the specified 64-bit signed integer to an equivalent decimal number.</summary>
+ <param name="value">The 64-bit signed integer to convert.</param>
+ <returns>A decimal number that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToDecimal(System.Object)">
+ <summary>Converts the value of the specified object to an equivalent decimal number.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or <see langword="null" />.</param>
+ <returns>A decimal number that is equivalent to <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in an appropriate format for a <see cref="T:System.Decimal" /> type.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
+-or-
+The conversion is not supported.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToDecimal(System.Object,System.IFormatProvider)">
+ <summary>Converts the value of the specified object to an equivalent decimal number, using the specified culture-specific formatting information.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>A decimal number that is equivalent to <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in an appropriate format for a <see cref="T:System.Decimal" /> type.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
+-or-
+The conversion is not supported.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToDecimal(System.SByte)">
+ <summary>Converts the value of the specified 8-bit signed integer to the equivalent decimal number.</summary>
+ <param name="value">The 8-bit signed integer to convert.</param>
+ <returns>A decimal number that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToDecimal(System.Single)">
+ <summary>Converts the value of the specified single-precision floating-point number to the equivalent decimal number.</summary>
+ <param name="value">The single-precision floating-point number to convert.</param>
+ <returns>A decimal number that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Decimal.MaxValue" /> or less than <see cref="F:System.Decimal.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToDecimal(System.String)">
+ <summary>Converts the specified string representation of a number to an equivalent decimal number.</summary>
+ <param name="value">A string that contains a number to convert.</param>
+ <returns>A decimal number that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not a number in a valid format.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToDecimal(System.String,System.IFormatProvider)">
+ <summary>Converts the specified string representation of a number to an equivalent decimal number, using the specified culture-specific formatting information.</summary>
+ <param name="value">A string that contains a number to convert.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>A decimal number that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not a number in a valid format.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Decimal.MinValue" /> or greater than <see cref="F:System.Decimal.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToDecimal(System.UInt16)">
+ <summary>Converts the value of the specified 16-bit unsigned integer to an equivalent decimal number.</summary>
+ <param name="value">The 16-bit unsigned integer to convert.</param>
+ <returns>The decimal number that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToDecimal(System.UInt32)">
+ <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent decimal number.</summary>
+ <param name="value">The 32-bit unsigned integer to convert.</param>
+ <returns>A decimal number that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToDecimal(System.UInt64)">
+ <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent decimal number.</summary>
+ <param name="value">The 64-bit unsigned integer to convert.</param>
+ <returns>A decimal number that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToDouble(System.Boolean)">
+ <summary>Converts the specified Boolean value to the equivalent double-precision floating-point number.</summary>
+ <param name="value">The Boolean value to convert.</param>
+ <returns>The number 1 if <paramref name="value" /> is <see langword="true" />; otherwise, 0.</returns>
+ </member>
+ <member name="M:System.Convert.ToDouble(System.Byte)">
+ <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent double-precision floating-point number.</summary>
+ <param name="value">The 8-bit unsigned integer to convert.</param>
+ <returns>The double-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToDouble(System.Char)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The Unicode character to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToDouble(System.DateTime)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The date and time value to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToDouble(System.Decimal)">
+ <summary>Converts the value of the specified decimal number to an equivalent double-precision floating-point number.</summary>
+ <param name="value">The decimal number to convert.</param>
+ <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToDouble(System.Double)">
+ <summary>Returns the specified double-precision floating-point number; no actual conversion is performed.</summary>
+ <param name="value">The double-precision floating-point number to return.</param>
+ <returns>
+ <paramref name="value" /> is returned unchanged.</returns>
+ </member>
+ <member name="M:System.Convert.ToDouble(System.Int16)">
+ <summary>Converts the value of the specified 16-bit signed integer to an equivalent double-precision floating-point number.</summary>
+ <param name="value">The 16-bit signed integer to convert.</param>
+ <returns>A double-precision floating-point number equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToDouble(System.Int32)">
+ <summary>Converts the value of the specified 32-bit signed integer to an equivalent double-precision floating-point number.</summary>
+ <param name="value">The 32-bit signed integer to convert.</param>
+ <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToDouble(System.Int64)">
+ <summary>Converts the value of the specified 64-bit signed integer to an equivalent double-precision floating-point number.</summary>
+ <param name="value">The 64-bit signed integer to convert.</param>
+ <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToDouble(System.Object)">
+ <summary>Converts the value of the specified object to a double-precision floating-point number.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or <see langword="null" />.</param>
+ <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in an appropriate format for a <see cref="T:System.Double" /> type.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
+-or-
+The conversion is not supported.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Double.MinValue" /> or greater than <see cref="F:System.Double.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToDouble(System.Object,System.IFormatProvider)">
+ <summary>Converts the value of the specified object to an double-precision floating-point number, using the specified culture-specific formatting information.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in an appropriate format for a <see cref="T:System.Double" /> type.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Double.MinValue" /> or greater than <see cref="F:System.Double.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToDouble(System.SByte)">
+ <summary>Converts the value of the specified 8-bit signed integer to the equivalent double-precision floating-point number.</summary>
+ <param name="value">The 8-bit signed integer to convert.</param>
+ <returns>The 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToDouble(System.Single)">
+ <summary>Converts the value of the specified single-precision floating-point number to an equivalent double-precision floating-point number.</summary>
+ <param name="value">The single-precision floating-point number.</param>
+ <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToDouble(System.String)">
+ <summary>Converts the specified string representation of a number to an equivalent double-precision floating-point number.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <returns>A double-precision floating-point number that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not a number in a valid format.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Double.MinValue" /> or greater than <see cref="F:System.Double.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToDouble(System.String,System.IFormatProvider)">
+ <summary>Converts the specified string representation of a number to an equivalent double-precision floating-point number, using the specified culture-specific formatting information.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>A double-precision floating-point number that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not a number in a valid format.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Double.MinValue" /> or greater than <see cref="F:System.Double.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToDouble(System.UInt16)">
+ <summary>Converts the value of the specified 16-bit unsigned integer to the equivalent double-precision floating-point number.</summary>
+ <param name="value">The 16-bit unsigned integer to convert.</param>
+ <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToDouble(System.UInt32)">
+ <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent double-precision floating-point number.</summary>
+ <param name="value">The 32-bit unsigned integer to convert.</param>
+ <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToDouble(System.UInt64)">
+ <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent double-precision floating-point number.</summary>
+ <param name="value">The 64-bit unsigned integer to convert.</param>
+ <returns>A double-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToInt16(System.Boolean)">
+ <summary>Converts the specified Boolean value to the equivalent 16-bit signed integer.</summary>
+ <param name="value">The Boolean value to convert.</param>
+ <returns>The number 1 if <paramref name="value" /> is <see langword="true" />; otherwise, 0.</returns>
+ </member>
+ <member name="M:System.Convert.ToInt16(System.Byte)">
+ <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent 16-bit signed integer.</summary>
+ <param name="value">The 8-bit unsigned integer to convert.</param>
+ <returns>A 16-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToInt16(System.Char)">
+ <summary>Converts the value of the specified Unicode character to the equivalent 16-bit signed integer.</summary>
+ <param name="value">The Unicode character to convert.</param>
+ <returns>A 16-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt16(System.DateTime)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The date and time value to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt16(System.Decimal)">
+ <summary>Converts the value of the specified decimal number to an equivalent 16-bit signed integer.</summary>
+ <param name="value">The decimal number to convert.</param>
+ <returns>
+ <paramref name="value" />, rounded to the nearest 16-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" /> or less than <see cref="F:System.Int16.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt16(System.Double)">
+ <summary>Converts the value of the specified double-precision floating-point number to an equivalent 16-bit signed integer.</summary>
+ <param name="value">The double-precision floating-point number to convert.</param>
+ <returns>
+ <paramref name="value" />, rounded to the nearest 16-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" /> or less than <see cref="F:System.Int16.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt16(System.Int16)">
+ <summary>Returns the specified 16-bit signed integer; no actual conversion is performed.</summary>
+ <param name="value">The 16-bit signed integer to return.</param>
+ <returns>
+ <paramref name="value" /> is returned unchanged.</returns>
+ </member>
+ <member name="M:System.Convert.ToInt16(System.Int32)">
+ <summary>Converts the value of the specified 32-bit signed integer to an equivalent 16-bit signed integer.</summary>
+ <param name="value">The 32-bit signed integer to convert.</param>
+ <returns>The 16-bit signed integer equivalent of <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" /> or less than <see cref="F:System.Int16.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt16(System.Int64)">
+ <summary>Converts the value of the specified 64-bit signed integer to an equivalent 16-bit signed integer.</summary>
+ <param name="value">The 64-bit signed integer to convert.</param>
+ <returns>A 16-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" /> or less than <see cref="F:System.Int16.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt16(System.Object)">
+ <summary>Converts the value of the specified object to a 16-bit signed integer.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or <see langword="null" />.</param>
+ <returns>A 16-bit signed integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in an appropriate format for an <see cref="T:System.Int16" /> type.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
+-or-
+The conversion is not supported.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt16(System.Object,System.IFormatProvider)">
+ <summary>Converts the value of the specified object to a 16-bit signed integer, using the specified culture-specific formatting information.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>A 16-bit signed integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in an appropriate format for an <see cref="T:System.Int16" /> type.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt16(System.SByte)">
+ <summary>Converts the value of the specified 8-bit signed integer to the equivalent 16-bit signed integer.</summary>
+ <param name="value">The 8-bit signed integer to convert.</param>
+ <returns>A 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToInt16(System.Single)">
+ <summary>Converts the value of the specified single-precision floating-point number to an equivalent 16-bit signed integer.</summary>
+ <param name="value">The single-precision floating-point number to convert.</param>
+ <returns>
+ <paramref name="value" />, rounded to the nearest 16-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" /> or less than <see cref="F:System.Int16.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt16(System.String)">
+ <summary>Converts the specified string representation of a number to an equivalent 16-bit signed integer.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <returns>A 16-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt16(System.String,System.IFormatProvider)">
+ <summary>Converts the specified string representation of a number to an equivalent 16-bit signed integer, using the specified culture-specific formatting information.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>A 16-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt16(System.String,System.Int32)">
+ <summary>Converts the string representation of a number in a specified base to an equivalent 16-bit signed integer.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <param name="fromBase">The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16.</param>
+ <returns>A 16-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="fromBase" /> is not 2, 8, 10, or 16.
+-or-
+<paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="value" /> is <see cref="F:System.String.Empty" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign.
+-or-
+<paramref name="value" /> represents a number that is less than <see cref="F:System.Int16.MinValue" /> or greater than <see cref="F:System.Int16.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt16(System.UInt16)">
+ <summary>Converts the value of the specified 16-bit unsigned integer to the equivalent 16-bit signed integer.</summary>
+ <param name="value">The 16-bit unsigned integer to convert.</param>
+ <returns>A 16-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt16(System.UInt32)">
+ <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent 16-bit signed integer.</summary>
+ <param name="value">The 32-bit unsigned integer to convert.</param>
+ <returns>A 16-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt16(System.UInt64)">
+ <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent 16-bit signed integer.</summary>
+ <param name="value">The 64-bit unsigned integer to convert.</param>
+ <returns>A 16-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Int16.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt32(System.Boolean)">
+ <summary>Converts the specified Boolean value to the equivalent 32-bit signed integer.</summary>
+ <param name="value">The Boolean value to convert.</param>
+ <returns>The number 1 if <paramref name="value" /> is <see langword="true" />; otherwise, 0.</returns>
+ </member>
+ <member name="M:System.Convert.ToInt32(System.Byte)">
+ <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent 32-bit signed integer.</summary>
+ <param name="value">The 8-bit unsigned integer to convert.</param>
+ <returns>A 32-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToInt32(System.Char)">
+ <summary>Converts the value of the specified Unicode character to the equivalent 32-bit signed integer.</summary>
+ <param name="value">The Unicode character to convert.</param>
+ <returns>A 32-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToInt32(System.DateTime)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The date and time value to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt32(System.Decimal)">
+ <summary>Converts the value of the specified decimal number to an equivalent 32-bit signed integer.</summary>
+ <param name="value">The decimal number to convert.</param>
+ <returns>
+ <paramref name="value" />, rounded to the nearest 32-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Int32.MaxValue" /> or less than <see cref="F:System.Int32.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt32(System.Double)">
+ <summary>Converts the value of the specified double-precision floating-point number to an equivalent 32-bit signed integer.</summary>
+ <param name="value">The double-precision floating-point number to convert.</param>
+ <returns>
+ <paramref name="value" />, rounded to the nearest 32-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Int32.MaxValue" /> or less than <see cref="F:System.Int32.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt32(System.Int16)">
+ <summary>Converts the value of the specified 16-bit signed integer to an equivalent 32-bit signed integer.</summary>
+ <param name="value">The 16-bit signed integer to convert.</param>
+ <returns>A 32-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToInt32(System.Int32)">
+ <summary>Returns the specified 32-bit signed integer; no actual conversion is performed.</summary>
+ <param name="value">The 32-bit signed integer to return.</param>
+ <returns>
+ <paramref name="value" /> is returned unchanged.</returns>
+ </member>
+ <member name="M:System.Convert.ToInt32(System.Int64)">
+ <summary>Converts the value of the specified 64-bit signed integer to an equivalent 32-bit signed integer.</summary>
+ <param name="value">The 64-bit signed integer to convert.</param>
+ <returns>A 32-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Int32.MaxValue" /> or less than <see cref="F:System.Int32.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt32(System.Object)">
+ <summary>Converts the value of the specified object to a 32-bit signed integer.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or <see langword="null" />.</param>
+ <returns>A 32-bit signed integer equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in an appropriate format.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
+-or-
+The conversion is not supported.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt32(System.Object,System.IFormatProvider)">
+ <summary>Converts the value of the specified object to a 32-bit signed integer, using the specified culture-specific formatting information.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>A 32-bit signed integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in an appropriate format.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt32(System.SByte)">
+ <summary>Converts the value of the specified 8-bit signed integer to the equivalent 32-bit signed integer.</summary>
+ <param name="value">The 8-bit signed integer to convert.</param>
+ <returns>A 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToInt32(System.Single)">
+ <summary>Converts the value of the specified single-precision floating-point number to an equivalent 32-bit signed integer.</summary>
+ <param name="value">The single-precision floating-point number to convert.</param>
+ <returns>
+ <paramref name="value" />, rounded to the nearest 32-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Int32.MaxValue" /> or less than <see cref="F:System.Int32.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt32(System.String)">
+ <summary>Converts the specified string representation of a number to an equivalent 32-bit signed integer.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <returns>A 32-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt32(System.String,System.IFormatProvider)">
+ <summary>Converts the specified string representation of a number to an equivalent 32-bit signed integer, using the specified culture-specific formatting information.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>A 32-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt32(System.String,System.Int32)">
+ <summary>Converts the string representation of a number in a specified base to an equivalent 32-bit signed integer.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <param name="fromBase">The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16.</param>
+ <returns>A 32-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="fromBase" /> is not 2, 8, 10, or 16.
+-or-
+<paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="value" /> is <see cref="F:System.String.Empty" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign.
+-or-
+<paramref name="value" /> represents a number that is less than <see cref="F:System.Int32.MinValue" /> or greater than <see cref="F:System.Int32.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt32(System.UInt16)">
+ <summary>Converts the value of the specified 16-bit unsigned integer to the equivalent 32-bit signed integer.</summary>
+ <param name="value">The 16-bit unsigned integer to convert.</param>
+ <returns>A 32-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToInt32(System.UInt32)">
+ <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent 32-bit signed integer.</summary>
+ <param name="value">The 32-bit unsigned integer to convert.</param>
+ <returns>A 32-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt32(System.UInt64)">
+ <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent 32-bit signed integer.</summary>
+ <param name="value">The 64-bit unsigned integer to convert.</param>
+ <returns>A 32-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt64(System.Boolean)">
+ <summary>Converts the specified Boolean value to the equivalent 64-bit signed integer.</summary>
+ <param name="value">The Boolean value to convert.</param>
+ <returns>The number 1 if <paramref name="value" /> is <see langword="true" />; otherwise, 0.</returns>
+ </member>
+ <member name="M:System.Convert.ToInt64(System.Byte)">
+ <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent 64-bit signed integer.</summary>
+ <param name="value">The 8-bit unsigned integer to convert.</param>
+ <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToInt64(System.Char)">
+ <summary>Converts the value of the specified Unicode character to the equivalent 64-bit signed integer.</summary>
+ <param name="value">The Unicode character to convert.</param>
+ <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToInt64(System.DateTime)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The date and time value to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt64(System.Decimal)">
+ <summary>Converts the value of the specified decimal number to an equivalent 64-bit signed integer.</summary>
+ <param name="value">The decimal number to convert.</param>
+ <returns>
+ <paramref name="value" />, rounded to the nearest 64-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Int64.MaxValue" /> or less than <see cref="F:System.Int64.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt64(System.Double)">
+ <summary>Converts the value of the specified double-precision floating-point number to an equivalent 64-bit signed integer.</summary>
+ <param name="value">The double-precision floating-point number to convert.</param>
+ <returns>
+ <paramref name="value" />, rounded to the nearest 64-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Int64.MaxValue" /> or less than <see cref="F:System.Int64.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt64(System.Int16)">
+ <summary>Converts the value of the specified 16-bit signed integer to an equivalent 64-bit signed integer.</summary>
+ <param name="value">The 16-bit signed integer to convert.</param>
+ <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToInt64(System.Int32)">
+ <summary>Converts the value of the specified 32-bit signed integer to an equivalent 64-bit signed integer.</summary>
+ <param name="value">The 32-bit signed integer to convert.</param>
+ <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToInt64(System.Int64)">
+ <summary>Returns the specified 64-bit signed integer; no actual conversion is performed.</summary>
+ <param name="value">A 64-bit signed integer.</param>
+ <returns>
+ <paramref name="value" /> is returned unchanged.</returns>
+ </member>
+ <member name="M:System.Convert.ToInt64(System.Object)">
+ <summary>Converts the value of the specified object to a 64-bit signed integer.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or <see langword="null" />.</param>
+ <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in an appropriate format.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
+-or-
+The conversion is not supported.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt64(System.Object,System.IFormatProvider)">
+ <summary>Converts the value of the specified object to a 64-bit signed integer, using the specified culture-specific formatting information.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in an appropriate format.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
+-or-
+The conversion is not supported.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt64(System.SByte)">
+ <summary>Converts the value of the specified 8-bit signed integer to the equivalent 64-bit signed integer.</summary>
+ <param name="value">The 8-bit signed integer to convert.</param>
+ <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToInt64(System.Single)">
+ <summary>Converts the value of the specified single-precision floating-point number to an equivalent 64-bit signed integer.</summary>
+ <param name="value">The single-precision floating-point number to convert.</param>
+ <returns>
+ <paramref name="value" />, rounded to the nearest 64-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Int64.MaxValue" /> or less than <see cref="F:System.Int64.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt64(System.String)">
+ <summary>Converts the specified string representation of a number to an equivalent 64-bit signed integer.</summary>
+ <param name="value">A string that contains a number to convert.</param>
+ <returns>A 64-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt64(System.String,System.IFormatProvider)">
+ <summary>Converts the specified string representation of a number to an equivalent 64-bit signed integer, using the specified culture-specific formatting information.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>A 64-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt64(System.String,System.Int32)">
+ <summary>Converts the string representation of a number in a specified base to an equivalent 64-bit signed integer.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <param name="fromBase">The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16.</param>
+ <returns>A 64-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="fromBase" /> is not 2, 8, 10, or 16.
+-or-
+<paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="value" /> is <see cref="F:System.String.Empty" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign.
+-or-
+<paramref name="value" /> represents a number that is less than <see cref="F:System.Int64.MinValue" /> or greater than <see cref="F:System.Int64.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToInt64(System.UInt16)">
+ <summary>Converts the value of the specified 16-bit unsigned integer to the equivalent 64-bit signed integer.</summary>
+ <param name="value">The 16-bit unsigned integer to convert.</param>
+ <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToInt64(System.UInt32)">
+ <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent 64-bit signed integer.</summary>
+ <param name="value">The 32-bit unsigned integer to convert.</param>
+ <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToInt64(System.UInt64)">
+ <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent 64-bit signed integer.</summary>
+ <param name="value">The 64-bit unsigned integer to convert.</param>
+ <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.Int64.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToSByte(System.Boolean)">
+ <summary>Converts the specified Boolean value to the equivalent 8-bit signed integer.</summary>
+ <param name="value">The Boolean value to convert.</param>
+ <returns>The number 1 if <paramref name="value" /> is <see langword="true" />; otherwise, 0.</returns>
+ </member>
+ <member name="M:System.Convert.ToSByte(System.Byte)">
+ <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent 8-bit signed integer.</summary>
+ <param name="value">The 8-bit unsigned integer to convert.</param>
+ <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToSByte(System.Char)">
+ <summary>Converts the value of the specified Unicode character to the equivalent 8-bit signed integer.</summary>
+ <param name="value">The Unicode character to convert.</param>
+ <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToSByte(System.DateTime)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The date and time value to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToSByte(System.Decimal)">
+ <summary>Converts the value of the specified decimal number to an equivalent 8-bit signed integer.</summary>
+ <param name="value">The decimal number to convert.</param>
+ <returns>
+ <paramref name="value" />, rounded to the nearest 8-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToSByte(System.Double)">
+ <summary>Converts the value of the specified double-precision floating-point number to an equivalent 8-bit signed integer.</summary>
+ <param name="value">The double-precision floating-point number to convert.</param>
+ <returns>
+ <paramref name="value" />, rounded to the nearest 8-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToSByte(System.Int16)">
+ <summary>Converts the value of the specified 16-bit signed integer to the equivalent 8-bit signed integer.</summary>
+ <param name="value">The 16-bit signed integer to convert.</param>
+ <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToSByte(System.Int32)">
+ <summary>Converts the value of the specified 32-bit signed integer to an equivalent 8-bit signed integer.</summary>
+ <param name="value">The 32-bit signed integer to convert.</param>
+ <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToSByte(System.Int64)">
+ <summary>Converts the value of the specified 64-bit signed integer to an equivalent 8-bit signed integer.</summary>
+ <param name="value">The 64-bit signed integer to convert.</param>
+ <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToSByte(System.Object)">
+ <summary>Converts the value of the specified object to an 8-bit signed integer.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or <see langword="null" />.</param>
+ <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in an appropriate format.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
+-or-
+The conversion is not supported.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToSByte(System.Object,System.IFormatProvider)">
+ <summary>Converts the value of the specified object to an 8-bit signed integer, using the specified culture-specific formatting information.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in an appropriate format.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
+-or-
+The conversion is not supported.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToSByte(System.SByte)">
+ <summary>Returns the specified 8-bit signed integer; no actual conversion is performed.</summary>
+ <param name="value">The 8-bit signed integer to return.</param>
+ <returns>
+ <paramref name="value" /> is returned unchanged.</returns>
+ </member>
+ <member name="M:System.Convert.ToSByte(System.Single)">
+ <summary>Converts the value of the specified single-precision floating-point number to an equivalent 8-bit signed integer.</summary>
+ <param name="value">The single-precision floating-point number to convert.</param>
+ <returns>
+ <paramref name="value" />, rounded to the nearest 8-bit signed integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToSByte(System.String)">
+ <summary>Converts the specified string representation of a number to an equivalent 8-bit signed integer.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <returns>An 8-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if value is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToSByte(System.String,System.IFormatProvider)">
+ <summary>Converts the specified string representation of a number to an equivalent 8-bit signed integer, using the specified culture-specific formatting information.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToSByte(System.String,System.Int32)">
+ <summary>Converts the string representation of a number in a specified base to an equivalent 8-bit signed integer.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <param name="fromBase">The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16.</param>
+ <returns>An 8-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="fromBase" /> is not 2, 8, 10, or 16.
+-or-
+<paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="value" /> is <see cref="F:System.String.Empty" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" />, which represents a non-base 10 signed number, is prefixed with a negative sign.
+-or-
+<paramref name="value" /> represents a number that is less than <see cref="F:System.SByte.MinValue" /> or greater than <see cref="F:System.SByte.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToSByte(System.UInt16)">
+ <summary>Converts the value of the specified 16-bit unsigned integer to the equivalent 8-bit signed integer.</summary>
+ <param name="value">The 16-bit unsigned integer to convert.</param>
+ <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToSByte(System.UInt32)">
+ <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent 8-bit signed integer.</summary>
+ <param name="value">The 32-bit unsigned integer to convert.</param>
+ <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToSByte(System.UInt64)">
+ <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent 8-bit signed integer.</summary>
+ <param name="value">The 64-bit unsigned integer to convert.</param>
+ <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.SByte.MaxValue" /> or less than <see cref="F:System.SByte.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToSingle(System.Boolean)">
+ <summary>Converts the specified Boolean value to the equivalent single-precision floating-point number.</summary>
+ <param name="value">The Boolean value to convert.</param>
+ <returns>The number 1 if <paramref name="value" /> is <see langword="true" />; otherwise, 0.</returns>
+ </member>
+ <member name="M:System.Convert.ToSingle(System.Byte)">
+ <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent single-precision floating-point number.</summary>
+ <param name="value">The 8-bit unsigned integer to convert.</param>
+ <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToSingle(System.Char)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The Unicode character to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToSingle(System.DateTime)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The date and time value to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToSingle(System.Decimal)">
+ <summary>Converts the value of the specified decimal number to an equivalent single-precision floating-point number.</summary>
+ <param name="value">The decimal number to convert.</param>
+ <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.
+<paramref name="value" /> is rounded using rounding to nearest. For example, when rounded to two decimals, the value 2.345 becomes 2.34 and the value 2.355 becomes 2.36.</returns>
+ </member>
+ <member name="M:System.Convert.ToSingle(System.Double)">
+ <summary>Converts the value of the specified double-precision floating-point number to an equivalent single-precision floating-point number.</summary>
+ <param name="value">The double-precision floating-point number to convert.</param>
+ <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.
+<paramref name="value" /> is rounded using rounding to nearest. For example, when rounded to two decimals, the value 2.345 becomes 2.34 and the value 2.355 becomes 2.36.</returns>
+ </member>
+ <member name="M:System.Convert.ToSingle(System.Int16)">
+ <summary>Converts the value of the specified 16-bit signed integer to an equivalent single-precision floating-point number.</summary>
+ <param name="value">The 16-bit signed integer to convert.</param>
+ <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToSingle(System.Int32)">
+ <summary>Converts the value of the specified 32-bit signed integer to an equivalent single-precision floating-point number.</summary>
+ <param name="value">The 32-bit signed integer to convert.</param>
+ <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToSingle(System.Int64)">
+ <summary>Converts the value of the specified 64-bit signed integer to an equivalent single-precision floating-point number.</summary>
+ <param name="value">The 64-bit signed integer to convert.</param>
+ <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToSingle(System.Object)">
+ <summary>Converts the value of the specified object to a single-precision floating-point number.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or <see langword="null" />.</param>
+ <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in an appropriate format.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
+-or-
+The conversion is not supported.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Single.MinValue" /> or greater than <see cref="F:System.Single.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToSingle(System.Object,System.IFormatProvider)">
+ <summary>Converts the value of the specified object to an single-precision floating-point number, using the specified culture-specific formatting information.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in an appropriate format.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement <see cref="T:System.IConvertible" />.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Single.MinValue" /> or greater than <see cref="F:System.Single.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToSingle(System.SByte)">
+ <summary>Converts the value of the specified 8-bit signed integer to the equivalent single-precision floating-point number.</summary>
+ <param name="value">The 8-bit signed integer to convert.</param>
+ <returns>An 8-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToSingle(System.Single)">
+ <summary>Returns the specified single-precision floating-point number; no actual conversion is performed.</summary>
+ <param name="value">The single-precision floating-point number to return.</param>
+ <returns>
+ <paramref name="value" /> is returned unchanged.</returns>
+ </member>
+ <member name="M:System.Convert.ToSingle(System.String)">
+ <summary>Converts the specified string representation of a number to an equivalent single-precision floating-point number.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <returns>A single-precision floating-point number that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not a number in a valid format.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Single.MinValue" /> or greater than <see cref="F:System.Single.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToSingle(System.String,System.IFormatProvider)">
+ <summary>Converts the specified string representation of a number to an equivalent single-precision floating-point number, using the specified culture-specific formatting information.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>A single-precision floating-point number that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not a number in a valid format.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.Single.MinValue" /> or greater than <see cref="F:System.Single.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToSingle(System.UInt16)">
+ <summary>Converts the value of the specified 16-bit unsigned integer to the equivalent single-precision floating-point number.</summary>
+ <param name="value">The 16-bit unsigned integer to convert.</param>
+ <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToSingle(System.UInt32)">
+ <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent single-precision floating-point number.</summary>
+ <param name="value">The 32-bit unsigned integer to convert.</param>
+ <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToSingle(System.UInt64)">
+ <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent single-precision floating-point number.</summary>
+ <param name="value">The 64-bit unsigned integer to convert.</param>
+ <returns>A single-precision floating-point number that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.Boolean)">
+ <summary>Converts the specified Boolean value to its equivalent string representation.</summary>
+ <param name="value">The Boolean value to convert.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.Boolean,System.IFormatProvider)">
+ <summary>Converts the specified Boolean value to its equivalent string representation.</summary>
+ <param name="value">The Boolean value to convert.</param>
+ <param name="provider">An instance of an object. This parameter is ignored.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.Byte)">
+ <summary>Converts the value of the specified 8-bit unsigned integer to its equivalent string representation.</summary>
+ <param name="value">The 8-bit unsigned integer to convert.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.Byte,System.IFormatProvider)">
+ <summary>Converts the value of the specified 8-bit unsigned integer to its equivalent string representation, using the specified culture-specific formatting information.</summary>
+ <param name="value">The 8-bit unsigned integer to convert.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.Byte,System.Int32)">
+ <summary>Converts the value of an 8-bit unsigned integer to its equivalent string representation in a specified base.</summary>
+ <param name="value">The 8-bit unsigned integer to convert.</param>
+ <param name="toBase">The base of the return value, which must be 2, 8, 10, or 16.</param>
+ <returns>The string representation of <paramref name="value" /> in base <paramref name="toBase" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="toBase" /> is not 2, 8, 10, or 16.</exception>
+ </member>
+ <member name="M:System.Convert.ToString(System.Char)">
+ <summary>Converts the value of the specified Unicode character to its equivalent string representation.</summary>
+ <param name="value">The Unicode character to convert.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.Char,System.IFormatProvider)">
+ <summary>Converts the value of the specified Unicode character to its equivalent string representation, using the specified culture-specific formatting information.</summary>
+ <param name="value">The Unicode character to convert.</param>
+ <param name="provider">An object that supplies culture-specific formatting information. This parameter is ignored.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.DateTime)">
+ <summary>Converts the value of the specified <see cref="T:System.DateTime" /> to its equivalent string representation.</summary>
+ <param name="value">The date and time value to convert.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.DateTime,System.IFormatProvider)">
+ <summary>Converts the value of the specified <see cref="T:System.DateTime" /> to its equivalent string representation, using the specified culture-specific formatting information.</summary>
+ <param name="value">The date and time value to convert.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.Decimal)">
+ <summary>Converts the value of the specified decimal number to its equivalent string representation.</summary>
+ <param name="value">The decimal number to convert.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.Decimal,System.IFormatProvider)">
+ <summary>Converts the value of the specified decimal number to its equivalent string representation, using the specified culture-specific formatting information.</summary>
+ <param name="value">The decimal number to convert.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.Double)">
+ <summary>Converts the value of the specified double-precision floating-point number to its equivalent string representation.</summary>
+ <param name="value">The double-precision floating-point number to convert.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.Double,System.IFormatProvider)">
+ <summary>Converts the value of the specified double-precision floating-point number to its equivalent string representation.</summary>
+ <param name="value">The double-precision floating-point number to convert.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.Int16)">
+ <summary>Converts the value of the specified 16-bit signed integer to its equivalent string representation.</summary>
+ <param name="value">The 16-bit signed integer to convert.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.Int16,System.IFormatProvider)">
+ <summary>Converts the value of the specified 16-bit signed integer to its equivalent string representation, using the specified culture-specific formatting information.</summary>
+ <param name="value">The 16-bit signed integer to convert.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.Int16,System.Int32)">
+ <summary>Converts the value of a 16-bit signed integer to its equivalent string representation in a specified base.</summary>
+ <param name="value">The 16-bit signed integer to convert.</param>
+ <param name="toBase">The base of the return value, which must be 2, 8, 10, or 16.</param>
+ <returns>The string representation of <paramref name="value" /> in base <paramref name="toBase" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="toBase" /> is not 2, 8, 10, or 16.</exception>
+ </member>
+ <member name="M:System.Convert.ToString(System.Int32)">
+ <summary>Converts the value of the specified 32-bit signed integer to its equivalent string representation.</summary>
+ <param name="value">The 32-bit signed integer to convert.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.Int32,System.IFormatProvider)">
+ <summary>Converts the value of the specified 32-bit signed integer to its equivalent string representation, using the specified culture-specific formatting information.</summary>
+ <param name="value">The 32-bit signed integer to convert.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.Int32,System.Int32)">
+ <summary>Converts the value of a 32-bit signed integer to its equivalent string representation in a specified base.</summary>
+ <param name="value">The 32-bit signed integer to convert.</param>
+ <param name="toBase">The base of the return value, which must be 2, 8, 10, or 16.</param>
+ <returns>The string representation of <paramref name="value" /> in base <paramref name="toBase" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="toBase" /> is not 2, 8, 10, or 16.</exception>
+ </member>
+ <member name="M:System.Convert.ToString(System.Int64)">
+ <summary>Converts the value of the specified 64-bit signed integer to its equivalent string representation.</summary>
+ <param name="value">The 64-bit signed integer to convert.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.Int64,System.IFormatProvider)">
+ <summary>Converts the value of the specified 64-bit signed integer to its equivalent string representation, using the specified culture-specific formatting information.</summary>
+ <param name="value">The 64-bit signed integer to convert.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.Int64,System.Int32)">
+ <summary>Converts the value of a 64-bit signed integer to its equivalent string representation in a specified base.</summary>
+ <param name="value">The 64-bit signed integer to convert.</param>
+ <param name="toBase">The base of the return value, which must be 2, 8, 10, or 16.</param>
+ <returns>The string representation of <paramref name="value" /> in base <paramref name="toBase" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="toBase" /> is not 2, 8, 10, or 16.</exception>
+ </member>
+ <member name="M:System.Convert.ToString(System.Object)">
+ <summary>Converts the value of the specified object to its equivalent string representation.</summary>
+ <param name="value">An object that supplies the value to convert, or <see langword="null" />.</param>
+ <returns>The string representation of <paramref name="value" />, or <see cref="F:System.String.Empty" /> if <paramref name="value" /> is <see langword="null" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.Object,System.IFormatProvider)">
+ <summary>Converts the value of the specified object to its equivalent string representation using the specified culture-specific formatting information.</summary>
+ <param name="value">An object that supplies the value to convert, or <see langword="null" />.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>The string representation of <paramref name="value" />, or <see cref="F:System.String.Empty" /> if <paramref name="value" /> is an object whose value is <see langword="null" />. If <paramref name="value" /> is <see langword="null" />, the method returns <see langword="null" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.SByte)">
+ <summary>Converts the value of the specified 8-bit signed integer to its equivalent string representation.</summary>
+ <param name="value">The 8-bit signed integer to convert.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.SByte,System.IFormatProvider)">
+ <summary>Converts the value of the specified 8-bit signed integer to its equivalent string representation, using the specified culture-specific formatting information.</summary>
+ <param name="value">The 8-bit signed integer to convert.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.Single)">
+ <summary>Converts the value of the specified single-precision floating-point number to its equivalent string representation.</summary>
+ <param name="value">The single-precision floating-point number to convert.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.Single,System.IFormatProvider)">
+ <summary>Converts the value of the specified single-precision floating-point number to its equivalent string representation, using the specified culture-specific formatting information.</summary>
+ <param name="value">The single-precision floating-point number to convert.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.String)">
+ <summary>Returns the specified string instance; no actual conversion is performed.</summary>
+ <param name="value">The string to return.</param>
+ <returns>
+ <paramref name="value" /> is returned unchanged.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.String,System.IFormatProvider)">
+ <summary>Returns the specified string instance; no actual conversion is performed.</summary>
+ <param name="value">The string to return.</param>
+ <param name="provider">An object that supplies culture-specific formatting information. This parameter is ignored.</param>
+ <returns>
+ <paramref name="value" /> is returned unchanged.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.UInt16)">
+ <summary>Converts the value of the specified 16-bit unsigned integer to its equivalent string representation.</summary>
+ <param name="value">The 16-bit unsigned integer to convert.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.UInt16,System.IFormatProvider)">
+ <summary>Converts the value of the specified 16-bit unsigned integer to its equivalent string representation, using the specified culture-specific formatting information.</summary>
+ <param name="value">The 16-bit unsigned integer to convert.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.UInt32)">
+ <summary>Converts the value of the specified 32-bit unsigned integer to its equivalent string representation.</summary>
+ <param name="value">The 32-bit unsigned integer to convert.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.UInt32,System.IFormatProvider)">
+ <summary>Converts the value of the specified 32-bit unsigned integer to its equivalent string representation, using the specified culture-specific formatting information.</summary>
+ <param name="value">The 32-bit unsigned integer to convert.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.UInt64)">
+ <summary>Converts the value of the specified 64-bit unsigned integer to its equivalent string representation.</summary>
+ <param name="value">The 64-bit unsigned integer to convert.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToString(System.UInt64,System.IFormatProvider)">
+ <summary>Converts the value of the specified 64-bit unsigned integer to its equivalent string representation, using the specified culture-specific formatting information.</summary>
+ <param name="value">The 64-bit unsigned integer to convert.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>The string representation of <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToUInt16(System.Boolean)">
+ <summary>Converts the specified Boolean value to the equivalent 16-bit unsigned integer.</summary>
+ <param name="value">The Boolean value to convert.</param>
+ <returns>The number 1 if <paramref name="value" /> is <see langword="true" />; otherwise, 0.</returns>
+ </member>
+ <member name="M:System.Convert.ToUInt16(System.Byte)">
+ <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent 16-bit unsigned integer.</summary>
+ <param name="value">The 8-bit unsigned integer to convert.</param>
+ <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToUInt16(System.Char)">
+ <summary>Converts the value of the specified Unicode character to the equivalent 16-bit unsigned integer.</summary>
+ <param name="value">The Unicode character to convert.</param>
+ <returns>The 16-bit unsigned integer equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToUInt16(System.DateTime)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The date and time value to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt16(System.Decimal)">
+ <summary>Converts the value of the specified decimal number to an equivalent 16-bit unsigned integer.</summary>
+ <param name="value">The decimal number to convert.</param>
+ <returns>
+ <paramref name="value" />, rounded to the nearest 16-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt16(System.Double)">
+ <summary>Converts the value of the specified double-precision floating-point number to an equivalent 16-bit unsigned integer.</summary>
+ <param name="value">The double-precision floating-point number to convert.</param>
+ <returns>
+ <paramref name="value" />, rounded to the nearest 16-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt16(System.Int16)">
+ <summary>Converts the value of the specified 16-bit signed integer to the equivalent 16-bit unsigned integer.</summary>
+ <param name="value">The 16-bit signed integer to convert.</param>
+ <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than zero.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt16(System.Int32)">
+ <summary>Converts the value of the specified 32-bit signed integer to an equivalent 16-bit unsigned integer.</summary>
+ <param name="value">The 32-bit signed integer to convert.</param>
+ <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt16(System.Int64)">
+ <summary>Converts the value of the specified 64-bit signed integer to an equivalent 16-bit unsigned integer.</summary>
+ <param name="value">The 64-bit signed integer to convert.</param>
+ <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt16(System.Object)">
+ <summary>Converts the value of the specified object to a 16-bit unsigned integer.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or <see langword="null" />.</param>
+ <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in an appropriate format.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
+-or-
+The conversion is not supported.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt16.MinValue" /> or greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt16(System.Object,System.IFormatProvider)">
+ <summary>Converts the value of the specified object to a 16-bit unsigned integer, using the specified culture-specific formatting information.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in an appropriate format.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
+-or-
+The conversion is not supported.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt16.MinValue" /> or greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt16(System.SByte)">
+ <summary>Converts the value of the specified 8-bit signed integer to the equivalent 16-bit unsigned integer.</summary>
+ <param name="value">The 8-bit signed integer to convert.</param>
+ <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than zero.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt16(System.Single)">
+ <summary>Converts the value of the specified single-precision floating-point number to an equivalent 16-bit unsigned integer.</summary>
+ <param name="value">The single-precision floating-point number to convert.</param>
+ <returns>
+ <paramref name="value" />, rounded to the nearest 16-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt16(System.String)">
+ <summary>Converts the specified string representation of a number to an equivalent 16-bit unsigned integer.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <returns>A 16-bit unsigned integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt16.MinValue" /> or greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt16(System.String,System.IFormatProvider)">
+ <summary>Converts the specified string representation of a number to an equivalent 16-bit unsigned integer, using the specified culture-specific formatting information.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>A 16-bit unsigned integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt16.MinValue" /> or greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt16(System.String,System.Int32)">
+ <summary>Converts the string representation of a number in a specified base to an equivalent 16-bit unsigned integer.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <param name="fromBase">The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16.</param>
+ <returns>A 16-bit unsigned integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="fromBase" /> is not 2, 8, 10, or 16.
+-or-
+<paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="value" /> is <see cref="F:System.String.Empty" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign.
+-or-
+<paramref name="value" /> represents a number that is less than <see cref="F:System.UInt16.MinValue" /> or greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt16(System.UInt16)">
+ <summary>Returns the specified 16-bit unsigned integer; no actual conversion is performed.</summary>
+ <param name="value">The 16-bit unsigned integer to return.</param>
+ <returns>
+ <paramref name="value" /> is returned unchanged.</returns>
+ </member>
+ <member name="M:System.Convert.ToUInt16(System.UInt32)">
+ <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent 16-bit unsigned integer.</summary>
+ <param name="value">The 32-bit unsigned integer to convert.</param>
+ <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt16(System.UInt64)">
+ <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent 16-bit unsigned integer.</summary>
+ <param name="value">The 64-bit unsigned integer to convert.</param>
+ <returns>A 16-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.UInt16.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt32(System.Boolean)">
+ <summary>Converts the specified Boolean value to the equivalent 32-bit unsigned integer.</summary>
+ <param name="value">The Boolean value to convert.</param>
+ <returns>The number 1 if <paramref name="value" /> is <see langword="true" />; otherwise, 0.</returns>
+ </member>
+ <member name="M:System.Convert.ToUInt32(System.Byte)">
+ <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent 32-bit unsigned integer.</summary>
+ <param name="value">The 8-bit unsigned integer to convert.</param>
+ <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToUInt32(System.Char)">
+ <summary>Converts the value of the specified Unicode character to the equivalent 32-bit unsigned integer.</summary>
+ <param name="value">The Unicode character to convert.</param>
+ <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToUInt32(System.DateTime)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The date and time value to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt32(System.Decimal)">
+ <summary>Converts the value of the specified decimal number to an equivalent 32-bit unsigned integer.</summary>
+ <param name="value">The decimal number to convert.</param>
+ <returns>
+ <paramref name="value" />, rounded to the nearest 32-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt32(System.Double)">
+ <summary>Converts the value of the specified double-precision floating-point number to an equivalent 32-bit unsigned integer.</summary>
+ <param name="value">The double-precision floating-point number to convert.</param>
+ <returns>
+ <paramref name="value" />, rounded to the nearest 32-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt32(System.Int16)">
+ <summary>Converts the value of the specified 16-bit signed integer to the equivalent 32-bit unsigned integer.</summary>
+ <param name="value">The 16-bit signed integer to convert.</param>
+ <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than zero.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt32(System.Int32)">
+ <summary>Converts the value of the specified 32-bit signed integer to an equivalent 32-bit unsigned integer.</summary>
+ <param name="value">The 32-bit signed integer to convert.</param>
+ <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than zero.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt32(System.Int64)">
+ <summary>Converts the value of the specified 64-bit signed integer to an equivalent 32-bit unsigned integer.</summary>
+ <param name="value">The 64-bit signed integer to convert.</param>
+ <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt32(System.Object)">
+ <summary>Converts the value of the specified object to a 32-bit unsigned integer.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or <see langword="null" />.</param>
+ <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in an appropriate format.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
+-or-
+The conversion is not supported.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt32(System.Object,System.IFormatProvider)">
+ <summary>Converts the value of the specified object to a 32-bit unsigned integer, using the specified culture-specific formatting information.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in an appropriate format.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
+-or-
+The conversion is not supported.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt32(System.SByte)">
+ <summary>Converts the value of the specified 8-bit signed integer to the equivalent 32-bit unsigned integer.</summary>
+ <param name="value">The 8-bit signed integer to convert.</param>
+ <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than zero.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt32(System.Single)">
+ <summary>Converts the value of the specified single-precision floating-point number to an equivalent 32-bit unsigned integer.</summary>
+ <param name="value">The single-precision floating-point number to convert.</param>
+ <returns>
+ <paramref name="value" />, rounded to the nearest 32-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt32(System.String)">
+ <summary>Converts the specified string representation of a number to an equivalent 32-bit unsigned integer.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <returns>A 32-bit unsigned integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt32(System.String,System.IFormatProvider)">
+ <summary>Converts the specified string representation of a number to an equivalent 32-bit unsigned integer, using the specified culture-specific formatting information.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>A 32-bit unsigned integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt32(System.String,System.Int32)">
+ <summary>Converts the string representation of a number in a specified base to an equivalent 32-bit unsigned integer.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <param name="fromBase">The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16.</param>
+ <returns>A 32-bit unsigned integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="fromBase" /> is not 2, 8, 10, or 16.
+-or-
+<paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="value" /> is <see cref="F:System.String.Empty" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign.
+-or-
+<paramref name="value" /> represents a number that is less than <see cref="F:System.UInt32.MinValue" /> or greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt32(System.UInt16)">
+ <summary>Converts the value of the specified 16-bit unsigned integer to the equivalent 32-bit unsigned integer.</summary>
+ <param name="value">The 16-bit unsigned integer to convert.</param>
+ <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToUInt32(System.UInt32)">
+ <summary>Returns the specified 32-bit unsigned integer; no actual conversion is performed.</summary>
+ <param name="value">The 32-bit unsigned integer to return.</param>
+ <returns>
+ <paramref name="value" /> is returned unchanged.</returns>
+ </member>
+ <member name="M:System.Convert.ToUInt32(System.UInt64)">
+ <summary>Converts the value of the specified 64-bit unsigned integer to an equivalent 32-bit unsigned integer.</summary>
+ <param name="value">The 64-bit unsigned integer to convert.</param>
+ <returns>A 32-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is greater than <see cref="F:System.UInt32.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt64(System.Boolean)">
+ <summary>Converts the specified Boolean value to the equivalent 64-bit unsigned integer.</summary>
+ <param name="value">The Boolean value to convert.</param>
+ <returns>The number 1 if <paramref name="value" /> is <see langword="true" />; otherwise, 0.</returns>
+ </member>
+ <member name="M:System.Convert.ToUInt64(System.Byte)">
+ <summary>Converts the value of the specified 8-bit unsigned integer to the equivalent 64-bit unsigned integer.</summary>
+ <param name="value">The 8-bit unsigned integer to convert.</param>
+ <returns>A 64-bit signed integer that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToUInt64(System.Char)">
+ <summary>Converts the value of the specified Unicode character to the equivalent 64-bit unsigned integer.</summary>
+ <param name="value">The Unicode character to convert.</param>
+ <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToUInt64(System.DateTime)">
+ <summary>Calling this method always throws <see cref="T:System.InvalidCastException" />.</summary>
+ <param name="value">The date and time value to convert.</param>
+ <returns>This conversion is not supported. No value is returned.</returns>
+ <exception cref="T:System.InvalidCastException">This conversion is not supported.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt64(System.Decimal)">
+ <summary>Converts the value of the specified decimal number to an equivalent 64-bit unsigned integer.</summary>
+ <param name="value">The decimal number to convert.</param>
+ <returns>
+ <paramref name="value" />, rounded to the nearest 64-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt64.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt64(System.Double)">
+ <summary>Converts the value of the specified double-precision floating-point number to an equivalent 64-bit unsigned integer.</summary>
+ <param name="value">The double-precision floating-point number to convert.</param>
+ <returns>
+ <paramref name="value" />, rounded to the nearest 64-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt64.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt64(System.Int16)">
+ <summary>Converts the value of the specified 16-bit signed integer to the equivalent 64-bit unsigned integer.</summary>
+ <param name="value">The 16-bit signed integer to convert.</param>
+ <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than zero.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt64(System.Int32)">
+ <summary>Converts the value of the specified 32-bit signed integer to an equivalent 64-bit unsigned integer.</summary>
+ <param name="value">The 32-bit signed integer to convert.</param>
+ <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than zero.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt64(System.Int64)">
+ <summary>Converts the value of the specified 64-bit signed integer to an equivalent 64-bit unsigned integer.</summary>
+ <param name="value">The 64-bit signed integer to convert.</param>
+ <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than zero.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt64(System.Object)">
+ <summary>Converts the value of the specified object to a 64-bit unsigned integer.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface, or <see langword="null" />.</param>
+ <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in an appropriate format.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
+-or-
+The conversion is not supported.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt64(System.Object,System.IFormatProvider)">
+ <summary>Converts the value of the specified object to a 64-bit unsigned integer, using the specified culture-specific formatting information.</summary>
+ <param name="value">An object that implements the <see cref="T:System.IConvertible" /> interface.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />, or zero if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> is not in an appropriate format.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="value" /> does not implement the <see cref="T:System.IConvertible" /> interface.
+-or-
+The conversion is not supported.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt64(System.SByte)">
+ <summary>Converts the value of the specified 8-bit signed integer to the equivalent 64-bit unsigned integer.</summary>
+ <param name="value">The 8-bit signed integer to convert.</param>
+ <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than zero.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt64(System.Single)">
+ <summary>Converts the value of the specified single-precision floating-point number to an equivalent 64-bit unsigned integer.</summary>
+ <param name="value">The single-precision floating-point number to convert.</param>
+ <returns>
+ <paramref name="value" />, rounded to the nearest 64-bit unsigned integer. If <paramref name="value" /> is halfway between two whole numbers, the even number is returned; that is, 4.5 is converted to 4, and 5.5 is converted to 6.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> is less than zero or greater than <see cref="F:System.UInt64.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt64(System.String)">
+ <summary>Converts the specified string representation of a number to an equivalent 64-bit unsigned integer.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <returns>A 64-bit signed integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt64(System.String,System.IFormatProvider)">
+ <summary>Converts the specified string representation of a number to an equivalent 64-bit unsigned integer, using the specified culture-specific formatting information.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <param name="provider">An object that supplies culture-specific formatting information.</param>
+ <returns>A 64-bit unsigned integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> does not consist of an optional sign followed by a sequence of digits (0 through 9).</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> represents a number that is less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt64(System.String,System.Int32)">
+ <summary>Converts the string representation of a number in a specified base to an equivalent 64-bit unsigned integer.</summary>
+ <param name="value">A string that contains the number to convert.</param>
+ <param name="fromBase">The base of the number in <paramref name="value" />, which must be 2, 8, 10, or 16.</param>
+ <returns>A 64-bit unsigned integer that is equivalent to the number in <paramref name="value" />, or 0 (zero) if <paramref name="value" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="fromBase" /> is not 2, 8, 10, or 16.
+-or-
+<paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="value" /> is <see cref="F:System.String.Empty" />.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="value" /> contains a character that is not a valid digit in the base specified by <paramref name="fromBase" />. The exception message indicates that there are no digits to convert if the first character in <paramref name="value" /> is invalid; otherwise, the message indicates that <paramref name="value" /> contains invalid trailing characters.</exception>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" />, which represents a non-base 10 unsigned number, is prefixed with a negative sign.
+-or-
+<paramref name="value" /> represents a number that is less than <see cref="F:System.UInt64.MinValue" /> or greater than <see cref="F:System.UInt64.MaxValue" />.</exception>
+ </member>
+ <member name="M:System.Convert.ToUInt64(System.UInt16)">
+ <summary>Converts the value of the specified 16-bit unsigned integer to the equivalent 64-bit unsigned integer.</summary>
+ <param name="value">The 16-bit unsigned integer to convert.</param>
+ <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToUInt64(System.UInt32)">
+ <summary>Converts the value of the specified 32-bit unsigned integer to an equivalent 64-bit unsigned integer.</summary>
+ <param name="value">The 32-bit unsigned integer to convert.</param>
+ <returns>A 64-bit unsigned integer that is equivalent to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Convert.ToUInt64(System.UInt64)">
+ <summary>Returns the specified 64-bit unsigned integer; no actual conversion is performed.</summary>
+ <param name="value">The 64-bit unsigned integer to return.</param>
+ <returns>
+ <paramref name="value" /> is returned unchanged.</returns>
+ </member>
+ <member name="M:System.Convert.TryFromBase64Chars(System.ReadOnlySpan{System.Char},System.Span{System.Byte},System.Int32@)">
+ <param name="chars" />
+ <param name="bytes" />
+ <param name="bytesWritten" />
+ </member>
+ <member name="M:System.Convert.TryFromBase64String(System.String,System.Span{System.Byte},System.Int32@)">
+ <param name="s" />
+ <param name="bytes" />
+ <param name="bytesWritten" />
+ </member>
+ <member name="M:System.Convert.TryToBase64Chars(System.ReadOnlySpan{System.Byte},System.Span{System.Char},System.Int32@,System.Base64FormattingOptions)">
+ <param name="bytes" />
+ <param name="chars" />
+ <param name="charsWritten" />
+ <param name="options" />
+ </member>
+ <member name="T:System.Diagnostics.Stopwatch">
+ <summary>Provides a set of methods and properties that you can use to accurately measure elapsed time.</summary>
+ </member>
+ <member name="M:System.Diagnostics.Stopwatch.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Diagnostics.Stopwatch" /> class.</summary>
+ </member>
+ <member name="P:System.Diagnostics.Stopwatch.Elapsed">
+ <summary>Gets the total elapsed time measured by the current instance.</summary>
+ <returns>A read-only <see cref="T:System.TimeSpan" /> representing the total elapsed time measured by the current instance.</returns>
+ </member>
+ <member name="P:System.Diagnostics.Stopwatch.ElapsedMilliseconds">
+ <summary>Gets the total elapsed time measured by the current instance, in milliseconds.</summary>
+ <returns>A read-only long integer representing the total number of milliseconds measured by the current instance.</returns>
+ </member>
+ <member name="P:System.Diagnostics.Stopwatch.ElapsedTicks">
+ <summary>Gets the total elapsed time measured by the current instance, in timer ticks.</summary>
+ <returns>A read-only long integer representing the total number of timer ticks measured by the current instance.</returns>
+ </member>
+ <member name="F:System.Diagnostics.Stopwatch.Frequency">
+ <summary>Gets the frequency of the timer as the number of ticks per second. This field is read-only.</summary>
+ </member>
+ <member name="M:System.Diagnostics.Stopwatch.GetTimestamp">
+ <summary>Gets the current number of ticks in the timer mechanism.</summary>
+ <returns>A long integer representing the tick counter value of the underlying timer mechanism.</returns>
+ </member>
+ <member name="F:System.Diagnostics.Stopwatch.IsHighResolution">
+ <summary>Indicates whether the timer is based on a high-resolution performance counter. This field is read-only.</summary>
+ </member>
+ <member name="P:System.Diagnostics.Stopwatch.IsRunning">
+ <summary>Gets a value indicating whether the <see cref="T:System.Diagnostics.Stopwatch" /> timer is running.</summary>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Diagnostics.Stopwatch" /> instance is currently running and measuring elapsed time for an interval; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Diagnostics.Stopwatch.Reset">
+ <summary>Stops time interval measurement and resets the elapsed time to zero.</summary>
+ </member>
+ <member name="M:System.Diagnostics.Stopwatch.Restart">
+ <summary>Stops time interval measurement, resets the elapsed time to zero, and starts measuring elapsed time.</summary>
+ </member>
+ <member name="M:System.Diagnostics.Stopwatch.Start">
+ <summary>Starts, or resumes, measuring elapsed time for an interval.</summary>
+ </member>
+ <member name="M:System.Diagnostics.Stopwatch.StartNew">
+ <summary>Initializes a new <see cref="T:System.Diagnostics.Stopwatch" /> instance, sets the elapsed time property to zero, and starts measuring elapsed time.</summary>
+ <returns>A <see cref="T:System.Diagnostics.Stopwatch" /> that has just begun measuring elapsed time.</returns>
+ </member>
+ <member name="M:System.Diagnostics.Stopwatch.Stop">
+ <summary>Stops measuring elapsed time for an interval.</summary>
+ </member>
+ <member name="T:System.Environment">
+ <summary>Provides information about, and means to manipulate, the current environment and platform. This class cannot be inherited.</summary>
+ </member>
+ <member name="P:System.Environment.CommandLine">
+ <summary>Gets the command line for this process.</summary>
+ <returns>A string containing command-line arguments.</returns>
+ </member>
+ <member name="P:System.Environment.CurrentDirectory">
+ <summary>Gets or sets the fully qualified path of the current working directory.</summary>
+ <returns>A string containing a directory path.</returns>
+ <exception cref="T:System.ArgumentException">Attempted to set to an empty string ("").</exception>
+ <exception cref="T:System.ArgumentNullException">Attempted to set to <see langword="null." /></exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ <exception cref="T:System.IO.DirectoryNotFoundException">Attempted to set a local path that cannot be found.</exception>
+ <exception cref="T:System.Security.SecurityException">The caller does not have the appropriate permission.</exception>
+ </member>
+ <member name="P:System.Environment.CurrentManagedThreadId">
+ <summary>Gets a unique identifier for the current managed thread.</summary>
+ <returns>An integer that represents a unique identifier for this managed thread.</returns>
+ </member>
+ <member name="M:System.Environment.Exit(System.Int32)">
+ <summary>Terminates this process and returns an exit code to the operating system.</summary>
+ <param name="exitCode">The exit code to return to the operating system. Use 0 (zero) to indicate that the process completed successfully.</param>
+ <exception cref="T:System.Security.SecurityException">The caller does not have sufficient security permission to perform this function.</exception>
+ </member>
+ <member name="P:System.Environment.ExitCode">
+ <summary>Gets or sets the exit code of the process.</summary>
+ <returns>A 32-bit signed integer containing the exit code. The default value is 0 (zero), which indicates that the process completed successfully.</returns>
+ </member>
+ <member name="M:System.Environment.ExpandEnvironmentVariables(System.String)">
+ <summary>Replaces the name of each environment variable embedded in the specified string with the string equivalent of the value of the variable, then returns the resulting string.</summary>
+ <param name="name">A string containing the names of zero or more environment variables. Each environment variable is quoted with the percent sign character (%).</param>
+ <returns>A string with each environment variable replaced by its value.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="name" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Environment.FailFast(System.String)">
+ <summary>Immediately terminates a process after writing a message to the Windows Application event log, and then includes the message in error reporting to Microsoft.</summary>
+ <param name="message">A message that explains why the process was terminated, or <see langword="null" /> if no explanation is provided.</param>
+ </member>
+ <member name="M:System.Environment.FailFast(System.String,System.Exception)">
+ <summary>Immediately terminates a process after writing a message to the Windows Application event log, and then includes the message and exception information in error reporting to Microsoft.</summary>
+ <param name="message">A message that explains why the process was terminated, or <see langword="null" /> if no explanation is provided.</param>
+ <param name="exception">An exception that represents the error that caused the termination. This is typically the exception in a <see langword="catch" /> block.</param>
+ </member>
+ <member name="M:System.Environment.GetCommandLineArgs">
+ <summary>Returns a string array containing the command-line arguments for the current process.</summary>
+ <returns>An array of string where each element contains a command-line argument. The first element is the executable file name, and the following zero or more elements contain the remaining command-line arguments.</returns>
+ <exception cref="T:System.NotSupportedException">The system does not support command-line arguments.</exception>
+ </member>
+ <member name="M:System.Environment.GetEnvironmentVariable(System.String)">
+ <summary>Retrieves the value of an environment variable from the current process.</summary>
+ <param name="variable">The name of the environment variable.</param>
+ <returns>The value of the environment variable specified by <paramref name="variable" />, or <see langword="null" /> if the environment variable is not found.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="variable" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.Security.SecurityException">The caller does not have the required permission to perform this operation.</exception>
+ </member>
+ <member name="M:System.Environment.GetEnvironmentVariable(System.String,System.EnvironmentVariableTarget)">
+ <summary>Retrieves the value of an environment variable from the current process or from the Windows operating system registry key for the current user or local machine.</summary>
+ <param name="variable">The name of an environment variable.</param>
+ <param name="target">One of the <see cref="T:System.EnvironmentVariableTarget" /> values. Only <see cref="F:System.EnvironmentVariableTarget.Process" /> is supported on .NET Core running on Unix-bases systems.</param>
+ <returns>The value of the environment variable specified by the <paramref name="variable" /> and <paramref name="target" /> parameters, or <see langword="null" /> if the environment variable is not found.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="variable" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="target" /> is not a valid <see cref="T:System.EnvironmentVariableTarget" /> value.</exception>
+ <exception cref="T:System.Security.SecurityException">The caller does not have the required permission to perform this operation.</exception>
+ </member>
+ <member name="M:System.Environment.GetEnvironmentVariables">
+ <summary>Retrieves all environment variable names and their values from the current process.</summary>
+ <returns>A dictionary that contains all environment variable names and their values; otherwise, an empty dictionary if no environment variables are found.</returns>
+ <exception cref="T:System.Security.SecurityException">The caller does not have the required permission to perform this operation.</exception>
+ <exception cref="T:System.OutOfMemoryException">The buffer is out of memory.</exception>
+ </member>
+ <member name="M:System.Environment.GetEnvironmentVariables(System.EnvironmentVariableTarget)">
+ <summary>Retrieves all environment variable names and their values from the current process, or from the Windows operating system registry key for the current user or local machine.</summary>
+ <param name="target">One of the <see cref="T:System.EnvironmentVariableTarget" /> values. Only <see cref="F:System.EnvironmentVariableTarget.Process" /> is supported on .NET Core running on Unix-based systems.</param>
+ <returns>A dictionary that contains all environment variable names and their values from the source specified by the <paramref name="target" /> parameter; otherwise, an empty dictionary if no environment variables are found.</returns>
+ <exception cref="T:System.Security.SecurityException">The caller does not have the required permission to perform this operation for the specified value of <paramref name="target" />.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="target" /> contains an illegal value.</exception>
+ </member>
+ <member name="M:System.Environment.GetFolderPath(System.Environment.SpecialFolder)">
+ <summary>Gets the path to the system special folder that is identified by the specified enumeration.</summary>
+ <param name="folder">One of enumeration values that identifies a system special folder.</param>
+ <returns>The path to the specified system special folder, if that folder physically exists on your computer; otherwise, an empty string ("").
+A folder will not physically exist if the operating system did not create it, the existing folder was deleted, or the folder is a virtual directory, such as My Computer, which does not correspond to a physical path.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="folder" /> is not a member of <see cref="T:System.Environment.SpecialFolder" />.</exception>
+ <exception cref="T:System.PlatformNotSupportedException">The current platform is not supported.</exception>
+ </member>
+ <member name="M:System.Environment.GetFolderPath(System.Environment.SpecialFolder,System.Environment.SpecialFolderOption)">
+ <summary>Gets the path to the system special folder that is identified by the specified enumeration, and uses a specified option for accessing special folders.</summary>
+ <param name="folder">One of the enumeration values that identifies a system special folder.</param>
+ <param name="option">One of the enumeration values that specifies options to use for accessing a special folder.</param>
+ <returns>The path to the specified system special folder, if that folder physically exists on your computer; otherwise, an empty string ("").
+A folder will not physically exist if the operating system did not create it, the existing folder was deleted, or the folder is a virtual directory, such as My Computer, which does not correspond to a physical path.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="folder" /> is not a member of <see cref="T:System.Environment.SpecialFolder" />.
+-or-
+<paramref name="options" /> is not a member of <see cref="T:System.Environment.SpecialFolderOption" />.</exception>
+ <exception cref="T:System.PlatformNotSupportedException">The current platform is not supported.</exception>
+ </member>
+ <member name="M:System.Environment.GetLogicalDrives">
+ <summary>Returns an array of string containing the names of the logical drives on the current computer.</summary>
+ <returns>An array of strings where each element contains the name of a logical drive. For example, if the computer's hard drive is the first logical drive, the first element returned is "C:\".</returns>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.Security.SecurityException">The caller does not have the required permissions.</exception>
+ </member>
+ <member name="P:System.Environment.HasShutdownStarted">
+ <summary>Gets a value that indicates whether the current application domain is being unloaded or the common language runtime (CLR) is shutting down.</summary>
+ <returns>
+ <see langword="true" /> if the current application domain is being unloaded or the CLR is shutting down; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Environment.Is64BitOperatingSystem">
+ <summary>Determines whether the current operating system is a 64-bit operating system.</summary>
+ <returns>
+ <see langword="true" /> if the operating system is 64-bit; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Environment.Is64BitProcess">
+ <summary>Determines whether the current process is a 64-bit process.</summary>
+ <returns>
+ <see langword="true" /> if the process is 64-bit; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Environment.MachineName">
+ <summary>Gets the NetBIOS name of this local computer.</summary>
+ <returns>A string containing the name of this computer.</returns>
+ <exception cref="T:System.InvalidOperationException">The name of this computer cannot be obtained.</exception>
+ </member>
+ <member name="P:System.Environment.NewLine">
+ <summary>Gets the newline string defined for this environment.</summary>
+ <returns>A string containing "\r\n" for non-Unix platforms, or a string containing "\n" for Unix platforms.</returns>
+ </member>
+ <member name="P:System.Environment.OSVersion">
+ <summary>Gets an <see cref="T:System.OperatingSystem" /> object that contains the current platform identifier and version number.</summary>
+ <returns>An object that contains the platform identifier and version number.</returns>
+ <exception cref="T:System.InvalidOperationException">This property was unable to obtain the system version.
+-or-
+The obtained platform identifier is not a member of <see cref="T:System.PlatformID" /></exception>
+ </member>
+ <member name="P:System.Environment.ProcessorCount">
+ <summary>Gets the number of processors on the current machine.</summary>
+ <returns>The 32-bit signed integer that specifies the number of processors on the current machine. There is no default. If the current machine contains multiple processor groups, this property returns the number of logical processors that are available for use by the common language runtime (CLR).</returns>
+ </member>
+ <member name="M:System.Environment.SetEnvironmentVariable(System.String,System.String)">
+ <summary>Creates, modifies, or deletes an environment variable stored in the current process.</summary>
+ <param name="variable">The name of an environment variable.</param>
+ <param name="value">A value to assign to <paramref name="variable" />.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="variable" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="variable" /> contains a zero-length string, an initial hexadecimal zero character (0x00), or an equal sign ("=").
+-or-
+The length of <paramref name="variable" /> or <paramref name="value" /> is greater than or equal to 32,767 characters.
+-or-
+An error occurred during the execution of this operation.</exception>
+ <exception cref="T:System.Security.SecurityException">The caller does not have the required permission to perform this operation.</exception>
+ </member>
+ <member name="M:System.Environment.SetEnvironmentVariable(System.String,System.String,System.EnvironmentVariableTarget)">
+ <summary>Creates, modifies, or deletes an environment variable stored in the current process or in the Windows operating system registry key reserved for the current user or local machine.</summary>
+ <param name="variable">The name of an environment variable.</param>
+ <param name="value">A value to assign to <paramref name="variable" />.</param>
+ <param name="target">One of the enumeration values that specifies the location of the environment variable.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="variable" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="variable" /> contains a zero-length string, an initial hexadecimal zero character (0x00), or an equal sign ("=").
+-or-
+The length of <paramref name="variable" /> is greater than or equal to 32,767 characters.
+-or-
+<paramref name="target" /> is not a member of the <see cref="T:System.EnvironmentVariableTarget" /> enumeration.
+-or-
+<paramref name="target" /> is <see cref="F:System.EnvironmentVariableTarget.Machine" /> or <see cref="F:System.EnvironmentVariableTarget.User" />, and the length of <paramref name="variable" /> is greater than or equal to 255.
+-or-
+<paramref name="target" /> is <see cref="F:System.EnvironmentVariableTarget.Process" /> and the length of <paramref name="value" /> is greater than or equal to 32,767 characters.
+-or-
+An error occurred during the execution of this operation.</exception>
+ <exception cref="T:System.Security.SecurityException">The caller does not have the required permission to perform this operation.</exception>
+ </member>
+ <member name="T:System.Environment.SpecialFolder">
+ <summary>Specifies enumerated constants used to retrieve directory paths to system special folders.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.AdminTools">
+ <summary>The file system directory that is used to store administrative tools for an individual user. The Microsoft Management Console (MMC) will save customized consoles to this directory, and it will roam with the user. Added in the .NET Framework 4.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.ApplicationData">
+ <summary>The directory that serves as a common repository for application-specific data for the current roaming user. A roaming user works on more than one computer on a network. A roaming user's profile is kept on a server on the network and is loaded onto a system when the user logs on.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.CDBurning">
+ <summary>The file system directory that acts as a staging area for files waiting to be written to a CD. Added in the .NET Framework 4.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.CommonAdminTools">
+ <summary>The file system directory that contains administrative tools for all users of the computer. Added in the .NET Framework 4.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.CommonApplicationData">
+ <summary>The directory that serves as a common repository for application-specific data that is used by all users.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.CommonDesktopDirectory">
+ <summary>The file system directory that contains files and folders that appear on the desktop for all users. This special folder is valid only for Windows NT systems. Added in the .NET Framework 4.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.CommonDocuments">
+ <summary>The file system directory that contains documents that are common to all users. This special folder is valid for Windows NT systems, Windows 95, and Windows 98 systems with Shfolder.dll installed. Added in the .NET Framework 4.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.CommonMusic">
+ <summary>The file system directory that serves as a repository for music files common to all users. Added in the .NET Framework 4.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.CommonOemLinks">
+ <summary>This value is recognized in Windows Vista for backward compatibility, but the special folder itself is no longer used. Added in the .NET Framework 4.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.CommonPictures">
+ <summary>The file system directory that serves as a repository for image files common to all users. Added in the .NET Framework 4.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.CommonProgramFiles">
+ <summary>The directory for components that are shared across applications.
+To get the x86 common program files directory on a non-x86 system, use the <see cref="F:System.Environment.SpecialFolder.ProgramFilesX86" /> member.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.CommonProgramFilesX86">
+ <summary>The Program Files folder. Added in the .NET Framework 4.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.CommonPrograms">
+ <summary>A folder for components that are shared across applications. This special folder is valid only for Windows NT, Windows 2000, and Windows XP systems. Added in the .NET Framework 4.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.CommonStartMenu">
+ <summary>The file system directory that contains the programs and folders that appear on the Start menu for all users. This special folder is valid only for Windows NT systems. Added in the .NET Framework 4.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.CommonStartup">
+ <summary>The file system directory that contains the programs that appear in the Startup folder for all users. This special folder is valid only for Windows NT systems. Added in the .NET Framework 4.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.CommonTemplates">
+ <summary>The file system directory that contains the templates that are available to all users. This special folder is valid only for Windows NT systems. Added in the .NET Framework 4.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.CommonVideos">
+ <summary>The file system directory that serves as a repository for video files common to all users. Added in the .NET Framework 4.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.Cookies">
+ <summary>The directory that serves as a common repository for Internet cookies.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.Desktop">
+ <summary>The logical Desktop rather than the physical file system location.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.DesktopDirectory">
+ <summary>The directory used to physically store file objects on the desktop. Do not confuse this directory with the desktop folder itself, which is a virtual folder.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.Favorites">
+ <summary>The directory that serves as a common repository for the user's favorite items.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.Fonts">
+ <summary>A virtual folder that contains fonts. Added in the .NET Framework 4.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.History">
+ <summary>The directory that serves as a common repository for Internet history items.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.InternetCache">
+ <summary>The directory that serves as a common repository for temporary Internet files.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.LocalApplicationData">
+ <summary>The directory that serves as a common repository for application-specific data that is used by the current, non-roaming user.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.LocalizedResources">
+ <summary>The file system directory that contains localized resource data. Added in the .NET Framework 4.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.MyComputer">
+ <summary>The My Computer folder. When passed to the <see langword="Environment.GetFolderPath" /> method, the <see langword="MyComputer" /> enumeration member always yields the empty string ("") because no path is defined for the My Computer folder.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.MyDocuments">
+ <summary>The My Documents folder. This member is equivalent to <see cref="F:System.Environment.SpecialFolder.Personal" />.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.MyMusic">
+ <summary>The My Music folder.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.MyPictures">
+ <summary>The My Pictures folder.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.MyVideos">
+ <summary>The file system directory that serves as a repository for videos that belong to a user. Added in the .NET Framework 4.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.NetworkShortcuts">
+ <summary>A file system directory that contains the link objects that may exist in the My Network Places virtual folder. Added in the .NET Framework 4.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.Personal">
+ <summary>The directory that serves as a common repository for documents. This member is equivalent to <see cref="F:System.Environment.SpecialFolder.MyDocuments" />.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.PrinterShortcuts">
+ <summary>The file system directory that contains the link objects that can exist in the Printers virtual folder. Added in the .NET Framework 4.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.ProgramFiles">
+ <summary>The program files directory.
+On a non-x86 system, passing <see cref="F:System.Environment.SpecialFolder.ProgramFiles" /> to the <see cref="M:System.Environment.GetFolderPath(System.Environment.SpecialFolder)" /> method returns the path for non-x86 programs. To get the x86 program files directory on a non-x86 system, use the <see cref="F:System.Environment.SpecialFolder.ProgramFilesX86" /> member.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.ProgramFilesX86">
+ <summary>The x86 Program Files folder. Added in the .NET Framework 4.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.Programs">
+ <summary>The directory that contains the user's program groups.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.Recent">
+ <summary>The directory that contains the user's most recently used documents.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.Resources">
+ <summary>The file system directory that contains resource data. Added in the .NET Framework 4.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.SendTo">
+ <summary>The directory that contains the Send To menu items.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.StartMenu">
+ <summary>The directory that contains the Start menu items.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.Startup">
+ <summary>The directory that corresponds to the user's Startup program group. The system starts these programs whenever a user logs on or starts Windows.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.System">
+ <summary>The System directory.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.SystemX86">
+ <summary>The Windows System folder. Added in the .NET Framework 4.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.Templates">
+ <summary>The directory that serves as a common repository for document templates.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.UserProfile">
+ <summary>The user's profile folder. Applications should not create files or folders at this level; they should put their data under the locations referred to by <see cref="F:System.Environment.SpecialFolder.ApplicationData" />. Added in the .NET Framework 4.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolder.Windows">
+ <summary>The Windows directory or SYSROOT. This corresponds to the %windir% or %SYSTEMROOT% environment variables. Added in the .NET Framework 4.</summary>
+ </member>
+ <member name="T:System.Environment.SpecialFolderOption">
+ <summary>Specifies options to use for getting the path to a special folder.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolderOption.Create">
+ <summary>The path to the folder is created if it does not already exist.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolderOption.DoNotVerify">
+ <summary>The path to the folder is returned without verifying whether the path exists. If the folder is located on a network, specifying this option can reduce lag time.</summary>
+ </member>
+ <member name="F:System.Environment.SpecialFolderOption.None">
+ <summary>The path to the folder is verified. If the folder exists, the path is returned. If the folder does not exist, an empty string is returned. This is the default behavior.</summary>
+ </member>
+ <member name="P:System.Environment.StackTrace">
+ <summary>Gets current stack trace information.</summary>
+ <returns>A string containing stack trace information. This value can be <see cref="F:System.String.Empty" />.</returns>
+ </member>
+ <member name="P:System.Environment.SystemDirectory">
+ <summary>Gets the fully qualified path of the system directory.</summary>
+ <returns>A string containing a directory path.</returns>
+ </member>
+ <member name="P:System.Environment.SystemPageSize">
+ <summary>Gets the number of bytes in the operating system's memory page.</summary>
+ <returns>The number of bytes in the system memory page.</returns>
+ </member>
+ <member name="P:System.Environment.TickCount">
+ <summary>Gets the number of milliseconds elapsed since the system started.</summary>
+ <returns>A 32-bit signed integer containing the amount of time in milliseconds that has passed since the last time the computer was started.</returns>
+ </member>
+ <member name="P:System.Environment.TickCount64">
+ <summary>Gets the number of milliseconds elapsed since the system started.</summary>
+ <returns>The elapsed milliseconds since the system started.</returns>
+ </member>
+ <member name="P:System.Environment.UserDomainName">
+ <summary>Gets the network domain name associated with the current user.</summary>
+ <returns>The network domain name associated with the current user.</returns>
+ <exception cref="T:System.PlatformNotSupportedException">The operating system does not support retrieving the network domain name.</exception>
+ <exception cref="T:System.InvalidOperationException">The network domain name cannot be retrieved.</exception>
+ </member>
+ <member name="P:System.Environment.UserInteractive">
+ <summary>Gets a value indicating whether the current process is running in user interactive mode.</summary>
+ <returns>
+ <see langword="true" /> if the current process is running in user interactive mode; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Environment.UserName">
+ <summary>Gets the user name of the person who is currently logged on to the operating system.</summary>
+ <returns>The user name of the person who is logged on to the operating system.</returns>
+ </member>
+ <member name="P:System.Environment.Version">
+ <summary>Gets a <see cref="T:System.Version" /> object that describes the major, minor, build, and revision numbers of the common language runtime.</summary>
+ <returns>An object that displays the version of the common language runtime.</returns>
+ </member>
+ <member name="P:System.Environment.WorkingSet">
+ <summary>Gets the amount of physical memory mapped to the process context.</summary>
+ <returns>A 64-bit signed integer containing the number of bytes of physical memory mapped to the process context.</returns>
+ </member>
+ <member name="T:System.EnvironmentVariableTarget">
+ <summary>Specifies the location where an environment variable is stored or retrieved in a set or get operation.</summary>
+ </member>
+ <member name="F:System.EnvironmentVariableTarget.Machine">
+ <summary>The environment variable is stored or retrieved from the <see langword="HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment" /> key in the Windows operating system registry. This value should be used on .NET implementations running on Windows systems only.</summary>
+ </member>
+ <member name="F:System.EnvironmentVariableTarget.Process">
+ <summary>The environment variable is stored or retrieved from the environment block associated with the current process.</summary>
+ </member>
+ <member name="F:System.EnvironmentVariableTarget.User">
+ <summary>The environment variable is stored or retrieved from the <see langword="HKEY_CURRENT_USER\Environment" /> key in the Windows operating system registry. This value should be used on .NET implementations running on Windows systems only.</summary>
+ </member>
+ <member name="T:System.Globalization.GlobalizationExtensions">
+ <summary>Provides globalization-related extension methods.</summary>
+ </member>
+ <member name="M:System.Globalization.GlobalizationExtensions.GetStringComparer(System.Globalization.CompareInfo,System.Globalization.CompareOptions)">
+ <summary>Returns a <see cref="T:System.StringComparer" /> object based on the culture-sensitive string comparison rules of a specified <see cref="T:System.Globalization.CompareInfo" /> object.</summary>
+ <param name="compareInfo">An object that supports culture-sensitive string comparison.</param>
+ <param name="options">A value that defines how strings should be compared. <paramref name="options" /> is either the enumeration value <see cref="F:System.Globalization.CompareOptions.Ordinal" />, the enumeration value <see cref="F:System.Globalization.CompareOptions.OrdinalIgnoreCase" />, or a bitwise combination of one or more of the following values: <see cref="F:System.Globalization.CompareOptions.IgnoreCase" />, <see cref="F:System.Globalization.CompareOptions.IgnoreSymbols" />, <see cref="F:System.Globalization.CompareOptions.IgnoreNonSpace" />, <see cref="F:System.Globalization.CompareOptions.IgnoreWidth" />, <see cref="F:System.Globalization.CompareOptions.IgnoreKanaType" />, and <see cref="F:System.Globalization.CompareOptions.StringSort" />.</param>
+ <returns>An object that can be used to perform string comparisons.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="compareInfo" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="options" /> is invalid.</exception>
+ </member>
+ <member name="T:System.IO.BinaryReader">
+ <summary>Reads primitive data types as binary values in a specific encoding.</summary>
+ </member>
+ <member name="M:System.IO.BinaryReader.#ctor(System.IO.Stream)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.BinaryReader" /> class based on the specified stream and using UTF-8 encoding.</summary>
+ <param name="input">The input stream.</param>
+ <exception cref="T:System.ArgumentException">The stream does not support reading, is <see langword="null" />, or is already closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.#ctor(System.IO.Stream,System.Text.Encoding)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.BinaryReader" /> class based on the specified stream and character encoding.</summary>
+ <param name="input">The input stream.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <exception cref="T:System.ArgumentException">The stream does not support reading, is <see langword="null" />, or is already closed.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="encoding" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.#ctor(System.IO.Stream,System.Text.Encoding,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.BinaryReader" /> class based on the specified stream and character encoding, and optionally leaves the stream open.</summary>
+ <param name="input">The input stream.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <param name="leaveOpen">
+ <see langword="true" /> to leave the stream open after the <see cref="T:System.IO.BinaryReader" /> object is disposed; otherwise, <see langword="false" />.</param>
+ <exception cref="T:System.ArgumentException">The stream does not support reading, is <see langword="null" />, or is already closed.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="encoding" /> or <paramref name="input" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="P:System.IO.BinaryReader.BaseStream">
+ <summary>Exposes access to the underlying stream of the <see cref="T:System.IO.BinaryReader" />.</summary>
+ <returns>The underlying stream associated with the <see langword="BinaryReader" />.</returns>
+ </member>
+ <member name="M:System.IO.BinaryReader.Close">
+ <summary>Closes the current reader and the underlying stream.</summary>
+ </member>
+ <member name="M:System.IO.BinaryReader.Dispose">
+ <summary>Releases all resources used by the current instance of the <see cref="T:System.IO.BinaryReader" /> class.</summary>
+ </member>
+ <member name="M:System.IO.BinaryReader.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.IO.BinaryReader" /> class and optionally releases the managed resources.</summary>
+ <param name="disposing">
+ <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
+ </member>
+ <member name="M:System.IO.BinaryReader.FillBuffer(System.Int32)">
+ <summary>Fills the internal buffer with the specified number of bytes read from the stream.</summary>
+ <param name="numBytes">The number of bytes to be read.</param>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached before <paramref name="numBytes" /> could be read.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">Requested <paramref name="numBytes" /> is larger than the internal buffer size.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.PeekChar">
+ <summary>Returns the next available character and does not advance the byte or character position.</summary>
+ <returns>The next available character, or -1 if no more characters are available or the stream does not support seeking.</returns>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ <exception cref="T:System.ArgumentException">The current character cannot be decoded into the internal character buffer by using the <see cref="T:System.Text.Encoding" /> selected for the stream.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.Read">
+ <summary>Reads characters from the underlying stream and advances the current position of the stream in accordance with the <see langword="Encoding" /> used and the specific character being read from the stream.</summary>
+ <returns>The next character from the input stream, or -1 if no characters are currently available.</returns>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.Read(System.Byte[],System.Int32,System.Int32)">
+ <summary>Reads the specified number of bytes from the stream, starting from a specified point in the byte array.</summary>
+ <param name="buffer">The buffer to read data into.</param>
+ <param name="index">The starting point in the buffer at which to begin reading into the buffer.</param>
+ <param name="count">The number of bytes to read.</param>
+ <returns>The number of bytes read into <paramref name="buffer" />. This might be less than the number of bytes requested if that many bytes are not available, or it might be zero if the end of the stream is reached.</returns>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index" /> is less than <paramref name="count" />.
+-or-
+The number of decoded characters to read is greater than <paramref name="count" />. This can happen if a Unicode decoder returns fallback characters or a surrogate pair.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.Read(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads the specified number of characters from the stream, starting from a specified point in the character array.</summary>
+ <param name="buffer">The buffer to read data into.</param>
+ <param name="index">The starting point in the buffer at which to begin reading into the buffer.</param>
+ <param name="count">The number of characters to read.</param>
+ <returns>The total number of characters read into the buffer. This might be less than the number of characters requested if that many characters are not currently available, or it might be zero if the end of the stream is reached.</returns>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index" /> is less than <paramref name="count" />.
+-or-
+The number of decoded characters to read is greater than <paramref name="count" />. This can happen if a Unicode decoder returns fallback characters or a surrogate pair.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.Read(System.Span{System.Byte})">
+ <summary>Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.</summary>
+ <param name="buffer">A region of memory. When this method returns, the contents of this region are replaced by the bytes read from the current source.</param>
+ <returns>The total number of bytes read into the buffer. This can be less than the number of bytes allocated in the buffer if that many bytes are not currently available, or zero (0) if the end of the stream has been reached.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.Read(System.Span{System.Char})">
+ <summary>Reads, from the current stream, the same number of characters as the length of the provided buffer, writes them in the provided buffer, and advances the current position in accordance with the <see langword="Encoding" /> used and the specific character being read from the stream.</summary>
+ <param name="buffer">A span of characters. When this method returns, the contents of this region are replaced by the characters read from the current source.</param>
+ <returns>The total number of characters read into the buffer. This might be less than the number of characters requested if that many characters are not currently available, or it might be zero if the end of the stream is reached.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.Read7BitEncodedInt">
+ <summary>Reads in a 32-bit integer in compressed format.</summary>
+ <returns>A 32-bit integer in compressed format.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ <exception cref="T:System.FormatException">The stream is corrupted.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadBoolean">
+ <summary>Reads a <see langword="Boolean" /> value from the current stream and advances the current position of the stream by one byte.</summary>
+ <returns>
+ <see langword="true" /> if the byte is nonzero; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadByte">
+ <summary>Reads the next byte from the current stream and advances the current position of the stream by one byte.</summary>
+ <returns>The next byte read from the current stream.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadBytes(System.Int32)">
+ <summary>Reads the specified number of bytes from the current stream into a byte array and advances the current position by that number of bytes.</summary>
+ <param name="count">The number of bytes to read. This value must be 0 or a non-negative number or an exception will occur.</param>
+ <returns>A byte array containing data read from the underlying stream. This might be less than the number of bytes requested if the end of the stream is reached.</returns>
+ <exception cref="T:System.ArgumentException">The number of decoded characters to read is greater than <paramref name="count" />. This can happen if a Unicode decoder returns fallback characters or a surrogate pair.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="count" /> is negative.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadChar">
+ <summary>Reads the next character from the current stream and advances the current position of the stream in accordance with the <see langword="Encoding" /> used and the specific character being read from the stream.</summary>
+ <returns>A character read from the current stream.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ <exception cref="T:System.ArgumentException">A surrogate character was read.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadChars(System.Int32)">
+ <summary>Reads the specified number of characters from the current stream, returns the data in a character array, and advances the current position in accordance with the <see langword="Encoding" /> used and the specific character being read from the stream.</summary>
+ <param name="count">The number of characters to read.</param>
+ <returns>A character array containing data read from the underlying stream. This might be less than the number of characters requested if the end of the stream is reached.</returns>
+ <exception cref="T:System.ArgumentException">The number of decoded characters to read is greater than <paramref name="count" />. This can happen if a Unicode decoder returns fallback characters or a surrogate pair.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="count" /> is negative.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadDecimal">
+ <summary>Reads a decimal value from the current stream and advances the current position of the stream by sixteen bytes.</summary>
+ <returns>A decimal value read from the current stream.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadDouble">
+ <summary>Reads an 8-byte floating point value from the current stream and advances the current position of the stream by eight bytes.</summary>
+ <returns>An 8-byte floating point value read from the current stream.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadInt16">
+ <summary>Reads a 2-byte signed integer from the current stream and advances the current position of the stream by two bytes.</summary>
+ <returns>A 2-byte signed integer read from the current stream.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadInt32">
+ <summary>Reads a 4-byte signed integer from the current stream and advances the current position of the stream by four bytes.</summary>
+ <returns>A 4-byte signed integer read from the current stream.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadInt64">
+ <summary>Reads an 8-byte signed integer from the current stream and advances the current position of the stream by eight bytes.</summary>
+ <returns>An 8-byte signed integer read from the current stream.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadSByte">
+ <summary>Reads a signed byte from this stream and advances the current position of the stream by one byte.</summary>
+ <returns>A signed byte read from the current stream.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadSingle">
+ <summary>Reads a 4-byte floating point value from the current stream and advances the current position of the stream by four bytes.</summary>
+ <returns>A 4-byte floating point value read from the current stream.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadString">
+ <summary>Reads a string from the current stream. The string is prefixed with the length, encoded as an integer seven bits at a time.</summary>
+ <returns>The string being read.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadUInt16">
+ <summary>Reads a 2-byte unsigned integer from the current stream using little-endian encoding and advances the position of the stream by two bytes.</summary>
+ <returns>A 2-byte unsigned integer read from this stream.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadUInt32">
+ <summary>Reads a 4-byte unsigned integer from the current stream and advances the position of the stream by four bytes.</summary>
+ <returns>A 4-byte unsigned integer read from this stream.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ </member>
+ <member name="M:System.IO.BinaryReader.ReadUInt64">
+ <summary>Reads an 8-byte unsigned integer from the current stream and advances the position of the stream by eight bytes.</summary>
+ <returns>An 8-byte unsigned integer read from this stream.</returns>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="T:System.IO.BinaryWriter">
+ <summary>Writes primitive types in binary to a stream and supports writing strings in a specific encoding.</summary>
+ </member>
+ <member name="M:System.IO.BinaryWriter.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.BinaryWriter" /> class that writes to a stream.</summary>
+ </member>
+ <member name="M:System.IO.BinaryWriter.#ctor(System.IO.Stream)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.BinaryWriter" /> class based on the specified stream and using UTF-8 encoding.</summary>
+ <param name="output">The output stream.</param>
+ <exception cref="T:System.ArgumentException">The stream does not support writing or is already closed.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="output" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.#ctor(System.IO.Stream,System.Text.Encoding)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.BinaryWriter" /> class based on the specified stream and character encoding.</summary>
+ <param name="output">The output stream.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <exception cref="T:System.ArgumentException">The stream does not support writing or is already closed.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="output" /> or <paramref name="encoding" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.#ctor(System.IO.Stream,System.Text.Encoding,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.BinaryWriter" /> class based on the specified stream and character encoding, and optionally leaves the stream open.</summary>
+ <param name="output">The output stream.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <param name="leaveOpen">
+ <see langword="true" /> to leave the stream open after the <see cref="T:System.IO.BinaryWriter" /> object is disposed; otherwise, <see langword="false" />.</param>
+ <exception cref="T:System.ArgumentException">The stream does not support writing or is already closed.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="output" /> or <paramref name="encoding" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="P:System.IO.BinaryWriter.BaseStream">
+ <summary>Gets the underlying stream of the <see cref="T:System.IO.BinaryWriter" />.</summary>
+ <returns>The underlying stream associated with the <see langword="BinaryWriter" />.</returns>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Close">
+ <summary>Closes the current <see cref="T:System.IO.BinaryWriter" /> and the underlying stream.</summary>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Dispose">
+ <summary>Releases all resources used by the current instance of the <see cref="T:System.IO.BinaryWriter" /> class.</summary>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.IO.BinaryWriter" /> and optionally releases the managed resources.</summary>
+ <param name="disposing">
+ <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
+ </member>
+ <member name="M:System.IO.BinaryWriter.DisposeAsync">
+ <summary>Asynchronously releases all resources used by the current instance of the <see cref="T:System.IO.BinaryWriter" /> class.</summary>
+ <returns>A task that represents the asynchronous dispose operation.</returns>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Flush">
+ <summary>Clears all buffers for the current writer and causes any buffered data to be written to the underlying device.</summary>
+ </member>
+ <member name="F:System.IO.BinaryWriter.Null">
+ <summary>Specifies a <see cref="T:System.IO.BinaryWriter" /> with no backing store.</summary>
+ </member>
+ <member name="F:System.IO.BinaryWriter.OutStream">
+ <summary>Holds the underlying stream.</summary>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Seek(System.Int32,System.IO.SeekOrigin)">
+ <summary>Sets the position within the current stream.</summary>
+ <param name="offset">A byte offset relative to <paramref name="origin" />.</param>
+ <param name="origin">A field of <see cref="T:System.IO.SeekOrigin" /> indicating the reference point from which the new position is to be obtained.</param>
+ <returns>The position with the current stream.</returns>
+ <exception cref="T:System.IO.IOException">The file pointer was moved to an invalid location.</exception>
+ <exception cref="T:System.ArgumentException">The <see cref="T:System.IO.SeekOrigin" /> value is invalid.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Boolean)">
+ <summary>Writes a one-byte <see langword="Boolean" /> value to the current stream, with 0 representing <see langword="false" /> and 1 representing <see langword="true" />.</summary>
+ <param name="value">The <see langword="Boolean" /> value to write (0 or 1).</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Byte)">
+ <summary>Writes an unsigned byte to the current stream and advances the stream position by one byte.</summary>
+ <param name="value">The unsigned byte to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Byte[])">
+ <summary>Writes a byte array to the underlying stream.</summary>
+ <param name="buffer">A byte array containing the data to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Byte[],System.Int32,System.Int32)">
+ <summary>Writes a region of a byte array to the current stream.</summary>
+ <param name="buffer">A byte array containing the data to write.</param>
+ <param name="index">The index of the first byte to read from <paramref name="buffer" /> and to write to the stream.</param>
+ <param name="count">The number of bytes to read from <paramref name="buffer" /> and to write to the stream.</param>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index" /> is less than <paramref name="count" />.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Char)">
+ <summary>Writes a Unicode character to the current stream and advances the current position of the stream in accordance with the <see langword="Encoding" /> used and the specific characters being written to the stream.</summary>
+ <param name="ch">The non-surrogate, Unicode character to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="ch" /> is a single surrogate character.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Char[])">
+ <summary>Writes a character array to the current stream and advances the current position of the stream in accordance with the <see langword="Encoding" /> used and the specific characters being written to the stream.</summary>
+ <param name="chars">A character array containing the data to write.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="chars" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Char[],System.Int32,System.Int32)">
+ <summary>Writes a section of a character array to the current stream, and advances the current position of the stream in accordance with the <see langword="Encoding" /> used and perhaps the specific characters being written to the stream.</summary>
+ <param name="chars">A character array containing the data to write.</param>
+ <param name="index">The index of the first character to read from <paramref name="chars" /> and to write to the stream.</param>
+ <param name="count">The number of characters to read from <paramref name="chars" /> and to write to the stream.</param>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index" /> is less than <paramref name="count" />.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="chars" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Decimal)">
+ <summary>Writes a decimal value to the current stream and advances the stream position by sixteen bytes.</summary>
+ <param name="value">The decimal value to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Double)">
+ <summary>Writes an eight-byte floating-point value to the current stream and advances the stream position by eight bytes.</summary>
+ <param name="value">The eight-byte floating-point value to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Int16)">
+ <summary>Writes a two-byte signed integer to the current stream and advances the stream position by two bytes.</summary>
+ <param name="value">The two-byte signed integer to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Int32)">
+ <summary>Writes a four-byte signed integer to the current stream and advances the stream position by four bytes.</summary>
+ <param name="value">The four-byte signed integer to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Int64)">
+ <summary>Writes an eight-byte signed integer to the current stream and advances the stream position by eight bytes.</summary>
+ <param name="value">The eight-byte signed integer to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.ReadOnlySpan{System.Byte})">
+ <summary>Writes a span of bytes to the current stream.</summary>
+ <param name="buffer">The span of bytes to write.</param>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.ReadOnlySpan{System.Char})">
+ <summary>Writes a span of characters to the current stream, and advances the current position of the stream in accordance with the <see langword="Encoding" /> used and perhaps the specific characters being written to the stream.</summary>
+ <param name="chars">A span of chars to write.</param>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.SByte)">
+ <summary>Writes a signed byte to the current stream and advances the stream position by one byte.</summary>
+ <param name="value">The signed byte to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.Single)">
+ <summary>Writes a four-byte floating-point value to the current stream and advances the stream position by four bytes.</summary>
+ <param name="value">The four-byte floating-point value to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.String)">
+ <summary>Writes a length-prefixed string to this stream in the current encoding of the <see cref="T:System.IO.BinaryWriter" />, and advances the current position of the stream in accordance with the encoding used and the specific characters being written to the stream.</summary>
+ <param name="value">The value to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.UInt16)">
+ <summary>Writes a two-byte unsigned integer to the current stream and advances the stream position by two bytes.</summary>
+ <param name="value">The two-byte unsigned integer to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.UInt32)">
+ <summary>Writes a four-byte unsigned integer to the current stream and advances the stream position by four bytes.</summary>
+ <param name="value">The four-byte unsigned integer to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write(System.UInt64)">
+ <summary>Writes an eight-byte unsigned integer to the current stream and advances the stream position by eight bytes.</summary>
+ <param name="value">The eight-byte unsigned integer to write.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.BinaryWriter.Write7BitEncodedInt(System.Int32)">
+ <summary>Writes a 32-bit integer in a compressed format.</summary>
+ <param name="value">The 32-bit integer to be written.</param>
+ <exception cref="T:System.IO.EndOfStreamException">The end of the stream is reached.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.IO.IOException">The stream is closed.</exception>
+ </member>
+ <member name="T:System.IO.BufferedStream">
+ <summary>Adds a buffering layer to read and write operations on another stream. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.IO.BufferedStream.#ctor(System.IO.Stream)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.BufferedStream" /> class with a default buffer size of 4096 bytes.</summary>
+ <param name="stream">The current stream.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="stream" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.IO.BufferedStream.#ctor(System.IO.Stream,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.BufferedStream" /> class with the specified buffer size.</summary>
+ <param name="stream">The current stream.</param>
+ <param name="bufferSize">The buffer size in bytes.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="stream" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="bufferSize" /> is negative.</exception>
+ </member>
+ <member name="M:System.IO.BufferedStream.BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)">
+ <summary>Begins an asynchronous read operation. (Consider using <see cref="M:System.IO.BufferedStream.ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)" /> instead.)</summary>
+ <param name="buffer">The buffer to read the data into.</param>
+ <param name="offset">The byte offset in <paramref name="buffer" /> at which to begin writing data read from the stream.</param>
+ <param name="count">The maximum number of bytes to read.</param>
+ <param name="callback">An optional asynchronous callback, to be called when the read is complete.</param>
+ <param name="state">A user-provided object that distinguishes this particular asynchronous read request from other requests.</param>
+ <returns>An object that represents the asynchronous read, which could still be pending.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="offset" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.IO.IOException">Attempted an asynchronous read past the end of the stream.</exception>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="offset" /> is less than <paramref name="count" />.</exception>
+ <exception cref="T:System.NotSupportedException">The current stream does not support the read operation.</exception>
+ </member>
+ <member name="M:System.IO.BufferedStream.BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)">
+ <summary>Begins an asynchronous write operation. (Consider using <see cref="M:System.IO.BufferedStream.WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)" /> instead.)</summary>
+ <param name="buffer">The buffer containing data to write to the current stream.</param>
+ <param name="offset">The zero-based byte offset in <paramref name="buffer" /> at which to begin copying bytes to the current stream.</param>
+ <param name="count">The maximum number of bytes to write.</param>
+ <param name="callback">The method to be called when the asynchronous write operation is completed.</param>
+ <param name="state">A user-provided object that distinguishes this particular asynchronous write request from other requests.</param>
+ <returns>An object that references the asynchronous write which could still be pending.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="buffer" /> length minus <paramref name="offset" /> is less than <paramref name="count" />.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="offset" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support writing.</exception>
+ </member>
+ <member name="P:System.IO.BufferedStream.BufferSize">
+ <summary>Gets the buffer size in bytes for this buffered stream.</summary>
+ <returns>An integer representing the buffer size in bytes.</returns>
+ </member>
+ <member name="P:System.IO.BufferedStream.CanRead">
+ <summary>Gets a value indicating whether the current stream supports reading.</summary>
+ <returns>
+ <see langword="true" /> if the stream supports reading; <see langword="false" /> if the stream is closed or was opened with write-only access.</returns>
+ </member>
+ <member name="P:System.IO.BufferedStream.CanSeek">
+ <summary>Gets a value indicating whether the current stream supports seeking.</summary>
+ <returns>
+ <see langword="true" /> if the stream supports seeking; <see langword="false" /> if the stream is closed or if the stream was constructed from an operating system handle such as a pipe or output to the console.</returns>
+ </member>
+ <member name="P:System.IO.BufferedStream.CanWrite">
+ <summary>Gets a value indicating whether the current stream supports writing.</summary>
+ <returns>
+ <see langword="true" /> if the stream supports writing; <see langword="false" /> if the stream is closed or was opened with read-only access.</returns>
+ </member>
+ <member name="M:System.IO.BufferedStream.CopyTo(System.IO.Stream,System.Int32)">
+ <summary>Reads the bytes from the current buffered stream and writes them to another stream.</summary>
+ <param name="destination">The stream to which the contents of the current buffered stream will be copied.</param>
+ <param name="bufferSize">The size of the buffer. This value must be greater than zero. The default size is 81920.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="destination" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="bufferSize" /> is negative or zero.</exception>
+ <exception cref="T:System.NotSupportedException">The current stream does not support reading.
+-or-
+<paramref name="destination" /> does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">Either the current stream or <paramref name="destination" /> was closed before the <see cref="M:System.IO.Stream.CopyTo(System.IO.Stream)" /> method was called.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ </member>
+ <member name="M:System.IO.BufferedStream.CopyToAsync(System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
+ <summary>Asynchronously reads the bytes from the current buffered stream and writes them to another stream, using a specified buffer size and cancellation token.</summary>
+ <param name="destination">The stream to which the contents of the current buffered stream will be copied.</param>
+ <param name="bufferSize">The size, in bytes, of the buffer. This value must be greater than zero. The default sizer is 81920.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
+ <returns>A task that represents the asynchronous copy operation.</returns>
+ </member>
+ <member name="M:System.IO.BufferedStream.DisposeAsync">
+ <summary>Asynchronously releases the unmanaged resources used by the buffered stream.</summary>
+ <returns>A task that represents the asynchronous dispose operation.</returns>
+ </member>
+ <member name="M:System.IO.BufferedStream.EndRead(System.IAsyncResult)">
+ <summary>Waits for the pending asynchronous read operation to complete. (Consider using <see cref="M:System.IO.BufferedStream.ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)" /> instead.)</summary>
+ <param name="asyncResult">The reference to the pending asynchronous request to wait for.</param>
+ <returns>The number of bytes read from the stream, between 0 (zero) and the number of bytes you requested. Streams only return 0 only at the end of the stream, otherwise, they should block until at least 1 byte is available.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="asyncResult" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">This <see cref="T:System.IAsyncResult" /> object was not created by calling <see cref="M:System.IO.BufferedStream.BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)" /> on this class.</exception>
+ </member>
+ <member name="M:System.IO.BufferedStream.EndWrite(System.IAsyncResult)">
+ <summary>Ends an asynchronous write operation and blocks until the I/O operation is complete. (Consider using <see cref="M:System.IO.BufferedStream.WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)" /> instead.)</summary>
+ <param name="asyncResult">The pending asynchronous request.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="asyncResult" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">This <see cref="T:System.IAsyncResult" /> object was not created by calling <see cref="M:System.IO.BufferedStream.BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)" /> on this class.</exception>
+ </member>
+ <member name="M:System.IO.BufferedStream.Flush">
+ <summary>Clears all buffers for this stream and causes any buffered data to be written to the underlying device.</summary>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ <exception cref="T:System.IO.IOException">The data source or repository is not open.</exception>
+ </member>
+ <member name="M:System.IO.BufferedStream.FlushAsync(System.Threading.CancellationToken)">
+ <summary>Asynchronously clears all buffers for this stream, causes any buffered data to be written to the underlying device, and monitors cancellation requests.</summary>
+ <param name="cancellationToken">The token to monitor for cancellation requests.</param>
+ <returns>A task that represents the asynchronous flush operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ </member>
+ <member name="P:System.IO.BufferedStream.Length">
+ <summary>Gets the stream length in bytes.</summary>
+ <returns>The stream length in bytes.</returns>
+ <exception cref="T:System.IO.IOException">The underlying stream is <see langword="null" /> or closed.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support seeking.</exception>
+ <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
+ </member>
+ <member name="P:System.IO.BufferedStream.Position">
+ <summary>Gets the position within the current stream.</summary>
+ <returns>The position within the current stream.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The value passed to <see cref="M:System.IO.BufferedStream.Seek(System.Int64,System.IO.SeekOrigin)" /> is negative.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs, such as the stream being closed.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support seeking.</exception>
+ <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
+ </member>
+ <member name="M:System.IO.BufferedStream.Read(System.Byte[],System.Int32,System.Int32)">
+ <summary>Copies bytes from the current buffered stream to an array.</summary>
+ <param name="array">The buffer to which bytes are to be copied.</param>
+ <param name="offset">The byte offset in the buffer at which to begin reading bytes.</param>
+ <param name="count">The number of bytes to be read.</param>
+ <returns>The total number of bytes read into <paramref name="array" />. This can be less than the number of bytes requested if that many bytes are not currently available, or 0 if the end of the stream has been reached before any data can be read.</returns>
+ <exception cref="T:System.ArgumentException">Length of <paramref name="array" /> minus <paramref name="offset" /> is less than <paramref name="count" />.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="array" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="offset" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.IO.IOException">The stream is not open or is <see langword="null" />.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
+ </member>
+ <member name="M:System.IO.BufferedStream.Read(System.Span{System.Byte})">
+ <summary>Copies bytes from the current buffered stream to a byte span and advances the position within the buffered stream by the number of bytes read.</summary>
+ <param name="destination">A region of memory. When this method returns, the contents of this region are replaced by the bytes read from the current source.</param>
+ <returns>The total number of bytes read into the buffer. This can be less than the number of bytes allocated in the buffer if that many bytes are not currently available, or zero (0) if the end of the stream has been reached.</returns>
+ </member>
+ <member name="M:System.IO.BufferedStream.ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
+ <summary>Asynchronously reads a sequence of bytes from the current stream, advances the position within the stream by the number of bytes read, and monitors cancellation requests.</summary>
+ <param name="buffer">The buffer to write the data into.</param>
+ <param name="offset">The byte offset in <paramref name="buffer" /> at which to begin writing data from the stream.</param>
+ <param name="count">The maximum number of bytes to read.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests.</param>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult" /> parameter contains the total number of bytes read into the buffer. The result value can be less than the number of bytes requested if the number of bytes currently available is less than the requested number, or it can be 0 (zero) if the end of the stream has been reached.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="offset" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="offset" /> and <paramref name="count" /> is larger than the buffer length.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="M:System.IO.BufferedStream.ReadAsync(System.Memory{System.Byte},System.Threading.CancellationToken)">
+ <summary>Asynchronously reads a sequence of bytes from the current buffered stream and advances the position within the buffered stream by the number of bytes read.</summary>
+ <param name="buffer">The region of memory to write the data into.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
+ <returns>A task that represents the asynchronous read operation. The value of its <see cref="P:System.Threading.Tasks.ValueTask`1.Result" /> property contains the total number of bytes read into the buffer. The result value can be less than the number of bytes allocated in the buffer if that many bytes are not currently available, or it can be 0 (zero) if the end of the stream has been reached.</returns>
+ </member>
+ <member name="M:System.IO.BufferedStream.ReadByte">
+ <summary>Reads a byte from the underlying stream and returns the byte cast to an <see langword="int" />, or returns -1 if reading from the end of the stream.</summary>
+ <returns>The byte cast to an <see langword="int" />, or -1 if reading from the end of the stream.</returns>
+ <exception cref="T:System.IO.IOException">An I/O error occurs, such as the stream being closed.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
+ </member>
+ <member name="M:System.IO.BufferedStream.Seek(System.Int64,System.IO.SeekOrigin)">
+ <summary>Sets the position within the current buffered stream.</summary>
+ <param name="offset">A byte offset relative to <paramref name="origin" />.</param>
+ <param name="origin">A value of type <see cref="T:System.IO.SeekOrigin" /> indicating the reference point from which to obtain the new position.</param>
+ <returns>The new position within the current buffered stream.</returns>
+ <exception cref="T:System.IO.IOException">The stream is not open or is <see langword="null" />.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support seeking.</exception>
+ <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
+ </member>
+ <member name="M:System.IO.BufferedStream.SetLength(System.Int64)">
+ <summary>Sets the length of the buffered stream.</summary>
+ <param name="value">An integer indicating the desired length of the current buffered stream in bytes.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="value" /> is negative.</exception>
+ <exception cref="T:System.IO.IOException">The stream is not open or is <see langword="null" />.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support both writing and seeking.</exception>
+ <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
+ </member>
+ <member name="P:System.IO.BufferedStream.UnderlyingStream">
+ <summary>Gets the underlying <see cref="T:System.IO.Stream" /> instance for this buffered stream.</summary>
+ <returns>The underlying stream instance.</returns>
+ </member>
+ <member name="M:System.IO.BufferedStream.Write(System.Byte[],System.Int32,System.Int32)">
+ <summary>Copies bytes to the buffered stream and advances the current position within the buffered stream by the number of bytes written.</summary>
+ <param name="array">The byte array from which to copy <paramref name="count" /> bytes to the current buffered stream.</param>
+ <param name="offset">The offset in the buffer at which to begin copying bytes to the current buffered stream.</param>
+ <param name="count">The number of bytes to be written to the current buffered stream.</param>
+ <exception cref="T:System.ArgumentException">Length of <paramref name="array" /> minus <paramref name="offset" /> is less than <paramref name="count" />.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="array" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="offset" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.IO.IOException">The stream is closed or <see langword="null" />.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
+ </member>
+ <member name="M:System.IO.BufferedStream.Write(System.ReadOnlySpan{System.Byte})">
+ <summary>Writes a sequence of bytes to the current buffered stream and advances the current position within this buffered stream by the number of bytes written.</summary>
+ <param name="buffer">A region of memory. This method copies the contents of this region to the current buffered stream.</param>
+ </member>
+ <member name="M:System.IO.BufferedStream.WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
+ <summary>Asynchronously writes a sequence of bytes to the current stream, advances the current position within this stream by the number of bytes written, and monitors cancellation requests.</summary>
+ <param name="buffer">The buffer to write data from.</param>
+ <param name="offset">The zero-based byte offset in <paramref name="buffer" /> from which to begin copying bytes to the stream.</param>
+ <param name="count">The maximum number of bytes to write.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="offset" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="offset" /> and <paramref name="count" /> is larger than the buffer length.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.BufferedStream.WriteAsync(System.ReadOnlyMemory{System.Byte},System.Threading.CancellationToken)">
+ <summary>Asynchronously writes a sequence of bytes to the current buffered stream, advances the current position within this buffered stream by the number of bytes written, and monitors cancellation requests.</summary>
+ <param name="buffer">The region of memory to write data from.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ </member>
+ <member name="M:System.IO.BufferedStream.WriteByte(System.Byte)">
+ <summary>Writes a byte to the current position in the buffered stream.</summary>
+ <param name="value">A byte to write to the stream.</param>
+ <exception cref="T:System.NotSupportedException">The stream does not support writing.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ObjectDisposedException">Methods were called after the stream was closed.</exception>
+ </member>
+ <member name="T:System.IO.EndOfStreamException">
+ <summary>The exception that is thrown when reading is attempted past the end of a stream.</summary>
+ </member>
+ <member name="M:System.IO.EndOfStreamException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.EndOfStreamException" /> class with its message string set to a system-supplied message and its HRESULT set to COR_E_ENDOFSTREAM.</summary>
+ </member>
+ <member name="M:System.IO.EndOfStreamException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.EndOfStreamException" /> class with the specified serialization and context information.</summary>
+ <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
+ <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
+ </member>
+ <member name="M:System.IO.EndOfStreamException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.EndOfStreamException" /> class with its message string set to <paramref name="message" /> and its HRESULT set to COR_E_ENDOFSTREAM.</summary>
+ <param name="message">A string that describes the error. The content of <paramref name="message" /> is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.</param>
+ </member>
+ <member name="M:System.IO.EndOfStreamException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.EndOfStreamException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">A string that describes the error. The content of <paramref name="message" /> is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.</param>
+ <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
+ </member>
+ <member name="T:System.IO.InvalidDataException">
+ <summary>The exception that is thrown when a data stream is in an invalid format.</summary>
+ </member>
+ <member name="M:System.IO.InvalidDataException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.InvalidDataException" /> class.</summary>
+ </member>
+ <member name="M:System.IO.InvalidDataException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.InvalidDataException" /> class with a specified error message.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ </member>
+ <member name="M:System.IO.InvalidDataException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.InvalidDataException" /> class with a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
+ </member>
+ <member name="T:System.IO.MemoryStream">
+ <summary>Creates a stream whose backing store is memory.</summary>
+ </member>
+ <member name="M:System.IO.MemoryStream.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.MemoryStream" /> class with an expandable capacity initialized to zero.</summary>
+ </member>
+ <member name="M:System.IO.MemoryStream.#ctor(System.Byte[])">
+ <summary>Initializes a new non-resizable instance of the <see cref="T:System.IO.MemoryStream" /> class based on the specified byte array.</summary>
+ <param name="buffer">The array of unsigned bytes from which to create the current stream.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.#ctor(System.Byte[],System.Boolean)">
+ <summary>Initializes a new non-resizable instance of the <see cref="T:System.IO.MemoryStream" /> class based on the specified byte array with the <see cref="P:System.IO.MemoryStream.CanWrite" /> property set as specified.</summary>
+ <param name="buffer">The array of unsigned bytes from which to create this stream.</param>
+ <param name="writable">The setting of the <see cref="P:System.IO.MemoryStream.CanWrite" /> property, which determines whether the stream supports writing.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.#ctor(System.Byte[],System.Int32,System.Int32)">
+ <summary>Initializes a new non-resizable instance of the <see cref="T:System.IO.MemoryStream" /> class based on the specified region (index) of a byte array.</summary>
+ <param name="buffer">The array of unsigned bytes from which to create this stream.</param>
+ <param name="index">The index into <paramref name="buffer" /> at which the stream begins.</param>
+ <param name="count">The length of the stream in bytes.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is less than zero.</exception>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index" /> is less than <paramref name="count" />.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.#ctor(System.Byte[],System.Int32,System.Int32,System.Boolean)">
+ <summary>Initializes a new non-resizable instance of the <see cref="T:System.IO.MemoryStream" /> class based on the specified region of a byte array, with the <see cref="P:System.IO.MemoryStream.CanWrite" /> property set as specified.</summary>
+ <param name="buffer">The array of unsigned bytes from which to create this stream.</param>
+ <param name="index">The index in <paramref name="buffer" /> at which the stream begins.</param>
+ <param name="count">The length of the stream in bytes.</param>
+ <param name="writable">The setting of the <see cref="P:System.IO.MemoryStream.CanWrite" /> property, which determines whether the stream supports writing.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> are negative.</exception>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index" /> is less than <paramref name="count" />.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.#ctor(System.Byte[],System.Int32,System.Int32,System.Boolean,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.MemoryStream" /> class based on the specified region of a byte array, with the <see cref="P:System.IO.MemoryStream.CanWrite" /> property set as specified, and the ability to call <see cref="M:System.IO.MemoryStream.GetBuffer" /> set as specified.</summary>
+ <param name="buffer">The array of unsigned bytes from which to create this stream.</param>
+ <param name="index">The index into <paramref name="buffer" /> at which the stream begins.</param>
+ <param name="count">The length of the stream in bytes.</param>
+ <param name="writable">The setting of the <see cref="P:System.IO.MemoryStream.CanWrite" /> property, which determines whether the stream supports writing.</param>
+ <param name="publiclyVisible">
+ <see langword="true" /> to enable <see cref="M:System.IO.MemoryStream.GetBuffer" />, which returns the unsigned byte array from which the stream was created; otherwise, <see langword="false" />.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index" /> is less than <paramref name="count" />.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.#ctor(System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.MemoryStream" /> class with an expandable capacity initialized as specified.</summary>
+ <param name="capacity">The initial size of the internal array in bytes.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="capacity" /> is negative.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)">
+ <param name="buffer" />
+ <param name="offset" />
+ <param name="count" />
+ <param name="callback" />
+ <param name="state" />
+ </member>
+ <member name="M:System.IO.MemoryStream.BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)">
+ <param name="buffer" />
+ <param name="offset" />
+ <param name="count" />
+ <param name="callback" />
+ <param name="state" />
+ </member>
+ <member name="P:System.IO.MemoryStream.CanRead">
+ <summary>Gets a value indicating whether the current stream supports reading.</summary>
+ <returns>
+ <see langword="true" /> if the stream is open.</returns>
+ </member>
+ <member name="P:System.IO.MemoryStream.CanSeek">
+ <summary>Gets a value indicating whether the current stream supports seeking.</summary>
+ <returns>
+ <see langword="true" /> if the stream is open.</returns>
+ </member>
+ <member name="P:System.IO.MemoryStream.CanWrite">
+ <summary>Gets a value indicating whether the current stream supports writing.</summary>
+ <returns>
+ <see langword="true" /> if the stream supports writing; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.IO.MemoryStream.Capacity">
+ <summary>Gets or sets the number of bytes allocated for this stream.</summary>
+ <returns>The length of the usable portion of the buffer for the stream.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">A capacity is set that is negative or less than the current length of the stream.</exception>
+ <exception cref="T:System.ObjectDisposedException">The current stream is closed.</exception>
+ <exception cref="T:System.NotSupportedException">
+ <see langword="set" /> is invoked on a stream whose capacity cannot be modified.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.CopyTo(System.IO.Stream,System.Int32)">
+ <param name="destination" />
+ <param name="bufferSize" />
+ </member>
+ <member name="M:System.IO.MemoryStream.CopyToAsync(System.IO.Stream,System.Int32,System.Threading.CancellationToken)">
+ <summary>Asynchronously reads all the bytes from the current stream and writes them to another stream, using a specified buffer size and cancellation token.</summary>
+ <param name="destination">The stream to which the contents of the current stream will be copied.</param>
+ <param name="bufferSize">The size, in bytes, of the buffer. This value must be greater than zero.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests.</param>
+ <returns>A task that represents the asynchronous copy operation.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="destination" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="buffersize" /> is negative or zero.</exception>
+ <exception cref="T:System.ObjectDisposedException">Either the current stream or the destination stream is disposed.</exception>
+ <exception cref="T:System.NotSupportedException">The current stream does not support reading, or the destination stream does not support writing.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.IO.MemoryStream" /> class and optionally releases the managed resources.</summary>
+ <param name="disposing">
+ <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
+ </member>
+ <member name="M:System.IO.MemoryStream.EndRead(System.IAsyncResult)">
+ <param name="asyncResult" />
+ </member>
+ <member name="M:System.IO.MemoryStream.EndWrite(System.IAsyncResult)">
+ <param name="asyncResult" />
+ </member>
+ <member name="M:System.IO.MemoryStream.Flush">
+ <summary>Overrides the <see cref="M:System.IO.Stream.Flush" /> method so that no action is performed.</summary>
+ </member>
+ <member name="M:System.IO.MemoryStream.FlushAsync(System.Threading.CancellationToken)">
+ <summary>Asynchronously clears all buffers for this stream, and monitors cancellation requests.</summary>
+ <param name="cancellationToken">The token to monitor for cancellation requests.</param>
+ <returns>A task that represents the asynchronous flush operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.GetBuffer">
+ <summary>Returns the array of unsigned bytes from which this stream was created.</summary>
+ <returns>The byte array from which this stream was created, or the underlying array if a byte array was not provided to the <see cref="T:System.IO.MemoryStream" /> constructor during construction of the current instance.</returns>
+ <exception cref="T:System.UnauthorizedAccessException">The <see langword="MemoryStream" /> instance was not created with a publicly visible buffer.</exception>
+ </member>
+ <member name="P:System.IO.MemoryStream.Length">
+ <summary>Gets the length of the stream in bytes.</summary>
+ <returns>The length of the stream in bytes.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="P:System.IO.MemoryStream.Position">
+ <summary>Gets or sets the current position within the stream.</summary>
+ <returns>The current position within the stream.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The position is set to a negative value or a value greater than <see cref="F:System.Int32.MaxValue" />.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.Read(System.Byte[],System.Int32,System.Int32)">
+ <summary>Reads a block of bytes from the current stream and writes the data to a buffer.</summary>
+ <param name="buffer">When this method returns, contains the specified byte array with the values between <paramref name="offset" /> and (<paramref name="offset" /> + <paramref name="count" /> - 1) replaced by the characters read from the current stream.</param>
+ <param name="offset">The zero-based byte offset in <paramref name="buffer" /> at which to begin storing data from the current stream.</param>
+ <param name="count">The maximum number of bytes to read.</param>
+ <returns>The total number of bytes written into the buffer. This can be less than the number of bytes requested if that number of bytes are not currently available, or zero if the end of the stream is reached before any bytes are read.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="offset" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="offset" /> subtracted from the buffer length is less than <paramref name="count" />.</exception>
+ <exception cref="T:System.ObjectDisposedException">The current stream instance is closed.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.Read(System.Span{System.Byte})">
+ <param name="destination" />
+ </member>
+ <member name="M:System.IO.MemoryStream.ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
+ <summary>Asynchronously reads a sequence of bytes from the current stream, advances the position within the stream by the number of bytes read, and monitors cancellation requests.</summary>
+ <param name="buffer">The buffer to write the data into.</param>
+ <param name="offset">The byte offset in <paramref name="buffer" /> at which to begin writing data from the stream.</param>
+ <param name="count">The maximum number of bytes to read.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult" /> parameter contains the total number of bytes read into the buffer. The result value can be less than the number of bytes requested if the number of bytes currently available is less than the requested number, or it can be 0 (zero) if the end of the stream has been reached.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="offset" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="offset" /> and <paramref name="count" /> is larger than the buffer length.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.ReadAsync(System.Memory{System.Byte},System.Threading.CancellationToken)">
+ <param name="destination" />
+ <param name="cancellationToken" />
+ </member>
+ <member name="M:System.IO.MemoryStream.ReadByte">
+ <summary>Reads a byte from the current stream.</summary>
+ <returns>The byte cast to a <see cref="T:System.Int32" />, or -1 if the end of the stream has been reached.</returns>
+ <exception cref="T:System.ObjectDisposedException">The current stream instance is closed.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.Seek(System.Int64,System.IO.SeekOrigin)">
+ <summary>Sets the position within the current stream to the specified value.</summary>
+ <param name="offset">The new position within the stream. This is relative to the <paramref name="loc" /> parameter, and can be positive or negative.</param>
+ <param name="loc">A value of type <see cref="T:System.IO.SeekOrigin" />, which acts as the seek reference point.</param>
+ <returns>The new position within the stream, calculated by combining the initial reference point and the offset.</returns>
+ <exception cref="T:System.IO.IOException">Seeking is attempted before the beginning of the stream.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="offset" /> is greater than <see cref="F:System.Int32.MaxValue" />.</exception>
+ <exception cref="T:System.ArgumentException">There is an invalid <see cref="T:System.IO.SeekOrigin" />.
+-or-
+<paramref name="offset" /> caused an arithmetic overflow.</exception>
+ <exception cref="T:System.ObjectDisposedException">The current stream instance is closed.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.SetLength(System.Int64)">
+ <summary>Sets the length of the current stream to the specified value.</summary>
+ <param name="value">The value at which to set the length.</param>
+ <exception cref="T:System.NotSupportedException">The current stream is not resizable and <paramref name="value" /> is larger than the current capacity.
+-or-
+The current stream does not support writing.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="value" /> is negative or is greater than the maximum length of the <see cref="T:System.IO.MemoryStream" />, where the maximum length is(<see cref="F:System.Int32.MaxValue" /> - origin), and origin is the index into the underlying buffer at which the stream starts.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.ToArray">
+ <summary>Writes the stream contents to a byte array, regardless of the <see cref="P:System.IO.MemoryStream.Position" /> property.</summary>
+ <returns>A new byte array.</returns>
+ </member>
+ <member name="M:System.IO.MemoryStream.TryGetBuffer(System.ArraySegment{System.Byte}@)">
+ <summary>Returns the array of unsigned bytes from which this stream was created. The return value indicates whether the conversion succeeded.</summary>
+ <param name="buffer">The byte array segment from which this stream was created.</param>
+ <returns>
+ <see langword="true" /> if the conversion was successful; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.IO.MemoryStream.Write(System.Byte[],System.Int32,System.Int32)">
+ <summary>Writes a block of bytes to the current stream using data read from a buffer.</summary>
+ <param name="buffer">The buffer to write data from.</param>
+ <param name="offset">The zero-based byte offset in <paramref name="buffer" /> at which to begin copying bytes to the current stream.</param>
+ <param name="count">The maximum number of bytes to write.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support writing. For additional information see <see cref="P:System.IO.Stream.CanWrite" />.
+-or-
+The current position is closer than <paramref name="count" /> bytes to the end of the stream, and the capacity cannot be modified.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="offset" /> subtracted from the buffer length is less than <paramref name="count" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="offset" /> or <paramref name="count" /> are negative.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The current stream instance is closed.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.Write(System.ReadOnlySpan{System.Byte})">
+ <param name="source" />
+ </member>
+ <member name="M:System.IO.MemoryStream.WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
+ <summary>Asynchronously writes a sequence of bytes to the current stream, advances the current position within this stream by the number of bytes written, and monitors cancellation requests.</summary>
+ <param name="buffer">The buffer to write data from.</param>
+ <param name="offset">The zero-based byte offset in <paramref name="buffer" /> from which to begin copying bytes to the stream.</param>
+ <param name="count">The maximum number of bytes to write.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="offset" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="offset" /> and <paramref name="count" /> is larger than the buffer length.</exception>
+ <exception cref="T:System.NotSupportedException">The stream does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.WriteAsync(System.ReadOnlyMemory{System.Byte},System.Threading.CancellationToken)">
+ <param name="source" />
+ <param name="cancellationToken" />
+ </member>
+ <member name="M:System.IO.MemoryStream.WriteByte(System.Byte)">
+ <summary>Writes a byte to the current stream at the current position.</summary>
+ <param name="value">The byte to write.</param>
+ <exception cref="T:System.NotSupportedException">The stream does not support writing. For additional information see <see cref="P:System.IO.Stream.CanWrite" />.
+-or-
+The current position is at the end of the stream, and the capacity cannot be modified.</exception>
+ <exception cref="T:System.ObjectDisposedException">The current stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.MemoryStream.WriteTo(System.IO.Stream)">
+ <summary>Writes the entire contents of this memory stream to another stream.</summary>
+ <param name="stream">The stream to write this memory stream to.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="stream" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ObjectDisposedException">The current or target stream is closed.</exception>
+ </member>
+ <member name="T:System.IO.Path">
+ <summary>Performs operations on <see cref="T:System.String" /> instances that contain file or directory path information. These operations are performed in a cross-platform manner.</summary>
+ </member>
+ <member name="F:System.IO.Path.AltDirectorySeparatorChar">
+ <summary>Provides a platform-specific alternate character used to separate directory levels in a path string that reflects a hierarchical file system organization.</summary>
+ </member>
+ <member name="M:System.IO.Path.ChangeExtension(System.String,System.String)">
+ <summary>Changes the extension of a path string.</summary>
+ <param name="path">The path information to modify. The path cannot contain any of the characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />.</param>
+ <param name="extension">The new extension (with or without a leading period). Specify <see langword="null" /> to remove an existing extension from <paramref name="path" />.</param>
+ <returns>The modified path information.
+On Windows-based desktop platforms, if <paramref name="path" /> is <see langword="null" /> or an empty string (""), the path information is returned unmodified. If <paramref name="extension" /> is <see langword="null" />, the returned string contains the specified path with its extension removed. If <paramref name="path" /> has no extension, and <paramref name="extension" /> is not <see langword="null" />, the returned path string contains <paramref name="extension" /> appended to the end of <paramref name="path" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="path" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />.</exception>
+ </member>
+ <member name="M:System.IO.Path.Combine(System.String,System.String)">
+ <summary>Combines two strings into a path.</summary>
+ <param name="path1">The first path to combine.</param>
+ <param name="path2">The second path to combine.</param>
+ <returns>The combined paths. If one of the specified paths is a zero-length string, this method returns the other path. If <paramref name="path2" /> contains an absolute path, this method returns <paramref name="path2" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="path1" /> or <paramref name="path2" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="path1" /> or <paramref name="path2" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.IO.Path.Combine(System.String,System.String,System.String)">
+ <summary>Combines three strings into a path.</summary>
+ <param name="path1">The first path to combine.</param>
+ <param name="path2">The second path to combine.</param>
+ <param name="path3">The third path to combine.</param>
+ <returns>The combined paths.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="path1" />, <paramref name="path2" />, or <paramref name="path3" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="path1" />, <paramref name="path2" />, or <paramref name="path3" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.IO.Path.Combine(System.String,System.String,System.String,System.String)">
+ <summary>Combines four strings into a path.</summary>
+ <param name="path1">The first path to combine.</param>
+ <param name="path2">The second path to combine.</param>
+ <param name="path3">The third path to combine.</param>
+ <param name="path4">The fourth path to combine.</param>
+ <returns>The combined paths.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="path1" />, <paramref name="path2" />, <paramref name="path3" />, or <paramref name="path4" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="path1" />, <paramref name="path2" />, <paramref name="path3" />, or <paramref name="path4" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.IO.Path.Combine(System.String[])">
+ <summary>Combines an array of strings into a path.</summary>
+ <param name="paths">An array of parts of the path.</param>
+ <returns>The combined paths.</returns>
+ <exception cref="T:System.ArgumentException">One of the strings in the array contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />.</exception>
+ <exception cref="T:System.ArgumentNullException">One of the strings in the array is <see langword="null" />.</exception>
+ </member>
+ <member name="F:System.IO.Path.DirectorySeparatorChar">
+ <summary>Provides a platform-specific character used to separate directory levels in a path string that reflects a hierarchical file system organization.</summary>
+ </member>
+ <member name="M:System.IO.Path.EndsInDirectorySeparator(System.ReadOnlySpan{System.Char})">
+ <summary>Returns a value that indicates whether the path, specified as a read-only span, ends in a directory separator.</summary>
+ <param name="path">The path to analyze.</param>
+ <returns>
+ <see langword="true" /> if the path ends in a directory separator; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.IO.Path.EndsInDirectorySeparator(System.String)">
+ <summary>Returns a value that indicates whether the specified path ends in a directory separator.</summary>
+ <param name="path">The path to analyze.</param>
+ <returns>
+ <see langword="true" /> if the path ends in a directory separator; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.IO.Path.GetDirectoryName(System.ReadOnlySpan{System.Char})">
+ <summary>Returns the directory information for the specified path represented by a character span.</summary>
+ <param name="path">The path to retrieve the directory information from.</param>
+ <returns>Directory information for <paramref name="path" />, or an empty span if <paramref name="path" /> is <see langword="null" />, an empty span, or a root (such as , C:, or \server\share).</returns>
+ </member>
+ <member name="M:System.IO.Path.GetDirectoryName(System.String)">
+ <summary>Returns the directory information for the specified path string.</summary>
+ <param name="path">The path of a file or directory.</param>
+ <returns>Directory information for <paramref name="path" />, or <see langword="null" /> if <paramref name="path" /> denotes a root directory or is null. Returns <see cref="F:System.String.Empty" /> if <paramref name="path" /> does not contain directory information.</returns>
+ <exception cref="T:System.ArgumentException">The <paramref name="path" /> parameter contains invalid characters, is empty, or contains only white spaces.</exception>
+ <exception cref="T:System.IO.PathTooLongException">In the .NET for Windows Store apps or the Portable Class Library, catch the base class exception, <see cref="T:System.IO.IOException" />, instead.
+
+
+
+
+ The <paramref name="path" /> parameter is longer than the system-defined maximum length.</exception>
+ </member>
+ <member name="M:System.IO.Path.GetExtension(System.ReadOnlySpan{System.Char})">
+ <summary>Returns the extension of a file path that is represented by a read-only character span.</summary>
+ <param name="path">The file path from which to get the extension.</param>
+ <returns>The extension of the specified path (including the period, "."), or <see cref="P:System.ReadOnlySpan`1.Empty" /> if <paramref name="path" /> does not have extension information.</returns>
+ </member>
+ <member name="M:System.IO.Path.GetExtension(System.String)">
+ <summary>Returns the extension (including the period ".") of the specified path string.</summary>
+ <param name="path">The path string from which to get the extension.</param>
+ <returns>The extension of the specified path (including the period "."), or <see langword="null" />, or <see cref="F:System.String.Empty" />. If <paramref name="path" /> is <see langword="null" />, <see cref="M:System.IO.Path.GetExtension(System.String)" /> returns <see langword="null" />. If <paramref name="path" /> does not have extension information, <see cref="M:System.IO.Path.GetExtension(System.String)" /> returns <see cref="F:System.String.Empty" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="path" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />.</exception>
+ </member>
+ <member name="M:System.IO.Path.GetFileName(System.ReadOnlySpan{System.Char})">
+ <summary>Returns the file name and extension of a file path that is represented by a read-only character span.</summary>
+ <param name="path">A read-only span that contains the path from which to obtain the file name and extension.</param>
+ <returns>The characters after the last directory separator character in <paramref name="path" />.</returns>
+ </member>
+ <member name="M:System.IO.Path.GetFileName(System.String)">
+ <summary>Returns the file name and extension of the specified path string.</summary>
+ <param name="path">The path string from which to obtain the file name and extension.</param>
+ <returns>The characters after the last directory separator character in <paramref name="path" />. If the last character of <paramref name="path" /> is a directory or volume separator character, this method returns <see cref="F:System.String.Empty" />. If <paramref name="path" /> is <see langword="null" />, this method returns <see langword="null" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="path" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />.</exception>
+ </member>
+ <member name="M:System.IO.Path.GetFileNameWithoutExtension(System.ReadOnlySpan{System.Char})">
+ <summary>Returns the file name without the extension of a file path that is represented by a read-only character span.</summary>
+ <param name="path">A read-only span that contains the path from which to obtain the file name without the extension.</param>
+ <returns>The characters in the read-only span returned by <see cref="M:System.IO.Path.GetFileName(System.ReadOnlySpan{System.Char})" />, minus the last period (.) and all characters following it.</returns>
+ </member>
+ <member name="M:System.IO.Path.GetFileNameWithoutExtension(System.String)">
+ <summary>Returns the file name of the specified path string without the extension.</summary>
+ <param name="path">The path of the file.</param>
+ <returns>The string returned by <see cref="M:System.IO.Path.GetFileName(System.ReadOnlySpan{System.Char})" />, minus the last period (.) and all characters following it.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="path" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />.</exception>
+ </member>
+ <member name="M:System.IO.Path.GetFullPath(System.String)">
+ <summary>Returns the absolute path for the specified path string.</summary>
+ <param name="path">The file or directory for which to obtain absolute path information.</param>
+ <returns>The fully qualified location of <paramref name="path" />, such as "C:\MyFile.txt".</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="path" /> is a zero-length string, contains only white space, or contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />.
+-or-
+The system could not retrieve the absolute path.</exception>
+ <exception cref="T:System.Security.SecurityException">The caller does not have the required permissions.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="path" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.NotSupportedException">
+ <paramref name="path" /> contains a colon (":") that is not part of a volume identifier (for example, "c:\").</exception>
+ <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
+ </member>
+ <member name="M:System.IO.Path.GetFullPath(System.String,System.String)">
+ <summary>Returns an absolute path from a fully qualified base path and a relative path.</summary>
+ <param name="path">A relative path to concatenate to <paramref name="basePath" />.</param>
+ <param name="basePath">The beginning of a fully qualified path.</param>
+ <returns>The absolute path.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="path" /> or <paramref name="basePath" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="basePath" /> is not a fully qualified path.
+-or-
+<paramref name="path" /> or <paramref name="basePath" /> contains invalid path characters, such as U+0000.</exception>
+ </member>
+ <member name="M:System.IO.Path.GetInvalidFileNameChars">
+ <summary>Gets an array containing the characters that are not allowed in file names.</summary>
+ <returns>An array containing the characters that are not allowed in file names.</returns>
+ </member>
+ <member name="M:System.IO.Path.GetInvalidPathChars">
+ <summary>Gets an array containing the characters that are not allowed in path names.</summary>
+ <returns>An array containing the characters that are not allowed in path names.</returns>
+ </member>
+ <member name="M:System.IO.Path.GetPathRoot(System.ReadOnlySpan{System.Char})">
+ <summary>Gets the root directory information from the path contained in the specified character span.</summary>
+ <param name="path">The path from which to obtain root directory information.</param>
+ <returns>A character span containing the root directory of path.</returns>
+ </member>
+ <member name="M:System.IO.Path.GetPathRoot(System.String)">
+ <summary>Gets the root directory information of the specified path.</summary>
+ <param name="path">The path from which to obtain root directory information.</param>
+ <returns>The root directory of <paramref name="path" />, or <see langword="null" /> if <paramref name="path" /> is <see langword="null" />, or an empty string if <paramref name="path" /> does not contain root directory information.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="path" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />.
+-or-
+<see cref="F:System.String.Empty" /> was passed to <paramref name="path" />.</exception>
+ </member>
+ <member name="M:System.IO.Path.GetRandomFileName">
+ <summary>Returns a random folder name or file name.</summary>
+ <returns>A random folder name or file name.</returns>
+ </member>
+ <member name="M:System.IO.Path.GetRelativePath(System.String,System.String)">
+ <summary>Returns a relative path from one path to another.</summary>
+ <param name="relativeTo">The source path the result should be relative to. This path is always considered to be a directory.</param>
+ <param name="path">The destination path.</param>
+ <returns>The relative path, or <paramref name="path" /> if the paths don't share the same root.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="relativeTo" /> or <paramref name="path" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.IO.Path.GetTempFileName">
+ <summary>Creates a uniquely named, zero-byte temporary file on disk and returns the full path of that file.</summary>
+ <returns>The full path of the temporary file.</returns>
+ <exception cref="T:System.IO.IOException">An I/O error occurs, such as no unique temporary file name is available.
+-or-
+This method was unable to create a temporary file.</exception>
+ </member>
+ <member name="M:System.IO.Path.GetTempPath">
+ <summary>Returns the path of the current user's temporary folder.</summary>
+ <returns>The path to the temporary folder, ending with a backslash.</returns>
+ <exception cref="T:System.Security.SecurityException">The caller does not have the required permissions.</exception>
+ </member>
+ <member name="M:System.IO.Path.HasExtension(System.ReadOnlySpan{System.Char})">
+ <summary>Determines whether the path represented by the specified character span includes a file name extension.</summary>
+ <param name="path">The path to search for an extension.</param>
+ <returns>
+ <see langword="true" /> if the characters that follow the last directory separator character or volume separator in the path include a period (".") followed by one or more characters; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.IO.Path.HasExtension(System.String)">
+ <summary>Determines whether a path includes a file name extension.</summary>
+ <param name="path">The path to search for an extension.</param>
+ <returns>
+ <see langword="true" /> if the characters that follow the last directory separator (\\ or /) or volume separator (:) in the path include a period (.) followed by one or more characters; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="path" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />.</exception>
+ </member>
+ <member name="F:System.IO.Path.InvalidPathChars">
+ <summary>Provides a platform-specific array of characters that cannot be specified in path string arguments passed to members of the <see cref="T:System.IO.Path" /> class.</summary>
+ </member>
+ <member name="M:System.IO.Path.IsPathFullyQualified(System.ReadOnlySpan{System.Char})">
+ <summary>Returns a value that indicates whether the file path represented by the specified character span is fixed to a specific drive or UNC path.</summary>
+ <param name="path">A file path.</param>
+ <returns>
+ <see langword="true" /> if the path is fixed to a specific drive or UNC path; <see langword="false" /> if the path is relative to the current drive or working directory.</returns>
+ </member>
+ <member name="M:System.IO.Path.IsPathFullyQualified(System.String)">
+ <summary>Returns a value that indicates whether the specified file path is fixed to a specific drive or UNC path.</summary>
+ <param name="path">A file path.</param>
+ <returns>
+ <see langword="true" /> if the path is fixed to a specific drive or UNC path; <see langword="false" /> if the path is relative to the current drive or working directory.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="path" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.IO.Path.IsPathRooted(System.ReadOnlySpan{System.Char})">
+ <summary>Returns a value that indicates whether the specified character span that represents a file path contains a root.</summary>
+ <param name="path">The path to test.</param>
+ <returns>
+ <see langword="true" /> if <paramref name="path" /> contains a root; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.IO.Path.IsPathRooted(System.String)">
+ <summary>Returns a value indicating whether the specified path string contains a root.</summary>
+ <param name="path">The path to test.</param>
+ <returns>
+ <see langword="true" /> if <paramref name="path" /> contains a root; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="path" /> contains one or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars" />.</exception>
+ </member>
+ <member name="M:System.IO.Path.Join(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char})">
+ <summary>Concatenates two path components into a single path.</summary>
+ <param name="path1">A character span that contains the first path to join.</param>
+ <param name="path2">A character span that contains the second path to join.</param>
+ <returns>The combined paths.</returns>
+ </member>
+ <member name="M:System.IO.Path.Join(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char})">
+ <summary>Concatenates three path components into a single path.</summary>
+ <param name="path1">A character span that contains the first path to join.</param>
+ <param name="path2">A character span that contains the second path to join.</param>
+ <param name="path3">A character span that contains the third path to join.</param>
+ <returns>The concatenated path.</returns>
+ </member>
+ <member name="M:System.IO.Path.Join(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char})">
+ <summary>Concatenates four path components into a single path.</summary>
+ <param name="path1">A character span that contains the first path to join.</param>
+ <param name="path2">A character span that contains the second path to join.</param>
+ <param name="path3">A character span that contains the third path to join.</param>
+ <param name="path4">A character span that contains the fourth path to join.</param>
+ <returns>The concatenated path.</returns>
+ </member>
+ <member name="M:System.IO.Path.Join(System.String,System.String)">
+ <summary>Concatenates two paths into a single path.</summary>
+ <param name="path1">The first path to join.</param>
+ <param name="path2">The second path to join.</param>
+ <returns>The concatenated path.</returns>
+ </member>
+ <member name="M:System.IO.Path.Join(System.String,System.String,System.String)">
+ <summary>Concatenates three paths into a single path.</summary>
+ <param name="path1">The first path to join.</param>
+ <param name="path2">The second path to join.</param>
+ <param name="path3">The third path to join.</param>
+ <returns>The concatenated path.</returns>
+ </member>
+ <member name="M:System.IO.Path.Join(System.String,System.String,System.String,System.String)">
+ <summary>Concatenates four paths into a single path.</summary>
+ <param name="path1">The first path to join.</param>
+ <param name="path2">The second path to join.</param>
+ <param name="path3">The third path to join.</param>
+ <param name="path4">The fourth path to join.</param>
+ <returns>The concatenated path.</returns>
+ </member>
+ <member name="M:System.IO.Path.Join(System.String[])">
+ <summary>Concatenates an array of paths into a single path.</summary>
+ <param name="paths">An array of paths.</param>
+ <returns>The concatenated path.</returns>
+ </member>
+ <member name="F:System.IO.Path.PathSeparator">
+ <summary>A platform-specific separator character used to separate path strings in environment variables.</summary>
+ </member>
+ <member name="M:System.IO.Path.TrimEndingDirectorySeparator(System.ReadOnlySpan{System.Char})">
+ <summary>Trims one trailing directory separator beyond the root of the specified path.</summary>
+ <param name="path">The path to trim.</param>
+ <returns>The <paramref name="path" /> without any trailing directory separators.</returns>
+ </member>
+ <member name="M:System.IO.Path.TrimEndingDirectorySeparator(System.String)">
+ <summary>Trims one trailing directory separator beyond the root of the specified path.</summary>
+ <param name="path">The path to trim.</param>
+ <returns>The <paramref name="path" /> without any trailing directory separators.</returns>
+ </member>
+ <member name="M:System.IO.Path.TryJoin(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.Span{System.Char},System.Int32@)">
+ <summary>Attempts to concatenate two path components to a single preallocated character span, and returns a value that indicates whether the operation succeeded.</summary>
+ <param name="path1">A character span that contains the first path to join.</param>
+ <param name="path2">A character span that contains the second path to join.</param>
+ <param name="path3">A character span that contains the third path to join.</param>
+ <param name="destination">A character span to hold the concatenated path.</param>
+ <param name="charsWritten">When the method returns, a value that indicates the number of characters written to the <paramref name="destination" />.</param>
+ <returns>
+ <see langword="true" /> if the concatenation operation is successful; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.IO.Path.TryJoin(System.ReadOnlySpan{System.Char},System.ReadOnlySpan{System.Char},System.Span{System.Char},System.Int32@)">
+ <summary>Attempts to concatenate two path components to a single preallocated character span, and returns a value that indicates whether the operation succeeded.</summary>
+ <param name="path1">A character span that contains the first path to join.</param>
+ <param name="path2">A character span that contains the second path to join.</param>
+ <param name="destination">A character span to hold the concatenated path.</param>
+ <param name="charsWritten">When the method returns, a value that indicates the number of characters written to the <paramref name="destination" />.</param>
+ <returns>
+ <see langword="true" /> if the concatenation operation is successful; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="F:System.IO.Path.VolumeSeparatorChar">
+ <summary>Provides a platform-specific volume separator character.</summary>
+ </member>
+ <member name="T:System.IO.StreamReader">
+ <summary>Implements a <see cref="T:System.IO.TextReader" /> that reads characters from a byte stream in a particular encoding.</summary>
+ </member>
+ <member name="M:System.IO.StreamReader.#ctor(System.IO.Stream)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamReader" /> class for the specified stream.</summary>
+ <param name="stream">The stream to be read.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="stream" /> does not support reading.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="stream" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.#ctor(System.IO.Stream,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamReader" /> class for the specified stream, with the specified byte order mark detection option.</summary>
+ <param name="stream">The stream to be read.</param>
+ <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="stream" /> does not support reading.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="stream" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.#ctor(System.IO.Stream,System.Text.Encoding)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamReader" /> class for the specified stream, with the specified character encoding.</summary>
+ <param name="stream">The stream to be read.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="stream" /> does not support reading.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="stream" /> or <paramref name="encoding" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.#ctor(System.IO.Stream,System.Text.Encoding,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamReader" /> class for the specified stream, with the specified character encoding and byte order mark detection option.</summary>
+ <param name="stream">The stream to be read.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="stream" /> does not support reading.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="stream" /> or <paramref name="encoding" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.#ctor(System.IO.Stream,System.Text.Encoding,System.Boolean,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamReader" /> class for the specified stream, with the specified character encoding, byte order mark detection option, and buffer size.</summary>
+ <param name="stream">The stream to be read.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
+ <param name="bufferSize">The minimum buffer size.</param>
+ <exception cref="T:System.ArgumentException">The stream does not support reading.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="stream" /> or <paramref name="encoding" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="bufferSize" /> is less than or equal to zero.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.#ctor(System.IO.Stream,System.Text.Encoding,System.Boolean,System.Int32,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamReader" /> class for the specified stream based on the specified character encoding, byte order mark detection option, and buffer size, and optionally leaves the stream open.</summary>
+ <param name="stream">The stream to read.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <param name="detectEncodingFromByteOrderMarks">
+ <see langword="true" /> to look for byte order marks at the beginning of the file; otherwise, <see langword="false" />.</param>
+ <param name="bufferSize">The minimum buffer size.</param>
+ <param name="leaveOpen">
+ <see langword="true" /> to leave the stream open after the <see cref="T:System.IO.StreamReader" /> object is disposed; otherwise, <see langword="false" />.</param>
+ </member>
+ <member name="M:System.IO.StreamReader.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamReader" /> class for the specified file name.</summary>
+ <param name="path">The complete file path to be read.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="path" /> is an empty string ("").</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="path" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">The file cannot be found.</exception>
+ <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid, such as being on an unmapped drive.</exception>
+ <exception cref="T:System.IO.IOException">
+ <paramref name="path" /> includes an incorrect or invalid syntax for file name, directory name, or volume label.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.#ctor(System.String,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamReader" /> class for the specified file name, with the specified byte order mark detection option.</summary>
+ <param name="path">The complete file path to be read.</param>
+ <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="path" /> is an empty string ("").</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="path" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">The file cannot be found.</exception>
+ <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid, such as being on an unmapped drive.</exception>
+ <exception cref="T:System.IO.IOException">
+ <paramref name="path" /> includes an incorrect or invalid syntax for file name, directory name, or volume label.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.#ctor(System.String,System.Text.Encoding)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamReader" /> class for the specified file name, with the specified character encoding.</summary>
+ <param name="path">The complete file path to be read.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="path" /> is an empty string ("").</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="path" /> or <paramref name="encoding" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">The file cannot be found.</exception>
+ <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid, such as being on an unmapped drive.</exception>
+ <exception cref="T:System.NotSupportedException">
+ <paramref name="path" /> includes an incorrect or invalid syntax for file name, directory name, or volume label.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.#ctor(System.String,System.Text.Encoding,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamReader" /> class for the specified file name, with the specified character encoding and byte order mark detection option.</summary>
+ <param name="path">The complete file path to be read.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="path" /> is an empty string ("").</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="path" /> or <paramref name="encoding" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">The file cannot be found.</exception>
+ <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid, such as being on an unmapped drive.</exception>
+ <exception cref="T:System.NotSupportedException">
+ <paramref name="path" /> includes an incorrect or invalid syntax for file name, directory name, or volume label.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.#ctor(System.String,System.Text.Encoding,System.Boolean,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamReader" /> class for the specified file name, with the specified character encoding, byte order mark detection option, and buffer size.</summary>
+ <param name="path">The complete file path to be read.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <param name="detectEncodingFromByteOrderMarks">Indicates whether to look for byte order marks at the beginning of the file.</param>
+ <param name="bufferSize">The minimum buffer size, in number of 16-bit characters.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="path" /> is an empty string ("").</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="path" /> or <paramref name="encoding" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">The file cannot be found.</exception>
+ <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid, such as being on an unmapped drive.</exception>
+ <exception cref="T:System.NotSupportedException">
+ <paramref name="path" /> includes an incorrect or invalid syntax for file name, directory name, or volume label.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="buffersize" /> is less than or equal to zero.</exception>
+ </member>
+ <member name="P:System.IO.StreamReader.BaseStream">
+ <summary>Returns the underlying stream.</summary>
+ <returns>The underlying stream.</returns>
+ </member>
+ <member name="M:System.IO.StreamReader.Close">
+ <summary>Closes the <see cref="T:System.IO.StreamReader" /> object and the underlying stream, and releases any system resources associated with the reader.</summary>
+ </member>
+ <member name="P:System.IO.StreamReader.CurrentEncoding">
+ <summary>Gets the current character encoding that the current <see cref="T:System.IO.StreamReader" /> object is using.</summary>
+ <returns>The current character encoding used by the current reader. The value can be different after the first call to any <see cref="Overload:System.IO.StreamReader.Read" /> method of <see cref="T:System.IO.StreamReader" />, since encoding autodetection is not done until the first call to a <see cref="Overload:System.IO.StreamReader.Read" /> method.</returns>
+ </member>
+ <member name="M:System.IO.StreamReader.DiscardBufferedData">
+ <summary>Clears the internal buffer.</summary>
+ </member>
+ <member name="M:System.IO.StreamReader.Dispose(System.Boolean)">
+ <summary>Closes the underlying stream, releases the unmanaged resources used by the <see cref="T:System.IO.StreamReader" />, and optionally releases the managed resources.</summary>
+ <param name="disposing">
+ <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
+ </member>
+ <member name="P:System.IO.StreamReader.EndOfStream">
+ <summary>Gets a value that indicates whether the current stream position is at the end of the stream.</summary>
+ <returns>
+ <see langword="true" /> if the current stream position is at the end of the stream; otherwise <see langword="false" />.</returns>
+ <exception cref="T:System.ObjectDisposedException">The underlying stream has been disposed.</exception>
+ </member>
+ <member name="F:System.IO.StreamReader.Null">
+ <summary>A <see cref="T:System.IO.StreamReader" /> object around an empty stream.</summary>
+ </member>
+ <member name="M:System.IO.StreamReader.Peek">
+ <summary>Returns the next available character but does not consume it.</summary>
+ <returns>An integer representing the next character to be read, or -1 if there are no characters to be read or if the stream does not support seeking.</returns>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.Read">
+ <summary>Reads the next character from the input stream and advances the character position by one character.</summary>
+ <returns>The next character from the input stream represented as an <see cref="T:System.Int32" /> object, or -1 if no more characters are available.</returns>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.Read(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads a specified maximum of characters from the current stream into a buffer, beginning at the specified index.</summary>
+ <param name="buffer">When this method returns, contains the specified character array with the values between <paramref name="index" /> and (<c>index + count - 1</c>) replaced by the characters read from the current source.</param>
+ <param name="index">The index of <paramref name="buffer" /> at which to begin writing.</param>
+ <param name="count">The maximum number of characters to read.</param>
+ <returns>The number of characters that have been read, or 0 if at the end of the stream and no data was read. The number will be less than or equal to the <paramref name="count" /> parameter, depending on whether the data is available within the stream.</returns>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index" /> is less than <paramref name="count" />.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs, such as the stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.Read(System.Span{System.Char})">
+ <param name="buffer" />
+ </member>
+ <member name="M:System.IO.StreamReader.ReadAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads a specified maximum number of characters from the current stream asynchronously and writes the data to a buffer, beginning at the specified index.</summary>
+ <param name="buffer">When this method returns, contains the specified character array with the values between <paramref name="index" /> and (<paramref name="index" /> + <paramref name="count" /> - 1) replaced by the characters read from the current source.</param>
+ <param name="index">The position in <paramref name="buffer" /> at which to begin writing.</param>
+ <param name="count">The maximum number of characters to read. If the end of the stream is reached before the specified number of characters is written into the buffer, the current method returns.</param>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult" /> parameter contains the total number of characters read into the buffer. The result value can be less than the number of characters requested if the number of characters currently available is less than the requested number, or it can be 0 (zero) if the end of the stream has been reached.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="index" /> and <paramref name="count" /> is larger than the buffer length.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The reader is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.ReadAsync(System.Memory{System.Char},System.Threading.CancellationToken)">
+ <param name="buffer" />
+ <param name="cancellationToken" />
+ </member>
+ <member name="M:System.IO.StreamReader.ReadBlock(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads a specified maximum number of characters from the current stream and writes the data to a buffer, beginning at the specified index.</summary>
+ <param name="buffer">When this method returns, contains the specified character array with the values between <paramref name="index" /> and (<c>index + count - 1</c>) replaced by the characters read from the current source.</param>
+ <param name="index">The position in <paramref name="buffer" /> at which to begin writing.</param>
+ <param name="count">The maximum number of characters to read.</param>
+ <returns>The number of characters that have been read. The number will be less than or equal to <paramref name="count" />, depending on whether all input characters have been read.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index" /> is less than <paramref name="count" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.StreamReader" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurred.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.ReadBlock(System.Span{System.Char})">
+ <param name="buffer" />
+ </member>
+ <member name="M:System.IO.StreamReader.ReadBlockAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads a specified maximum number of characters from the current stream asynchronously and writes the data to a buffer, beginning at the specified index.</summary>
+ <param name="buffer">When this method returns, contains the specified character array with the values between <paramref name="index" /> and (<paramref name="index" /> + <paramref name="count" /> - 1) replaced by the characters read from the current source.</param>
+ <param name="index">The position in <paramref name="buffer" /> at which to begin writing.</param>
+ <param name="count">The maximum number of characters to read. If the end of the stream is reached before the specified number of characters is written into the buffer, the method returns.</param>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult" /> parameter contains the total number of characters read into the buffer. The result value can be less than the number of characters requested if the number of characters currently available is less than the requested number, or it can be 0 (zero) if the end of the stream has been reached.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="index" /> and <paramref name="count" /> is larger than the buffer length.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The reader is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.ReadBlockAsync(System.Memory{System.Char},System.Threading.CancellationToken)">
+ <param name="buffer" />
+ <param name="cancellationToken" />
+ </member>
+ <member name="M:System.IO.StreamReader.ReadLine">
+ <summary>Reads a line of characters from the current stream and returns the data as a string.</summary>
+ <returns>The next line from the input stream, or <see langword="null" /> if the end of the input stream is reached.</returns>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory to allocate a buffer for the returned string.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.ReadLineAsync">
+ <summary>Reads a line of characters asynchronously from the current stream and returns the data as a string.</summary>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult" /> parameter contains the next line from the stream, or is <see langword="null" /> if all the characters have been read.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The number of characters in the next line is larger than <see cref="F:System.Int32.MaxValue" />.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The reader is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.ReadToEnd">
+ <summary>Reads all characters from the current position to the end of the stream.</summary>
+ <returns>The rest of the stream as a string, from the current position to the end. If the current position is at the end of the stream, returns an empty string ("").</returns>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory to allocate a buffer for the returned string.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.StreamReader.ReadToEndAsync">
+ <summary>Reads all characters from the current position to the end of the stream asynchronously and returns them as one string.</summary>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult" /> parameter contains a string with the characters from the current position to the end of the stream.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The number of characters is larger than <see cref="F:System.Int32.MaxValue" />.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The reader is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="T:System.IO.StreamWriter">
+ <summary>Implements a <see cref="T:System.IO.TextWriter" /> for writing characters to a stream in a particular encoding.</summary>
+ </member>
+ <member name="M:System.IO.StreamWriter.#ctor(System.IO.Stream)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamWriter" /> class for the specified stream by using UTF-8 encoding and the default buffer size.</summary>
+ <param name="stream">The stream to write to.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="stream" /> is not writable.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="stream" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.#ctor(System.IO.Stream,System.Text.Encoding)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamWriter" /> class for the specified stream by using the specified encoding and the default buffer size.</summary>
+ <param name="stream">The stream to write to.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="stream" /> or <paramref name="encoding" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="stream" /> is not writable.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.#ctor(System.IO.Stream,System.Text.Encoding,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamWriter" /> class for the specified stream by using the specified encoding and buffer size.</summary>
+ <param name="stream">The stream to write to.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <param name="bufferSize">The buffer size, in bytes.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="stream" /> or <paramref name="encoding" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="bufferSize" /> is negative.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="stream" /> is not writable.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.#ctor(System.IO.Stream,System.Text.Encoding,System.Int32,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamWriter" /> class for the specified stream by using the specified encoding and buffer size, and optionally leaves the stream open.</summary>
+ <param name="stream">The stream to write to.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <param name="bufferSize">The buffer size, in bytes.</param>
+ <param name="leaveOpen">
+ <see langword="true" /> to leave the stream open after the <see cref="T:System.IO.StreamWriter" /> object is disposed; otherwise, <see langword="false" />.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="stream" /> or <paramref name="encoding" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="bufferSize" /> is negative.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="stream" /> is not writable.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamWriter" /> class for the specified file by using the default encoding and buffer size.</summary>
+ <param name="path">The complete file path to write to. <paramref name="path" /> can be a file name.</param>
+ <exception cref="T:System.UnauthorizedAccessException">Access is denied.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="path" /> is an empty string ("").
+-or-
+<paramref name="path" /> contains the name of a system device (com1, com2, and so on).</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="path" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
+ <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
+ <exception cref="T:System.IO.IOException">
+ <paramref name="path" /> includes an incorrect or invalid syntax for file name, directory name, or volume label syntax.</exception>
+ <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.#ctor(System.String,System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamWriter" /> class for the specified file by using the default encoding and buffer size. If the file exists, it can be either overwritten or appended to. If the file does not exist, this constructor creates a new file.</summary>
+ <param name="path">The complete file path to write to.</param>
+ <param name="append">
+ <see langword="true" /> to append data to the file; <see langword="false" /> to overwrite the file. If the specified file does not exist, this parameter has no effect, and the constructor creates a new file.</param>
+ <exception cref="T:System.UnauthorizedAccessException">Access is denied.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="path" /> is empty.
+-or-
+<paramref name="path" /> contains the name of a system device (com1, com2, and so on).</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="path" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
+ <exception cref="T:System.IO.IOException">
+ <paramref name="path" /> includes an incorrect or invalid syntax for file name, directory name, or volume label syntax.</exception>
+ <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
+ <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.#ctor(System.String,System.Boolean,System.Text.Encoding)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamWriter" /> class for the specified file by using the specified encoding and default buffer size. If the file exists, it can be either overwritten or appended to. If the file does not exist, this constructor creates a new file.</summary>
+ <param name="path">The complete file path to write to.</param>
+ <param name="append">
+ <see langword="true" /> to append data to the file; <see langword="false" /> to overwrite the file. If the specified file does not exist, this parameter has no effect, and the constructor creates a new file.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <exception cref="T:System.UnauthorizedAccessException">Access is denied.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="path" /> is empty.
+-or-
+<paramref name="path" /> contains the name of a system device (com1, com2, and so on).</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="path" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
+ <exception cref="T:System.IO.IOException">
+ <paramref name="path" /> includes an incorrect or invalid syntax for file name, directory name, or volume label syntax.</exception>
+ <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
+ <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.#ctor(System.String,System.Boolean,System.Text.Encoding,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StreamWriter" /> class for the specified file on the specified path, using the specified encoding and buffer size. If the file exists, it can be either overwritten or appended to. If the file does not exist, this constructor creates a new file.</summary>
+ <param name="path">The complete file path to write to.</param>
+ <param name="append">
+ <see langword="true" /> to append data to the file; <see langword="false" /> to overwrite the file. If the specified file does not exist, this parameter has no effect, and the constructor creates a new file.</param>
+ <param name="encoding">The character encoding to use.</param>
+ <param name="bufferSize">The buffer size, in bytes.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="path" /> is an empty string ("").
+-or-
+<paramref name="path" /> contains the name of a system device (com1, com2, and so on).</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="path" /> or <paramref name="encoding" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="bufferSize" /> is negative.</exception>
+ <exception cref="T:System.IO.IOException">
+ <paramref name="path" /> includes an incorrect or invalid syntax for file name, directory name, or volume label syntax.</exception>
+ <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
+ <exception cref="T:System.UnauthorizedAccessException">Access is denied.</exception>
+ <exception cref="T:System.IO.DirectoryNotFoundException">The specified path is invalid (for example, it is on an unmapped drive).</exception>
+ <exception cref="T:System.IO.PathTooLongException">The specified path, file name, or both exceed the system-defined maximum length.</exception>
+ </member>
+ <member name="P:System.IO.StreamWriter.AutoFlush">
+ <summary>Gets or sets a value indicating whether the <see cref="T:System.IO.StreamWriter" /> will flush its buffer to the underlying stream after every call to <see cref="M:System.IO.StreamWriter.Write(System.Char)" />.</summary>
+ <returns>
+ <see langword="true" /> to force <see cref="T:System.IO.StreamWriter" /> to flush its buffer; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.IO.StreamWriter.BaseStream">
+ <summary>Gets the underlying stream that interfaces with a backing store.</summary>
+ <returns>The stream this <see langword="StreamWriter" /> is writing to.</returns>
+ </member>
+ <member name="M:System.IO.StreamWriter.Close">
+ <summary>Closes the current <see langword="StreamWriter" /> object and the underlying stream.</summary>
+ <exception cref="T:System.Text.EncoderFallbackException">The current encoding does not support displaying half of a Unicode surrogate pair.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.Dispose(System.Boolean)">
+ <summary>Causes any buffered data to be written to the underlying stream, releases the unmanaged resources used by the <see cref="T:System.IO.StreamWriter" />, and optionally the managed resources.</summary>
+ <param name="disposing">
+ <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
+ <exception cref="T:System.Text.EncoderFallbackException">The current encoding does not support displaying half of a Unicode surrogate pair.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.DisposeAsync">
+ <summary>Asynchronously writes any buffered data to the underlying stream and releases the unmanaged resources used by the <see cref="T:System.IO.StreamWriter" />.</summary>
+ <returns>A task that represents the asynchronous dispose operation.</returns>
+ </member>
+ <member name="P:System.IO.StreamWriter.Encoding">
+ <summary>Gets the <see cref="T:System.Text.Encoding" /> in which the output is written.</summary>
+ <returns>The <see cref="T:System.Text.Encoding" /> specified in the constructor for the current instance, or <see cref="T:System.Text.UTF8Encoding" /> if an encoding was not specified.</returns>
+ </member>
+ <member name="M:System.IO.StreamWriter.Flush">
+ <summary>Clears all buffers for the current writer and causes any buffered data to be written to the underlying stream.</summary>
+ <exception cref="T:System.ObjectDisposedException">The current writer is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error has occurred.</exception>
+ <exception cref="T:System.Text.EncoderFallbackException">The current encoding does not support displaying half of a Unicode surrogate pair.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.FlushAsync">
+ <summary>Clears all buffers for this stream asynchronously and causes any buffered data to be written to the underlying device.</summary>
+ <returns>A task that represents the asynchronous flush operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream has been disposed.</exception>
+ </member>
+ <member name="F:System.IO.StreamWriter.Null">
+ <summary>Provides a <see langword="StreamWriter" /> with no backing store that can be written to, but not read from.</summary>
+ </member>
+ <member name="M:System.IO.StreamWriter.Write(System.Char)">
+ <summary>Writes a character to the stream.</summary>
+ <param name="value">The character to write to the stream.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">
+ <see cref="P:System.IO.StreamWriter.AutoFlush" /> is true or the <see cref="T:System.IO.StreamWriter" /> buffer is full, and current writer is closed.</exception>
+ <exception cref="T:System.NotSupportedException">
+ <see cref="P:System.IO.StreamWriter.AutoFlush" /> is true or the <see cref="T:System.IO.StreamWriter" /> buffer is full, and the contents of the buffer cannot be written to the underlying fixed size stream because the <see cref="T:System.IO.StreamWriter" /> is at the end the stream.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.Write(System.Char[])">
+ <summary>Writes a character array to the stream.</summary>
+ <param name="buffer">A character array containing the data to write. If <paramref name="buffer" /> is <see langword="null" />, nothing is written.</param>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">
+ <see cref="P:System.IO.StreamWriter.AutoFlush" /> is true or the <see cref="T:System.IO.StreamWriter" /> buffer is full, and current writer is closed.</exception>
+ <exception cref="T:System.NotSupportedException">
+ <see cref="P:System.IO.StreamWriter.AutoFlush" /> is true or the <see cref="T:System.IO.StreamWriter" /> buffer is full, and the contents of the buffer cannot be written to the underlying fixed size stream because the <see cref="T:System.IO.StreamWriter" /> is at the end the stream.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.Write(System.Char[],System.Int32,System.Int32)">
+ <summary>Writes a subarray of characters to the stream.</summary>
+ <param name="buffer">A character array that contains the data to write.</param>
+ <param name="index">The character position in the buffer at which to start reading data.</param>
+ <param name="count">The maximum number of characters to write.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index" /> is less than <paramref name="count" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">
+ <see cref="P:System.IO.StreamWriter.AutoFlush" /> is true or the <see cref="T:System.IO.StreamWriter" /> buffer is full, and current writer is closed.</exception>
+ <exception cref="T:System.NotSupportedException">
+ <see cref="P:System.IO.StreamWriter.AutoFlush" /> is true or the <see cref="T:System.IO.StreamWriter" /> buffer is full, and the contents of the buffer cannot be written to the underlying fixed size stream because the <see cref="T:System.IO.StreamWriter" /> is at the end the stream.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.Write(System.ReadOnlySpan{System.Char})">
+ <summary>Writes a character span to the stream.</summary>
+ <param name="buffer">The character span to write.</param>
+ </member>
+ <member name="M:System.IO.StreamWriter.Write(System.String)">
+ <summary>Writes a string to the stream.</summary>
+ <param name="value">The string to write to the stream. If <paramref name="value" /> is null, nothing is written.</param>
+ <exception cref="T:System.ObjectDisposedException">
+ <see cref="P:System.IO.StreamWriter.AutoFlush" /> is true or the <see cref="T:System.IO.StreamWriter" /> buffer is full, and current writer is closed.</exception>
+ <exception cref="T:System.NotSupportedException">
+ <see cref="P:System.IO.StreamWriter.AutoFlush" /> is true or the <see cref="T:System.IO.StreamWriter" /> buffer is full, and the contents of the buffer cannot be written to the underlying fixed size stream because the <see cref="T:System.IO.StreamWriter" /> is at the end the stream.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.Write(System.String,System.Object)">
+ <summary>Writes a formatted string to the stream, using the same semantics as the <see cref="M:System.String.Format(System.String,System.Object)" /> method.</summary>
+ <param name="format">A composite format string.</param>
+ <param name="arg0">The object to format and write.</param>
+ </member>
+ <member name="M:System.IO.StreamWriter.Write(System.String,System.Object,System.Object)">
+ <summary>Writes a formatted string to the stream using the same semantics as the <see cref="M:System.String.Format(System.String,System.Object,System.Object)" /> method..</summary>
+ <param name="format">A composite format string.</param>
+ <param name="arg0">The first object to format and write.</param>
+ <param name="arg1">The second object to format and write.</param>
+ </member>
+ <member name="M:System.IO.StreamWriter.Write(System.String,System.Object,System.Object,System.Object)">
+ <summary>Writes a formatted string to the stream, using the same semantics as the <see cref="M:System.String.Format(System.String,System.Object,System.Object,System.Object)" /> method.</summary>
+ <param name="format">A composite format string.</param>
+ <param name="arg0">The first object to format and write.</param>
+ <param name="arg1">The second object to format and write.</param>
+ <param name="arg2">The third object to format and write.</param>
+ </member>
+ <member name="M:System.IO.StreamWriter.Write(System.String,System.Object[])">
+ <summary>Writes a formatted string to the stream, using the same semantics as the <see cref="M:System.String.Format(System.String,System.Object[])" /> method.</summary>
+ <param name="format">A composite format string.</param>
+ <param name="arg">An object array that contains zero or more objects to format and write.</param>
+ </member>
+ <member name="M:System.IO.StreamWriter.WriteAsync(System.Char)">
+ <summary>Asynchronously writes a character to the stream.</summary>
+ <param name="value">The character to write to the stream.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.WriteAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Asynchronously writes a subarray of characters to the stream.</summary>
+ <param name="buffer">A character array that contains the data to write.</param>
+ <param name="index">The character position in the buffer at which to begin reading data.</param>
+ <param name="count">The maximum number of characters to write.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="index" /> plus <paramref name="count" /> is greater than the buffer length.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.WriteAsync(System.ReadOnlyMemory{System.Char},System.Threading.CancellationToken)">
+ <summary>Asynchronously writes a character memory region to the stream.</summary>
+ <param name="buffer">The character memory region to write to the stream.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ </member>
+ <member name="M:System.IO.StreamWriter.WriteAsync(System.String)">
+ <summary>Asynchronously writes a string to the stream.</summary>
+ <param name="value">The string to write to the stream. If <paramref name="value" /> is <see langword="null" />, nothing is written.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.WriteLine(System.ReadOnlySpan{System.Char})">
+ <summary>Writes the text representation of a character span to the stream, followed by a line terminator.</summary>
+ <param name="buffer">The character span to write to the stream.</param>
+ </member>
+ <member name="M:System.IO.StreamWriter.WriteLine(System.String)">
+ <summary>Writes a string to the stream, followed by a line terminator.</summary>
+ <param name="value">The string to write. If <paramref name="value" /> is <see langword="null" />, only the line terminator is written.</param>
+ </member>
+ <member name="M:System.IO.StreamWriter.WriteLine(System.String,System.Object)">
+ <summary>Writes a formatted string and a new line to the stream, using the same semantics as the <see cref="M:System.String.Format(System.String,System.Object)" /> method.</summary>
+ <param name="format">A composite format string.</param>
+ <param name="arg0">The object to format and write.</param>
+ </member>
+ <member name="M:System.IO.StreamWriter.WriteLine(System.String,System.Object,System.Object)">
+ <summary>Writes a formatted string and a new line to the stream, using the same semantics as the <see cref="M:System.String.Format(System.String,System.Object,System.Object)" /> method.</summary>
+ <param name="format">A composite format string.</param>
+ <param name="arg0">The first object to format and write.</param>
+ <param name="arg1">The second object to format and write.</param>
+ </member>
+ <member name="M:System.IO.StreamWriter.WriteLine(System.String,System.Object,System.Object,System.Object)">
+ <summary>Writes out a formatted string and a new line to the stream, using the same semantics as <see cref="M:System.String.Format(System.String,System.Object)" />.</summary>
+ <param name="format">A composite format string.</param>
+ <param name="arg0">The first object to format and write.</param>
+ <param name="arg1">The second object to format and write.</param>
+ <param name="arg2">The third object to format and write.</param>
+ </member>
+ <member name="M:System.IO.StreamWriter.WriteLine(System.String,System.Object[])">
+ <summary>Writes out a formatted string and a new line to the stream, using the same semantics as <see cref="M:System.String.Format(System.String,System.Object)" />.</summary>
+ <param name="format">A composite format string.</param>
+ <param name="arg">An object array that contains zero or more objects to format and write.</param>
+ </member>
+ <member name="M:System.IO.StreamWriter.WriteLineAsync">
+ <summary>Asynchronously writes a line terminator to the stream.</summary>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.WriteLineAsync(System.Char)">
+ <summary>Asynchronously writes a character to the stream, followed by a line terminator.</summary>
+ <param name="value">The character to write to the stream.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.WriteLineAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Asynchronously writes a subarray of characters to the stream, followed by a line terminator.</summary>
+ <param name="buffer">The character array to write data from.</param>
+ <param name="index">The character position in the buffer at which to start reading data.</param>
+ <param name="count">The maximum number of characters to write.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="index" /> plus <paramref name="count" /> is greater than the buffer length.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.StreamWriter.WriteLineAsync(System.ReadOnlyMemory{System.Char},System.Threading.CancellationToken)">
+ <summary>Asynchronously writes the text representation of a character memory region to the stream, followed by a line terminator.</summary>
+ <param name="buffer">The character memory region to write to the stream.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ </member>
+ <member name="M:System.IO.StreamWriter.WriteLineAsync(System.String)">
+ <summary>Asynchronously writes a string to the stream, followed by a line terminator.</summary>
+ <param name="value">The string to write. If the value is <see langword="null" />, only a line terminator is written.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The stream writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="T:System.IO.StringReader">
+ <summary>Implements a <see cref="T:System.IO.TextReader" /> that reads from a string.</summary>
+ </member>
+ <member name="M:System.IO.StringReader.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StringReader" /> class that reads from the specified string.</summary>
+ <param name="s">The string to which the <see cref="T:System.IO.StringReader" /> should be initialized.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="s" /> parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.IO.StringReader.Close">
+ <summary>Closes the <see cref="T:System.IO.StringReader" />.</summary>
+ </member>
+ <member name="M:System.IO.StringReader.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.IO.StringReader" /> and optionally releases the managed resources.</summary>
+ <param name="disposing">
+ <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
+ </member>
+ <member name="M:System.IO.StringReader.Peek">
+ <summary>Returns the next available character but does not consume it.</summary>
+ <returns>An integer representing the next character to be read, or -1 if no more characters are available or the stream does not support seeking.</returns>
+ <exception cref="T:System.ObjectDisposedException">The current reader is closed.</exception>
+ </member>
+ <member name="M:System.IO.StringReader.Read">
+ <summary>Reads the next character from the input string and advances the character position by one character.</summary>
+ <returns>The next character from the underlying string, or -1 if no more characters are available.</returns>
+ <exception cref="T:System.ObjectDisposedException">The current reader is closed.</exception>
+ </member>
+ <member name="M:System.IO.StringReader.Read(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads a block of characters from the input string and advances the character position by <paramref name="count" />.</summary>
+ <param name="buffer">When this method returns, contains the specified character array with the values between <paramref name="index" /> and (<paramref name="index" /> + <paramref name="count" /> - 1) replaced by the characters read from the current source.</param>
+ <param name="index">The starting index in the buffer.</param>
+ <param name="count">The number of characters to read.</param>
+ <returns>The total number of characters read into the buffer. This can be less than the number of characters requested if that many characters are not currently available, or zero if the end of the underlying string has been reached.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index" /> is less than <paramref name="count" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The current reader is closed.</exception>
+ </member>
+ <member name="M:System.IO.StringReader.Read(System.Span{System.Char})">
+ <param name="buffer" />
+ </member>
+ <member name="M:System.IO.StringReader.ReadAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads a specified maximum number of characters from the current string asynchronously and writes the data to a buffer, beginning at the specified index.</summary>
+ <param name="buffer">When this method returns, contains the specified character array with the values between <paramref name="index" /> and (<paramref name="index" /> + <paramref name="count" /> - 1) replaced by the characters read from the current source.</param>
+ <param name="index">The position in <paramref name="buffer" /> at which to begin writing.</param>
+ <param name="count">The maximum number of characters to read. If the end of the string is reached before the specified number of characters is written into the buffer, the method returns.</param>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult" /> parameter contains the total number of bytes read into the buffer. The result value can be less than the number of bytes requested if the number of bytes currently available is less than the requested number, or it can be 0 (zero) if the end of the string has been reached.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="index" /> and <paramref name="count" /> is larger than the buffer length.</exception>
+ <exception cref="T:System.ObjectDisposedException">The string reader has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The reader is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="M:System.IO.StringReader.ReadAsync(System.Memory{System.Char},System.Threading.CancellationToken)">
+ <param name="buffer" />
+ <param name="cancellationToken" />
+ </member>
+ <member name="M:System.IO.StringReader.ReadBlock(System.Span{System.Char})">
+ <param name="buffer" />
+ </member>
+ <member name="M:System.IO.StringReader.ReadBlockAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads a specified maximum number of characters from the current string asynchronously and writes the data to a buffer, beginning at the specified index.</summary>
+ <param name="buffer">When this method returns, contains the specified character array with the values between <paramref name="index" /> and (<paramref name="index" /> + <paramref name="count" /> - 1) replaced by the characters read from the current source.</param>
+ <param name="index">The position in <paramref name="buffer" /> at which to begin writing.</param>
+ <param name="count">The maximum number of characters to read. If the end of the string is reached before the specified number of characters is written into the buffer, the method returns.</param>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult" /> parameter contains the total number of bytes read into the buffer. The result value can be less than the number of bytes requested if the number of bytes currently available is less than the requested number, or it can be 0 (zero) if the end of the string has been reached.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="index" /> and <paramref name="count" /> is larger than the buffer length.</exception>
+ <exception cref="T:System.ObjectDisposedException">The string reader has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The reader is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="M:System.IO.StringReader.ReadBlockAsync(System.Memory{System.Char},System.Threading.CancellationToken)">
+ <param name="buffer" />
+ <param name="cancellationToken" />
+ </member>
+ <member name="M:System.IO.StringReader.ReadLine">
+ <summary>Reads a line of characters from the current string and returns the data as a string.</summary>
+ <returns>The next line from the current string, or <see langword="null" /> if the end of the string is reached.</returns>
+ <exception cref="T:System.ObjectDisposedException">The current reader is closed.</exception>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory to allocate a buffer for the returned string.</exception>
+ </member>
+ <member name="M:System.IO.StringReader.ReadLineAsync">
+ <summary>Reads a line of characters asynchronously from the current string and returns the data as a string.</summary>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult" /> parameter contains the next line from the string reader, or is <see langword="null" /> if all the characters have been read.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The number of characters in the next line is larger than <see cref="F:System.Int32.MaxValue" />.</exception>
+ <exception cref="T:System.ObjectDisposedException">The string reader has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The reader is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="M:System.IO.StringReader.ReadToEnd">
+ <summary>Reads all characters from the current position to the end of the string and returns them as a single string.</summary>
+ <returns>The content from the current position to the end of the underlying string.</returns>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory to allocate a buffer for the returned string.</exception>
+ <exception cref="T:System.ObjectDisposedException">The current reader is closed.</exception>
+ </member>
+ <member name="M:System.IO.StringReader.ReadToEndAsync">
+ <summary>Reads all characters from the current position to the end of the string asynchronously and returns them as a single string.</summary>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult" /> parameter contains a string with the characters from the current position to the end of the string.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The number of characters is larger than <see cref="F:System.Int32.MaxValue" />.</exception>
+ <exception cref="T:System.ObjectDisposedException">The string reader has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The reader is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="T:System.IO.StringWriter">
+ <summary>Implements a <see cref="T:System.IO.TextWriter" /> for writing information to a string. The information is stored in an underlying <see cref="T:System.Text.StringBuilder" />.</summary>
+ </member>
+ <member name="M:System.IO.StringWriter.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StringWriter" /> class.</summary>
+ </member>
+ <member name="M:System.IO.StringWriter.#ctor(System.IFormatProvider)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StringWriter" /> class with the specified format control.</summary>
+ <param name="formatProvider">An <see cref="T:System.IFormatProvider" /> object that controls formatting.</param>
+ </member>
+ <member name="M:System.IO.StringWriter.#ctor(System.Text.StringBuilder)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StringWriter" /> class that writes to the specified <see cref="T:System.Text.StringBuilder" />.</summary>
+ <param name="sb">The <see cref="T:System.Text.StringBuilder" /> object to write to.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="sb" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.IO.StringWriter.#ctor(System.Text.StringBuilder,System.IFormatProvider)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.StringWriter" /> class that writes to the specified <see cref="T:System.Text.StringBuilder" /> and has the specified format provider.</summary>
+ <param name="sb">The <see cref="T:System.Text.StringBuilder" /> object to write to.</param>
+ <param name="formatProvider">An <see cref="T:System.IFormatProvider" /> object that controls formatting.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="sb" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.IO.StringWriter.Close">
+ <summary>Closes the current <see cref="T:System.IO.StringWriter" /> and the underlying stream.</summary>
+ </member>
+ <member name="M:System.IO.StringWriter.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.IO.StringWriter" /> and optionally releases the managed resources.</summary>
+ <param name="disposing">
+ <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
+ </member>
+ <member name="P:System.IO.StringWriter.Encoding">
+ <summary>Gets the <see cref="T:System.Text.Encoding" /> in which the output is written.</summary>
+ <returns>The <see langword="Encoding" /> in which the output is written.</returns>
+ </member>
+ <member name="M:System.IO.StringWriter.FlushAsync">
+ <summary>Asynchronously clears all buffers for the current writer and causes any buffered data to be written to the underlying device.</summary>
+ <returns>A task that represents the asynchronous flush operation.</returns>
+ </member>
+ <member name="M:System.IO.StringWriter.GetStringBuilder">
+ <summary>Returns the underlying <see cref="T:System.Text.StringBuilder" />.</summary>
+ <returns>The underlying <see langword="StringBuilder" />.</returns>
+ </member>
+ <member name="M:System.IO.StringWriter.ToString">
+ <summary>Returns a string containing the characters written to the current <see langword="StringWriter" /> so far.</summary>
+ <returns>The string containing the characters written to the current <see langword="StringWriter" />.</returns>
+ </member>
+ <member name="M:System.IO.StringWriter.Write(System.Char)">
+ <summary>Writes a character to the string.</summary>
+ <param name="value">The character to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The writer is closed.</exception>
+ </member>
+ <member name="M:System.IO.StringWriter.Write(System.Char[],System.Int32,System.Int32)">
+ <summary>Writes a subarray of characters to the string.</summary>
+ <param name="buffer">The character array to write data from.</param>
+ <param name="index">The position in the buffer at which to start reading data.</param>
+ <param name="count">The maximum number of characters to write.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ArgumentException">(<paramref name="index" /> + <paramref name="count" />)&gt; <paramref name="buffer" />. <see langword="Length" />.</exception>
+ <exception cref="T:System.ObjectDisposedException">The writer is closed.</exception>
+ </member>
+ <member name="M:System.IO.StringWriter.Write(System.ReadOnlySpan{System.Char})">
+ <summary>Writes the string representation of a span of chars to the current string.</summary>
+ <param name="buffer">A span of chars to write to the string.</param>
+ </member>
+ <member name="M:System.IO.StringWriter.Write(System.String)">
+ <summary>Writes a string to the current string.</summary>
+ <param name="value">The string to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The writer is closed.</exception>
+ </member>
+ <member name="M:System.IO.StringWriter.Write(System.Text.StringBuilder)">
+ <summary>Writes the string representation of a string builder to the current string.</summary>
+ <param name="value">The string builder to write to the string.</param>
+ </member>
+ <member name="M:System.IO.StringWriter.WriteAsync(System.Char)">
+ <summary>Writes a character to the string asynchronously.</summary>
+ <param name="value">The character to write to the string.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The string writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The string writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.StringWriter.WriteAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Writes a subarray of characters to the string asynchronously.</summary>
+ <param name="buffer">The character array to write data from.</param>
+ <param name="index">The position in the buffer at which to start reading data.</param>
+ <param name="count">The maximum number of characters to write.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="index" /> plus <paramref name="count" /> is greater than the buffer length.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The string writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The string writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.StringWriter.WriteAsync(System.ReadOnlyMemory{System.Char},System.Threading.CancellationToken)">
+ <summary>Asynchronously writes a memory region of characters to the string.</summary>
+ <param name="buffer">The character memory region to write to the string.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ </member>
+ <member name="M:System.IO.StringWriter.WriteAsync(System.String)">
+ <summary>Writes a string to the current string asynchronously.</summary>
+ <param name="value">The string to write. If <paramref name="value" /> is <see langword="null" />, nothing is written to the text stream.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The string writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The string writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.StringWriter.WriteAsync(System.Text.StringBuilder,System.Threading.CancellationToken)">
+ <summary>Asynchronously writes the text representation of a string builder to the string.</summary>
+ <param name="value">The string builder to write to the string.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ </member>
+ <member name="M:System.IO.StringWriter.WriteLine(System.ReadOnlySpan{System.Char})">
+ <summary>Writes the text representation a span of characters to the string, followed by a line terminator.</summary>
+ <param name="buffer">The span of characters to write to the string.</param>
+ </member>
+ <member name="M:System.IO.StringWriter.WriteLine(System.Text.StringBuilder)">
+ <summary>Writes the text representation of a string builder to the string, followed by a line terminator.</summary>
+ <param name="value">The string, as a string builder, to write to the string.</param>
+ </member>
+ <member name="M:System.IO.StringWriter.WriteLineAsync(System.Char)">
+ <summary>Asynchronously writes a character to the string, followed by a line terminator.</summary>
+ <param name="value">The character to write to the string.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The string writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The string writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.StringWriter.WriteLineAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>asynchronously writes a subarray of characters to the string, followed by a line terminator.</summary>
+ <param name="buffer">The character array to write data from.</param>
+ <param name="index">The position in the buffer at which to start reading data.</param>
+ <param name="count">The maximum number of characters to write.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="index" /> plus <paramref name="count" /> is greater than the buffer length.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The string writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The string writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.StringWriter.WriteLineAsync(System.ReadOnlyMemory{System.Char},System.Threading.CancellationToken)">
+ <summary>Asynchronously writes the string representation of the memory region of characters to the current string, followed by a line terminator.</summary>
+ <param name="buffer">A memory region of characters to write to the string.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ </member>
+ <member name="M:System.IO.StringWriter.WriteLineAsync(System.String)">
+ <summary>Asynchronously writes a string to the current string, followed by a line terminator.</summary>
+ <param name="value">The string to write. If the value is <see langword="null" />, only a line terminator is written.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The string writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The string writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.StringWriter.WriteLineAsync(System.Text.StringBuilder,System.Threading.CancellationToken)">
+ <summary>Asynchronously writes the string representation of the string builder to the current string, followed by a line terminator.</summary>
+ <param name="value">The string builder to write to the string.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ </member>
+ <member name="T:System.IO.TextReader">
+ <summary>Represents a reader that can read a sequential series of characters.</summary>
+ </member>
+ <member name="M:System.IO.TextReader.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.TextReader" /> class.</summary>
+ </member>
+ <member name="M:System.IO.TextReader.Close">
+ <summary>Closes the <see cref="T:System.IO.TextReader" /> and releases any system resources associated with the <see langword="TextReader" />.</summary>
+ </member>
+ <member name="M:System.IO.TextReader.Dispose">
+ <summary>Releases all resources used by the <see cref="T:System.IO.TextReader" /> object.</summary>
+ </member>
+ <member name="M:System.IO.TextReader.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.IO.TextReader" /> and optionally releases the managed resources.</summary>
+ <param name="disposing">
+ <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
+ </member>
+ <member name="F:System.IO.TextReader.Null">
+ <summary>Provides a <see langword="TextReader" /> with no data to read from.</summary>
+ </member>
+ <member name="M:System.IO.TextReader.Peek">
+ <summary>Reads the next character without changing the state of the reader or the character source. Returns the next available character without actually reading it from the reader.</summary>
+ <returns>An integer representing the next character to be read, or -1 if no more characters are available or the reader does not support seeking.</returns>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextReader" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextReader.Read">
+ <summary>Reads the next character from the text reader and advances the character position by one character.</summary>
+ <returns>The next character from the text reader, or -1 if no more characters are available. The default implementation returns -1.</returns>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextReader" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextReader.Read(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads a specified maximum number of characters from the current reader and writes the data to a buffer, beginning at the specified index.</summary>
+ <param name="buffer">When this method returns, contains the specified character array with the values between <paramref name="index" /> and (<paramref name="index" /> + <paramref name="count" /> - 1) replaced by the characters read from the current source.</param>
+ <param name="index">The position in <paramref name="buffer" /> at which to begin writing.</param>
+ <param name="count">The maximum number of characters to read. If the end of the reader is reached before the specified number of characters is read into the buffer, the method returns.</param>
+ <returns>The number of characters that have been read. The number will be less than or equal to <paramref name="count" />, depending on whether the data is available within the reader. This method returns 0 (zero) if it is called when no more characters are left to read.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index" /> is less than <paramref name="count" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextReader" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextReader.Read(System.Span{System.Char})">
+ <param name="buffer" />
+ </member>
+ <member name="M:System.IO.TextReader.ReadAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads a specified maximum number of characters from the current text reader asynchronously and writes the data to a buffer, beginning at the specified index.</summary>
+ <param name="buffer">When this method returns, contains the specified character array with the values between <paramref name="index" /> and (<paramref name="index" /> + <paramref name="count" /> - 1) replaced by the characters read from the current source.</param>
+ <param name="index">The position in <paramref name="buffer" /> at which to begin writing.</param>
+ <param name="count">The maximum number of characters to read. If the end of the text is reached before the specified number of characters is read into the buffer, the current method returns.</param>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult" /> parameter contains the total number of bytes read into the buffer. The result value can be less than the number of bytes requested if the number of bytes currently available is less than the requested number, or it can be 0 (zero) if the end of the text has been reached.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="index" /> and <paramref name="count" /> is larger than the buffer length.</exception>
+ <exception cref="T:System.ObjectDisposedException">The text reader has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The reader is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="M:System.IO.TextReader.ReadAsync(System.Memory{System.Char},System.Threading.CancellationToken)">
+ <param name="buffer" />
+ <param name="cancellationToken" />
+ </member>
+ <member name="M:System.IO.TextReader.ReadBlock(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads a specified maximum number of characters from the current text reader and writes the data to a buffer, beginning at the specified index.</summary>
+ <param name="buffer">When this method returns, this parameter contains the specified character array with the values between <paramref name="index" /> and (<paramref name="index" /> + <paramref name="count" /> -1) replaced by the characters read from the current source.</param>
+ <param name="index">The position in <paramref name="buffer" /> at which to begin writing.</param>
+ <param name="count">The maximum number of characters to read.</param>
+ <returns>The number of characters that have been read. The number will be less than or equal to <paramref name="count" />, depending on whether all input characters have been read.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index" /> is less than <paramref name="count" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextReader" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextReader.ReadBlock(System.Span{System.Char})">
+ <param name="buffer" />
+ </member>
+ <member name="M:System.IO.TextReader.ReadBlockAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Reads a specified maximum number of characters from the current text reader asynchronously and writes the data to a buffer, beginning at the specified index.</summary>
+ <param name="buffer">When this method returns, contains the specified character array with the values between <paramref name="index" /> and (<paramref name="index" /> + <paramref name="count" /> - 1) replaced by the characters read from the current source.</param>
+ <param name="index">The position in <paramref name="buffer" /> at which to begin writing.</param>
+ <param name="count">The maximum number of characters to read. If the end of the text is reached before the specified number of characters is read into the buffer, the current method returns.</param>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult" /> parameter contains the total number of bytes read into the buffer. The result value can be less than the number of bytes requested if the number of bytes currently available is less than the requested number, or it can be 0 (zero) if the end of the text has been reached.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ArgumentException">The sum of <paramref name="index" /> and <paramref name="count" /> is larger than the buffer length.</exception>
+ <exception cref="T:System.ObjectDisposedException">The text reader has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The reader is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="M:System.IO.TextReader.ReadBlockAsync(System.Memory{System.Char},System.Threading.CancellationToken)">
+ <param name="buffer" />
+ <param name="cancellationToken" />
+ </member>
+ <member name="M:System.IO.TextReader.ReadLine">
+ <summary>Reads a line of characters from the text reader and returns the data as a string.</summary>
+ <returns>The next line from the reader, or <see langword="null" /> if all characters have been read.</returns>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory to allocate a buffer for the returned string.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextReader" /> is closed.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The number of characters in the next line is larger than <see cref="F:System.Int32.MaxValue" /></exception>
+ </member>
+ <member name="M:System.IO.TextReader.ReadLineAsync">
+ <summary>Reads a line of characters asynchronously and returns the data as a string.</summary>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult" /> parameter contains the next line from the text reader, or is <see langword="null" /> if all of the characters have been read.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The number of characters in the next line is larger than <see cref="F:System.Int32.MaxValue" />.</exception>
+ <exception cref="T:System.ObjectDisposedException">The text reader has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The reader is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="M:System.IO.TextReader.ReadToEnd">
+ <summary>Reads all characters from the current position to the end of the text reader and returns them as one string.</summary>
+ <returns>A string that contains all characters from the current position to the end of the text reader.</returns>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextReader" /> is closed.</exception>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory to allocate a buffer for the returned string.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The number of characters in the next line is larger than <see cref="F:System.Int32.MaxValue" /></exception>
+ </member>
+ <member name="M:System.IO.TextReader.ReadToEndAsync">
+ <summary>Reads all characters from the current position to the end of the text reader asynchronously and returns them as one string.</summary>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult" /> parameter contains a string with the characters from the current position to the end of the text reader.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The number of characters is larger than <see cref="F:System.Int32.MaxValue" />.</exception>
+ <exception cref="T:System.ObjectDisposedException">The text reader has been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The reader is currently in use by a previous read operation.</exception>
+ </member>
+ <member name="M:System.IO.TextReader.Synchronized(System.IO.TextReader)">
+ <summary>Creates a thread-safe wrapper around the specified <see langword="TextReader" />.</summary>
+ <param name="reader">The <see langword="TextReader" /> to synchronize.</param>
+ <returns>A thread-safe <see cref="T:System.IO.TextReader" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="reader" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="T:System.IO.TextWriter">
+ <summary>Represents a writer that can write a sequential series of characters. This class is abstract.</summary>
+ </member>
+ <member name="M:System.IO.TextWriter.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.TextWriter" /> class.</summary>
+ </member>
+ <member name="M:System.IO.TextWriter.#ctor(System.IFormatProvider)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.TextWriter" /> class with the specified format provider.</summary>
+ <param name="formatProvider">An <see cref="T:System.IFormatProvider" /> object that controls formatting.</param>
+ </member>
+ <member name="M:System.IO.TextWriter.Close">
+ <summary>Closes the current writer and releases any system resources associated with the writer.</summary>
+ </member>
+ <member name="F:System.IO.TextWriter.CoreNewLine">
+ <summary>Stores the newline characters used for this <see langword="TextWriter" />.</summary>
+ </member>
+ <member name="M:System.IO.TextWriter.Dispose">
+ <summary>Releases all resources used by the <see cref="T:System.IO.TextWriter" /> object.</summary>
+ </member>
+ <member name="M:System.IO.TextWriter.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.IO.TextWriter" /> and optionally releases the managed resources.</summary>
+ <param name="disposing">
+ <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
+ </member>
+ <member name="M:System.IO.TextWriter.DisposeAsync">
+ <summary>Asynchronously releases all resources used by the <see cref="T:System.IO.TextWriter" /> object.</summary>
+ <returns>A task that represents the asynchronous dispose operation.</returns>
+ </member>
+ <member name="P:System.IO.TextWriter.Encoding">
+ <summary>When overridden in a derived class, returns the character encoding in which the output is written.</summary>
+ <returns>The character encoding in which the output is written.</returns>
+ </member>
+ <member name="M:System.IO.TextWriter.Flush">
+ <summary>Clears all buffers for the current writer and causes any buffered data to be written to the underlying device.</summary>
+ </member>
+ <member name="M:System.IO.TextWriter.FlushAsync">
+ <summary>Asynchronously clears all buffers for the current writer and causes any buffered data to be written to the underlying device.</summary>
+ <returns>A task that represents the asynchronous flush operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The text writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="P:System.IO.TextWriter.FormatProvider">
+ <summary>Gets an object that controls formatting.</summary>
+ <returns>An <see cref="T:System.IFormatProvider" /> object for a specific culture, or the formatting of the current culture if no other culture is specified.</returns>
+ </member>
+ <member name="P:System.IO.TextWriter.NewLine">
+ <summary>Gets or sets the line terminator string used by the current <see langword="TextWriter" />.</summary>
+ <returns>The line terminator string for the current <see langword="TextWriter" />.</returns>
+ </member>
+ <member name="F:System.IO.TextWriter.Null">
+ <summary>Provides a <see langword="TextWriter" /> with no backing store that can be written to, but not read from.</summary>
+ </member>
+ <member name="M:System.IO.TextWriter.Synchronized(System.IO.TextWriter)">
+ <summary>Creates a thread-safe wrapper around the specified <see langword="TextWriter" />.</summary>
+ <param name="writer">The <see langword="TextWriter" /> to synchronize.</param>
+ <returns>A thread-safe wrapper.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="writer" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.Boolean)">
+ <summary>Writes the text representation of a <see langword="Boolean" /> value to the text stream.</summary>
+ <param name="value">The <see langword="Boolean" /> value to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.Char)">
+ <summary>Writes a character to the text stream.</summary>
+ <param name="value">The character to write to the text stream.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.Char[])">
+ <summary>Writes a character array to the text stream.</summary>
+ <param name="buffer">The character array to write to the text stream.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.Char[],System.Int32,System.Int32)">
+ <summary>Writes a subarray of characters to the text stream.</summary>
+ <param name="buffer">The character array to write data from.</param>
+ <param name="index">The character position in the buffer at which to start retrieving data.</param>
+ <param name="count">The number of characters to write.</param>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index" /> is less than <paramref name="count" />.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.Decimal)">
+ <summary>Writes the text representation of a decimal value to the text stream.</summary>
+ <param name="value">The decimal value to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.Double)">
+ <summary>Writes the text representation of an 8-byte floating-point value to the text stream.</summary>
+ <param name="value">The 8-byte floating-point value to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.Int32)">
+ <summary>Writes the text representation of a 4-byte signed integer to the text stream.</summary>
+ <param name="value">The 4-byte signed integer to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.Int64)">
+ <summary>Writes the text representation of an 8-byte signed integer to the text stream.</summary>
+ <param name="value">The 8-byte signed integer to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.Object)">
+ <summary>Writes the text representation of an object to the text stream by calling the <see langword="ToString" /> method on that object.</summary>
+ <param name="value">The object to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.ReadOnlySpan{System.Char})">
+ <summary>Writes a character span to the text stream.</summary>
+ <param name="buffer">The character span to write.</param>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.Single)">
+ <summary>Writes the text representation of a 4-byte floating-point value to the text stream.</summary>
+ <param name="value">The 4-byte floating-point value to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.String)">
+ <summary>Writes a string to the text stream.</summary>
+ <param name="value">The string to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.String,System.Object)">
+ <summary>Writes a formatted string to the text stream, using the same semantics as the <see cref="M:System.String.Format(System.String,System.Object)" /> method.</summary>
+ <param name="format">A composite format string.</param>
+ <param name="arg0">The object to format and write.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="format" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="format" /> is not a valid composite format string.
+-or-
+The index of a format item is less than 0 (zero), or greater than or equal to the number of objects to be formatted (which, for this method overload, is one).</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.String,System.Object,System.Object)">
+ <summary>Writes a formatted string to the text stream using the same semantics as the <see cref="M:System.String.Format(System.String,System.Object,System.Object)" /> method.</summary>
+ <param name="format">A composite format string.</param>
+ <param name="arg0">The first object to format and write.</param>
+ <param name="arg1">The second object to format and write.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="format" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="format" /> is not a valid composite format string.
+-or-
+The index of a format item is less than 0 (zero) or greater than or equal to the number of objects to be formatted (which, for this method overload, is two).</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.String,System.Object,System.Object,System.Object)">
+ <summary>Writes a formatted string to the text stream, using the same semantics as the <see cref="M:System.String.Format(System.String,System.Object,System.Object,System.Object)" /> method.</summary>
+ <param name="format">A composite format string.</param>
+ <param name="arg0">The first object to format and write.</param>
+ <param name="arg1">The second object to format and write.</param>
+ <param name="arg2">The third object to format and write.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="format" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="format" /> is not a valid composite format string.
+-or-
+The index of a format item is less than 0 (zero), or greater than or equal to the number of objects to be formatted (which, for this method overload, is three).</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.String,System.Object[])">
+ <summary>Writes a formatted string to the text stream, using the same semantics as the <see cref="M:System.String.Format(System.String,System.Object[])" /> method.</summary>
+ <param name="format">A composite format string.</param>
+ <param name="arg">An object array that contains zero or more objects to format and write.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="format" /> or <paramref name="arg" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="format" /> is not a valid composite format string.
+-or-
+The index of a format item is less than 0 (zero), or greater than or equal to the length of the <paramref name="arg" /> array.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.Text.StringBuilder)">
+ <summary>Writes a string builder to the text stream.</summary>
+ <param name="value">The string, as a string builder, to write to the text stream.</param>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.UInt32)">
+ <summary>Writes the text representation of a 4-byte unsigned integer to the text stream.</summary>
+ <param name="value">The 4-byte unsigned integer to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.Write(System.UInt64)">
+ <summary>Writes the text representation of an 8-byte unsigned integer to the text stream.</summary>
+ <param name="value">The 8-byte unsigned integer to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteAsync(System.Char)">
+ <summary>Writes a character to the text stream asynchronously.</summary>
+ <param name="value">The character to write to the text stream.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The text writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The text writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteAsync(System.Char[])">
+ <summary>Writes a character array to the text stream asynchronously.</summary>
+ <param name="buffer">The character array to write to the text stream. If <paramref name="buffer" /> is <see langword="null" />, nothing is written.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The text writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The text writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Writes a subarray of characters to the text stream asynchronously.</summary>
+ <param name="buffer">The character array to write data from.</param>
+ <param name="index">The character position in the buffer at which to start retrieving data.</param>
+ <param name="count">The number of characters to write.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="index" /> plus <paramref name="count" /> is greater than the buffer length.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The text writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The text writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteAsync(System.ReadOnlyMemory{System.Char},System.Threading.CancellationToken)">
+ <summary>Asynchronously writes a character memory region to the text stream.</summary>
+ <param name="buffer">The character memory region to write to the text stream.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteAsync(System.String)">
+ <summary>Writes a string to the text stream asynchronously.</summary>
+ <param name="value">The string to write. If <paramref name="value" /> is <see langword="null" />, nothing is written to the text stream.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The text writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The text writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteAsync(System.Text.StringBuilder,System.Threading.CancellationToken)">
+ <summary>Asynchronously writes a string builder to the text stream.</summary>
+ <param name="value">The string, as a string builder, to write to the text stream.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine">
+ <summary>Writes a line terminator to the text stream.</summary>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.Boolean)">
+ <summary>Writes the text representation of a <see langword="Boolean" /> value to the text stream, followed by a line terminator.</summary>
+ <param name="value">The <see langword="Boolean" /> value to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.Char)">
+ <summary>Writes a character to the text stream, followed by a line terminator.</summary>
+ <param name="value">The character to write to the text stream.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.Char[])">
+ <summary>Writes an array of characters to the text stream, followed by a line terminator.</summary>
+ <param name="buffer">The character array from which data is read.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.Char[],System.Int32,System.Int32)">
+ <summary>Writes a subarray of characters to the text stream, followed by a line terminator.</summary>
+ <param name="buffer">The character array from which data is read.</param>
+ <param name="index">The character position in <paramref name="buffer" /> at which to start reading data.</param>
+ <param name="count">The maximum number of characters to write.</param>
+ <exception cref="T:System.ArgumentException">The buffer length minus <paramref name="index" /> is less than <paramref name="count" />.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.Decimal)">
+ <summary>Writes the text representation of a decimal value to the text stream, followed by a line terminator.</summary>
+ <param name="value">The decimal value to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.Double)">
+ <summary>Writes the text representation of a 8-byte floating-point value to the text stream, followed by a line terminator.</summary>
+ <param name="value">The 8-byte floating-point value to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.Int32)">
+ <summary>Writes the text representation of a 4-byte signed integer to the text stream, followed by a line terminator.</summary>
+ <param name="value">The 4-byte signed integer to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.Int64)">
+ <summary>Writes the text representation of an 8-byte signed integer to the text stream, followed by a line terminator.</summary>
+ <param name="value">The 8-byte signed integer to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.Object)">
+ <summary>Writes the text representation of an object to the text stream, by calling the <see langword="ToString" /> method on that object, followed by a line terminator.</summary>
+ <param name="value">The object to write. If <paramref name="value" /> is <see langword="null" />, only the line terminator is written.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.ReadOnlySpan{System.Char})">
+ <summary>Writes the text representation of a character span to the text stream, followed by a line terminator.</summary>
+ <param name="buffer">The char span value to write to the text stream.</param>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.Single)">
+ <summary>Writes the text representation of a 4-byte floating-point value to the text stream, followed by a line terminator.</summary>
+ <param name="value">The 4-byte floating-point value to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.String)">
+ <summary>Writes a string to the text stream, followed by a line terminator.</summary>
+ <param name="value">The string to write. If <paramref name="value" /> is <see langword="null" />, only the line terminator is written.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.String,System.Object)">
+ <summary>Writes a formatted string and a new line to the text stream, using the same semantics as the <see cref="M:System.String.Format(System.String,System.Object)" /> method.</summary>
+ <param name="format">A composite format string.</param>
+ <param name="arg0">The object to format and write.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="format" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="format" /> is not a valid composite format string.
+-or-
+The index of a format item is less than 0 (zero), or greater than or equal to the number of objects to be formatted (which, for this method overload, is one).</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.String,System.Object,System.Object)">
+ <summary>Writes a formatted string and a new line to the text stream, using the same semantics as the <see cref="M:System.String.Format(System.String,System.Object,System.Object)" /> method.</summary>
+ <param name="format">A composite format string.</param>
+ <param name="arg0">The first object to format and write.</param>
+ <param name="arg1">The second object to format and write.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="format" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="format" /> is not a valid composite format string.
+-or-
+The index of a format item is less than 0 (zero), or greater than or equal to the number of objects to be formatted (which, for this method overload, is two).</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.String,System.Object,System.Object,System.Object)">
+ <summary>Writes out a formatted string and a new line to the text stream, using the same semantics as <see cref="M:System.String.Format(System.String,System.Object)" />.</summary>
+ <param name="format">A composite format string.</param>
+ <param name="arg0">The first object to format and write.</param>
+ <param name="arg1">The second object to format and write.</param>
+ <param name="arg2">The third object to format and write.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="format" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="format" /> is not a valid composite format string.
+-or-
+The index of a format item is less than 0 (zero), or greater than or equal to the number of objects to be formatted (which, for this method overload, is three).</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.String,System.Object[])">
+ <summary>Writes out a formatted string and a new line to the text stream, using the same semantics as <see cref="M:System.String.Format(System.String,System.Object)" />.</summary>
+ <param name="format">A composite format string.</param>
+ <param name="arg">An object array that contains zero or more objects to format and write.</param>
+ <exception cref="T:System.ArgumentNullException">A string or object is passed in as <see langword="null" />.</exception>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.FormatException">
+ <paramref name="format" /> is not a valid composite format string.
+-or-
+The index of a format item is less than 0 (zero), or greater than or equal to the length of the <paramref name="arg" /> array.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.Text.StringBuilder)">
+ <summary>Writes the text representation of a string builder to the text stream, followed by a line terminator.</summary>
+ <param name="value">The string, as a string builder, to write to the text stream.</param>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.UInt32)">
+ <summary>Writes the text representation of a 4-byte unsigned integer to the text stream, followed by a line terminator.</summary>
+ <param name="value">The 4-byte unsigned integer to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLine(System.UInt64)">
+ <summary>Writes the text representation of an 8-byte unsigned integer to the text stream, followed by a line terminator.</summary>
+ <param name="value">The 8-byte unsigned integer to write.</param>
+ <exception cref="T:System.ObjectDisposedException">The <see cref="T:System.IO.TextWriter" /> is closed.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLineAsync">
+ <summary>Asynchronously writes a line terminator to the text stream.</summary>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The text writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The text writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLineAsync(System.Char)">
+ <summary>Asynchronously writes a character to the text stream, followed by a line terminator.</summary>
+ <param name="value">The character to write to the text stream.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The text writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The text writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLineAsync(System.Char[])">
+ <summary>Asynchronously writes an array of characters to the text stream, followed by a line terminator.</summary>
+ <param name="buffer">The character array to write to the text stream. If the character array is <see langword="null" />, only the line terminator is written.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The text writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The text writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLineAsync(System.Char[],System.Int32,System.Int32)">
+ <summary>Asynchronously writes a subarray of characters to the text stream, followed by a line terminator.</summary>
+ <param name="buffer">The character array to write data from.</param>
+ <param name="index">The character position in the buffer at which to start retrieving data.</param>
+ <param name="count">The number of characters to write.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="index" /> plus <paramref name="count" /> is greater than the buffer length.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is negative.</exception>
+ <exception cref="T:System.ObjectDisposedException">The text writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The text writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLineAsync(System.ReadOnlyMemory{System.Char},System.Threading.CancellationToken)">
+ <summary>Asynchronously writes the text representation of a character memory region to the text stream, followed by a line terminator.</summary>
+ <param name="buffer">The character memory region to write to the text stream.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLineAsync(System.String)">
+ <summary>Asynchronously writes a string to the text stream, followed by a line terminator.</summary>
+ <param name="value">The string to write. If the value is <see langword="null" />, only a line terminator is written.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ <exception cref="T:System.ObjectDisposedException">The text writer is disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">The text writer is currently in use by a previous write operation.</exception>
+ </member>
+ <member name="M:System.IO.TextWriter.WriteLineAsync(System.Text.StringBuilder,System.Threading.CancellationToken)">
+ <summary>Asynchronously writes the text representation of a string builder to the text stream, followed by a line terminator.</summary>
+ <param name="value">The string, as a string builder, to write to the text stream.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ </member>
+ <member name="T:System.LoaderOptimization">
+ <summary>An enumeration used with the <see cref="T:System.LoaderOptimizationAttribute" /> class to specify loader optimizations for an executable.</summary>
+ </member>
+ <member name="F:System.LoaderOptimization.DisallowBindings">
+ <summary>Ignored by the common language runtime.</summary>
+ </member>
+ <member name="F:System.LoaderOptimization.DomainMask">
+ <summary>Do not use. This mask selects the domain-related values, screening out the unused <see cref="F:System.LoaderOptimization.DisallowBindings" /> flag.</summary>
+ </member>
+ <member name="F:System.LoaderOptimization.MultiDomain">
+ <summary>Indicates that the application will probably have many domains that use the same code, and the loader must share maximal internal resources across application domains.</summary>
+ </member>
+ <member name="F:System.LoaderOptimization.MultiDomainHost">
+ <summary>Indicates that the application will probably host unique code in multiple domains, and the loader must share resources across application domains only for globally available (strong-named) assemblies that have been added to the global assembly cache.</summary>
+ </member>
+ <member name="F:System.LoaderOptimization.NotSpecified">
+ <summary>Indicates that no optimizations for sharing internal resources are specified. If the default domain or hosting interface specified an optimization, then the loader uses that; otherwise, the loader uses <see cref="F:System.LoaderOptimization.SingleDomain" />.</summary>
+ </member>
+ <member name="F:System.LoaderOptimization.SingleDomain">
+ <summary>Indicates that the application will probably have a single domain, and loader must not share internal resources across application domains.</summary>
+ </member>
+ <member name="T:System.LoaderOptimizationAttribute">
+ <summary>Used to set the default loader optimization policy for the main method of an executable application.</summary>
+ </member>
+ <member name="M:System.LoaderOptimizationAttribute.#ctor(System.Byte)">
+ <summary>Initializes a new instance of the <see cref="T:System.LoaderOptimizationAttribute" /> class to the specified value.</summary>
+ <param name="value">A value equivalent to a <see cref="T:System.LoaderOptimization" /> constant.</param>
+ </member>
+ <member name="M:System.LoaderOptimizationAttribute.#ctor(System.LoaderOptimization)">
+ <summary>Initializes a new instance of the <see cref="T:System.LoaderOptimizationAttribute" /> class to the specified value.</summary>
+ <param name="value">A <see cref="T:System.LoaderOptimization" /> constant.</param>
+ </member>
+ <member name="P:System.LoaderOptimizationAttribute.Value">
+ <summary>Gets the current <see cref="T:System.LoaderOptimization" /> value for this instance.</summary>
+ <returns>A <see cref="T:System.LoaderOptimization" /> constant.</returns>
+ </member>
+ <member name="T:System.Math">
+ <summary>Provides constants and static methods for trigonometric, logarithmic, and other common mathematical functions.</summary>
+ </member>
+ <member name="M:System.Math.Abs(System.Decimal)">
+ <summary>Returns the absolute value of a <see cref="T:System.Decimal" /> number.</summary>
+ <param name="value">A number that is greater than or equal to <see cref="F:System.Decimal.MinValue" />, but less than or equal to <see cref="F:System.Decimal.MaxValue" />.</param>
+ <returns>A decimal number, x, such that 0 ≤ x ≤<see cref="F:System.Decimal.MaxValue" />.</returns>
+ </member>
+ <member name="M:System.Math.Abs(System.Double)">
+ <summary>Returns the absolute value of a double-precision floating-point number.</summary>
+ <param name="value">A number that is greater than or equal to <see cref="F:System.Double.MinValue" />, but less than or equal to <see cref="F:System.Double.MaxValue" />.</param>
+ <returns>A double-precision floating-point number, x, such that 0 ≤ x ≤<see cref="F:System.Double.MaxValue" />.</returns>
+ </member>
+ <member name="M:System.Math.Abs(System.Int16)">
+ <summary>Returns the absolute value of a 16-bit signed integer.</summary>
+ <param name="value">A number that is greater than <see cref="F:System.Int16.MinValue" />, but less than or equal to <see cref="F:System.Int16.MaxValue" />.</param>
+ <returns>A 16-bit signed integer, x, such that 0 ≤ x ≤<see cref="F:System.Int16.MaxValue" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> equals <see cref="F:System.Int16.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Math.Abs(System.Int32)">
+ <summary>Returns the absolute value of a 32-bit signed integer.</summary>
+ <param name="value">A number that is greater than <see cref="F:System.Int32.MinValue" />, but less than or equal to <see cref="F:System.Int32.MaxValue" />.</param>
+ <returns>A 32-bit signed integer, x, such that 0 ≤ x ≤<see cref="F:System.Int32.MaxValue" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> equals <see cref="F:System.Int32.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Math.Abs(System.Int64)">
+ <summary>Returns the absolute value of a 64-bit signed integer.</summary>
+ <param name="value">A number that is greater than <see cref="F:System.Int64.MinValue" />, but less than or equal to <see cref="F:System.Int64.MaxValue" />.</param>
+ <returns>A 64-bit signed integer, x, such that 0 ≤ x ≤<see cref="F:System.Int64.MaxValue" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> equals <see cref="F:System.Int64.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Math.Abs(System.SByte)">
+ <summary>Returns the absolute value of an 8-bit signed integer.</summary>
+ <param name="value">A number that is greater than <see cref="F:System.SByte.MinValue" />, but less than or equal to <see cref="F:System.SByte.MaxValue" />.</param>
+ <returns>An 8-bit signed integer, x, such that 0 ≤ x ≤<see cref="F:System.SByte.MaxValue" />.</returns>
+ <exception cref="T:System.OverflowException">
+ <paramref name="value" /> equals <see cref="F:System.SByte.MinValue" />.</exception>
+ </member>
+ <member name="M:System.Math.Abs(System.Single)">
+ <summary>Returns the absolute value of a single-precision floating-point number.</summary>
+ <param name="value">A number that is greater than or equal to <see cref="F:System.Single.MinValue" />, but less than or equal to <see cref="F:System.Single.MaxValue" />.</param>
+ <returns>A single-precision floating-point number, x, such that 0 ≤ x ≤<see cref="F:System.Single.MaxValue" />.</returns>
+ </member>
+ <member name="M:System.Math.Acos(System.Double)">
+ <summary>Returns the angle whose cosine is the specified number.</summary>
+ <param name="d">A number representing a cosine, where <paramref name="d" /> must be greater than or equal to -1, but less than or equal to 1.</param>
+ <returns>An angle, θ, measured in radians, such that 0 ≤θ≤π
+-or-
+<see cref="F:System.Double.NaN" /> if <paramref name="d" /> &lt; -1 or <paramref name="d" /> &gt; 1 or <paramref name="d" /> equals <see cref="F:System.Double.NaN" />.</returns>
+ </member>
+ <member name="M:System.Math.Acosh(System.Double)">
+ <summary>Returns the angle whose hyperbolic cosine is the specified number.</summary>
+ <param name="d">A number representing a hyperbolic cosine, where <paramref name="d" /> must be greater than or equal to 1, but less than or equal to <see cref="F:System.Double.PositiveInfinity" />.</param>
+ <returns>An angle, θ, measured in radians, such that 0 ≤ θ ≤ ∞.
+-or-
+<see cref="F:System.Double.NaN" /> if <paramref name="d" /> &lt; 1 or <paramref name="d" /> equals <see cref="F:System.Double.NaN" />.</returns>
+ </member>
+ <member name="M:System.Math.Asin(System.Double)">
+ <summary>Returns the angle whose sine is the specified number.</summary>
+ <param name="d">A number representing a sine, where <paramref name="d" /> must be greater than or equal to -1, but less than or equal to 1.</param>
+ <returns>An angle, θ, measured in radians, such that -π/2 ≤θ≤π/2
+-or-
+<see cref="F:System.Double.NaN" /> if <paramref name="d" /> &lt; -1 or <paramref name="d" /> &gt; 1 or <paramref name="d" /> equals <see cref="F:System.Double.NaN" />.</returns>
+ </member>
+ <member name="M:System.Math.Asinh(System.Double)">
+ <summary>Returns the angle whose hyperbolic sine is the specified number.</summary>
+ <param name="d">A number representing a hyperbolic sine, where <paramref name="d" /> must be greater than or equal to <see cref="F:System.Double.NegativeInfinity" />, but less than or equal to <see cref="F:System.Double.PositiveInfinity" />.</param>
+ <returns>An angle, θ, measured in radians, such that -∞ &lt; θ ≤-1, or 1 ≤ θ &lt; ∞.
+-or-
+<see cref="F:System.Double.NaN" /> if <paramref name="d" /> equals <see cref="F:System.Double.NaN" />.</returns>
+ </member>
+ <member name="M:System.Math.Atan(System.Double)">
+ <summary>Returns the angle whose tangent is the specified number.</summary>
+ <param name="d">A number representing a tangent.</param>
+ <returns>An angle, θ, measured in radians, such that -π/2 ≤θ≤π/2.
+-or-
+<see cref="F:System.Double.NaN" /> if <paramref name="d" /> equals <see cref="F:System.Double.NaN" />, -π/2 rounded to double precision (-1.5707963267949) if <paramref name="d" /> equals <see cref="F:System.Double.NegativeInfinity" />, or π/2 rounded to double precision (1.5707963267949) if <paramref name="d" /> equals <see cref="F:System.Double.PositiveInfinity" />.</returns>
+ </member>
+ <member name="M:System.Math.Atan2(System.Double,System.Double)">
+ <summary>Returns the angle whose tangent is the quotient of two specified numbers.</summary>
+ <param name="y">The y coordinate of a point.</param>
+ <param name="x">The x coordinate of a point.</param>
+ <returns>An angle, θ, measured in radians, such that -π≤θ≤π, and tan(θ) = <paramref name="y" /> / <paramref name="x" />, where (<paramref name="x" />, <paramref name="y" />) is a point in the Cartesian plane. Observe the following:
+
+For (<paramref name="x" />, <paramref name="y" />) in quadrant 1, 0 &lt; θ &lt; π/2.
+
+For (<paramref name="x" />, <paramref name="y" />) in quadrant 2, π/2 &lt; θ≤π.
+
+For (<paramref name="x" />, <paramref name="y" />) in quadrant 3, -π &lt; θ &lt; -π/2.
+
+For (<paramref name="x" />, <paramref name="y" />) in quadrant 4, -π/2 &lt; θ &lt; 0.
+
+
+For points on the boundaries of the quadrants, the return value is the following:
+
+If y is 0 and x is not negative, θ = 0.
+
+If y is 0 and x is negative, θ = π.
+
+If y is positive and x is 0, θ = π/2.
+
+If y is negative and x is 0, θ = -π/2.
+
+If y is 0 and x is 0, θ = 0.
+
+
+If <paramref name="x" /> or <paramref name="y" /> is <see cref="F:System.Double.NaN" />, or if <paramref name="x" /> and <paramref name="y" /> are either <see cref="F:System.Double.PositiveInfinity" /> or <see cref="F:System.Double.NegativeInfinity" />, the method returns <see cref="F:System.Double.NaN" />.</returns>
+ </member>
+ <member name="M:System.Math.Atanh(System.Double)">
+ <summary>Returns the angle whose hyperbolic tangent is the specified number.</summary>
+ <param name="d">A number representing a hyperbolic tangent, where <paramref name="d" /> must be greater than or equal to -1, but less than or equal to 1.</param>
+ <returns>An angle, θ, measured in radians, such that -∞ &lt; θ &lt; -1, or 1 &lt; θ &lt; ∞.
+-or-
+<see cref="F:System.Double.NaN" /> if <paramref name="d" /> &lt; -1 or <paramref name="d" /> &gt; 1 or <paramref name="d" /> equals <see cref="F:System.Double.NaN" />.</returns>
+ </member>
+ <member name="M:System.Math.BigMul(System.Int32,System.Int32)">
+ <summary>Produces the full product of two 32-bit numbers.</summary>
+ <param name="a">The first number to multiply.</param>
+ <param name="b">The second number to multiply.</param>
+ <returns>The number containing the product of the specified numbers.</returns>
+ </member>
+ <member name="M:System.Math.BitDecrement(System.Double)">
+ <summary>Returns the next smallest value that compares less than <paramref name="x" />.</summary>
+ <param name="x">The value to decrement.</param>
+ <returns>The next smallest value that compares less than <paramref name="x" />.
+-or-
+<see cref="F:System.Double.NegativeInfinity" /> if <paramref name="x" /> equals <see cref="F:System.Double.NegativeInfinity" />.
+-or-
+<see cref="F:System.Double.NaN" /> if <paramref name="x" /> equals <see cref="F:System.Double.NaN" />.</returns>
+ </member>
+ <member name="M:System.Math.BitIncrement(System.Double)">
+ <summary>Returns the next largest value that compares greater than <paramref name="x" />.</summary>
+ <param name="x">The value to increment.</param>
+ <returns>The next largest value that compares greater than <paramref name="x" />.
+-or-
+<see cref="F:System.Double.PositiveInfinity" /> if <paramref name="x" /> equals <see cref="F:System.Double.PositiveInfinity" />.
+-or-
+<see cref="F:System.Double.NaN" /> if <paramref name="x" /> equals <see cref="F:System.Double.NaN" />.</returns>
+ </member>
+ <member name="M:System.Math.Cbrt(System.Double)">
+ <summary>Returns the cube root of a specified number.</summary>
+ <param name="d">The number whose cube root is to be found.</param>
+ <returns>The cube root of <paramref name="d" />.
+-or-
+<see cref="F:System.Double.NaN" /> if <paramref name="x" /> equals <see cref="F:System.Double.NaN" />.</returns>
+ </member>
+ <member name="M:System.Math.Ceiling(System.Decimal)">
+ <summary>Returns the smallest integral value that is greater than or equal to the specified decimal number.</summary>
+ <param name="d">A decimal number.</param>
+ <returns>The smallest integral value that is greater than or equal to <paramref name="d" />. Note that this method returns a <see cref="T:System.Decimal" /> instead of an integral type.</returns>
+ </member>
+ <member name="M:System.Math.Ceiling(System.Double)">
+ <summary>Returns the smallest integral value that is greater than or equal to the specified double-precision floating-point number.</summary>
+ <param name="a">A double-precision floating-point number.</param>
+ <returns>The smallest integral value that is greater than or equal to <paramref name="a" />. If <paramref name="a" /> is equal to <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NegativeInfinity" />, or <see cref="F:System.Double.PositiveInfinity" />, that value is returned. Note that this method returns a <see cref="T:System.Double" /> instead of an integral type.</returns>
+ </member>
+ <member name="M:System.Math.Clamp(System.Byte,System.Byte,System.Byte)">
+ <summary>Returns <paramref name="value" /> clamped to the inclusive range of <paramref name="min" /> and <paramref name="max" />.</summary>
+ <param name="value">The value to be clamped.</param>
+ <param name="min">The lower bound of the result.</param>
+ <param name="max">The upper bound of the result.</param>
+ <returns>
+ <paramref name="value" /> if <paramref name="min" /> ≤ <paramref name="value" /> ≤ <paramref name="max" />.
+-or-
+<paramref name="min" /> if <paramref name="value" /> &lt; <paramref name="min" />.
+-or-
+<paramref name="max" /> if <paramref name="max" /> &lt; <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Math.Clamp(System.Decimal,System.Decimal,System.Decimal)">
+ <summary>Returns <paramref name="value" /> clamped to the inclusive range of <paramref name="min" /> and <paramref name="max" />.</summary>
+ <param name="value">The value to be clamped.</param>
+ <param name="min">The lower bound of the result.</param>
+ <param name="max">The upper bound of the result.</param>
+ <returns>
+ <paramref name="value" /> if <paramref name="min" /> ≤ <paramref name="value" /> ≤ <paramref name="max" />.
+-or-
+<paramref name="min" /> if <paramref name="value" /> &lt;<paramref name="min" />.
+-or-
+<paramref name="max" /> if <paramref name="max" /> &lt; <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Math.Clamp(System.Double,System.Double,System.Double)">
+ <summary>Returns <paramref name="value" /> clamped to the inclusive range of <paramref name="min" /> and <paramref name="max" />.</summary>
+ <param name="value">The value to be clamped.</param>
+ <param name="min">The lower bound of the result.</param>
+ <param name="max">The upper bound of the result.</param>
+ <returns>
+ <paramref name="value" /> if <paramref name="min" /> ≤ <paramref name="value" /> ≤ <paramref name="max" />.
+-or-
+<paramref name="min" /> if <paramref name="value" /> &lt; <paramref name="min" />.
+-or-
+<paramref name="max" /> if <paramref name="max" /> &lt; <paramref name="value" />.``
+-or-
+<see cref="F:System.Double.NaN" /> if <paramref name="value" /> equals <see cref="F:System.Double.NaN" />.</returns>
+ </member>
+ <member name="M:System.Math.Clamp(System.Int16,System.Int16,System.Int16)">
+ <summary>Returns <paramref name="value" /> clamped to the inclusive range of <paramref name="min" /> and <paramref name="max" />.</summary>
+ <param name="value">The value to be clamped.</param>
+ <param name="min">The lower bound of the result.</param>
+ <param name="max">The upper bound of the result.</param>
+ <returns>
+ <paramref name="value" /> if <paramref name="min" /> ≤ <paramref name="value" /> ≤ <paramref name="max" />.
+-or-
+<paramref name="min" /> if <paramref name="value" /> &lt; <paramref name="min" />.
+-or-
+<paramref name="max" /> if <paramref name="max" /> &lt; <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Math.Clamp(System.Int32,System.Int32,System.Int32)">
+ <summary>Returns <paramref name="value" /> clamped to the inclusive range of <paramref name="min" /> and <paramref name="max" />.</summary>
+ <param name="value">The value to be clamped.</param>
+ <param name="min">The lower bound of the result.</param>
+ <param name="max">The upper bound of the result.</param>
+ <returns>
+ <paramref name="value" /> if <paramref name="min" /> ≤ <paramref name="value" /> ≤ <paramref name="max" />.
+-or-
+<paramref name="min" /> if <paramref name="value" /> &lt; <paramref name="min" />.
+-or-
+<paramref name="max" /> if <paramref name="max" /> &lt; <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Math.Clamp(System.Int64,System.Int64,System.Int64)">
+ <summary>Returns <paramref name="value" /> clamped to the inclusive range of <paramref name="min" /> and <paramref name="max" />.</summary>
+ <param name="value">The value to be clamped.</param>
+ <param name="min">The lower bound of the result.</param>
+ <param name="max">The upper bound of the result.</param>
+ <returns>
+ <paramref name="value" /> if <paramref name="min" /> ≤ <paramref name="value" /> ≤ <paramref name="max" />.
+-or-
+<paramref name="min" /> if <paramref name="value" /> &lt; <paramref name="min" />.
+-or-
+<paramref name="max" /> if <paramref name="max" /> &lt; <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Math.Clamp(System.SByte,System.SByte,System.SByte)">
+ <summary>Returns <paramref name="value" /> clamped to the inclusive range of <paramref name="min" /> and <paramref name="max" />.</summary>
+ <param name="value">The value to be clamped.</param>
+ <param name="min">The lower bound of the result.</param>
+ <param name="max">The upper bound of the result.</param>
+ <returns>
+ <paramref name="value" /> if <paramref name="min" /> ≤ <paramref name="value" /> ≤ <paramref name="max" />.
+-or-
+<paramref name="min" /> if <paramref name="value" /> &lt; <paramref name="min" />.
+-or-
+<paramref name="max" /> if <paramref name="max" /> &lt; <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Math.Clamp(System.Single,System.Single,System.Single)">
+ <summary>Returns <paramref name="value" /> clamped to the inclusive range of <paramref name="min" /> and <paramref name="max" />.</summary>
+ <param name="value">The value to be clamped.</param>
+ <param name="min">The lower bound of the result.</param>
+ <param name="max">The upper bound of the result.</param>
+ <returns>
+ <paramref name="value" /> if <paramref name="min" /> ≤ <paramref name="value" /> ≤ <paramref name="max" />.
+-or-
+<paramref name="min" /> if <paramref name="value" /> &lt; <paramref name="min" />.
+-or-
+<paramref name="max" /> if <paramref name="max" /> &lt; <paramref name="value" />.
+-or-
+<see cref="F:System.Single.NaN" /> if <paramref name="value" /> equals <see cref="F:System.Single.NaN" />.</returns>
+ </member>
+ <member name="M:System.Math.Clamp(System.UInt16,System.UInt16,System.UInt16)">
+ <summary>Returns <paramref name="value" /> clamped to the inclusive range of <paramref name="min" /> and <paramref name="max" />.</summary>
+ <param name="value">The value to be clamped.</param>
+ <param name="min">The lower bound of the result.</param>
+ <param name="max">The upper bound of the result.</param>
+ <returns>
+ <paramref name="value" /> if <paramref name="min" /> ≤ <paramref name="value" /> ≤ <paramref name="max" />.
+-or-
+<paramref name="min" /> if <paramref name="value" /> &lt; <paramref name="min" />.
+-or-
+<paramref name="max" /> if <paramref name="max" /> &lt; <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Math.Clamp(System.UInt32,System.UInt32,System.UInt32)">
+ <summary>Returns <paramref name="value" /> clamped to the inclusive range of <paramref name="min" /> and <paramref name="max" />.</summary>
+ <param name="value">The value to be clamped.</param>
+ <param name="min">The lower bound of the result.</param>
+ <param name="max">The upper bound of the result.</param>
+ <returns>
+ <paramref name="value" /> if <paramref name="min" /> ≤ <paramref name="value" /> ≤ <paramref name="max" />.
+-or-
+<paramref name="min" /> if <paramref name="value" /> &lt; <paramref name="min" />.
+-or-
+<paramref name="max" /> if <paramref name="max" /> &lt; <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Math.Clamp(System.UInt64,System.UInt64,System.UInt64)">
+ <summary>Returns <paramref name="value" /> clamped to the inclusive range of <paramref name="min" /> and <paramref name="max" />.</summary>
+ <param name="value">The value to be clamped.</param>
+ <param name="min">The lower bound of the result.</param>
+ <param name="max">The upper bound of the result.</param>
+ <returns>
+ <paramref name="value" /> if <paramref name="min" /> ≤ <paramref name="value" /> ≤ <paramref name="max" />.
+-or-
+<paramref name="min" /> if <paramref name="value" /> &lt; <paramref name="min" />.
+-or-
+<paramref name="max" /> if <paramref name="max" /> &lt; <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Math.CopySign(System.Double,System.Double)">
+ <summary>Returns a value with the magnitude of <paramref name="x" /> and the sign of <paramref name="y" />.</summary>
+ <param name="x">A number whose magnitude is used in the result.</param>
+ <param name="y">A number whose sign is the used in the result.</param>
+ <returns>A value with the magnitude of <paramref name="x" /> and the sign of <paramref name="y" />.</returns>
+ </member>
+ <member name="M:System.Math.Cos(System.Double)">
+ <summary>Returns the cosine of the specified angle.</summary>
+ <param name="d">An angle, measured in radians.</param>
+ <returns>The cosine of <paramref name="d" />. If <paramref name="d" /> is equal to <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NegativeInfinity" />, or <see cref="F:System.Double.PositiveInfinity" />, this method returns <see cref="F:System.Double.NaN" />.</returns>
+ </member>
+ <member name="M:System.Math.Cosh(System.Double)">
+ <summary>Returns the hyperbolic cosine of the specified angle.</summary>
+ <param name="value">An angle, measured in radians.</param>
+ <returns>The hyperbolic cosine of <paramref name="value" />. If <paramref name="value" /> is equal to <see cref="F:System.Double.NegativeInfinity" /> or <see cref="F:System.Double.PositiveInfinity" />, <see cref="F:System.Double.PositiveInfinity" /> is returned. If <paramref name="value" /> is equal to <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NaN" /> is returned.</returns>
+ </member>
+ <member name="M:System.Math.DivRem(System.Int32,System.Int32,System.Int32@)">
+ <summary>Calculates the quotient of two 32-bit signed integers and also returns the remainder in an output parameter.</summary>
+ <param name="a">The dividend.</param>
+ <param name="b">The divisor.</param>
+ <param name="result">The remainder.</param>
+ <returns>The quotient of the specified numbers.</returns>
+ <exception cref="T:System.DivideByZeroException">
+ <paramref name="b" /> is zero.</exception>
+ </member>
+ <member name="M:System.Math.DivRem(System.Int64,System.Int64,System.Int64@)">
+ <summary>Calculates the quotient of two 64-bit signed integers and also returns the remainder in an output parameter.</summary>
+ <param name="a">The dividend.</param>
+ <param name="b">The divisor.</param>
+ <param name="result">The remainder.</param>
+ <returns>The quotient of the specified numbers.</returns>
+ <exception cref="T:System.DivideByZeroException">
+ <paramref name="b" /> is zero.</exception>
+ </member>
+ <member name="F:System.Math.E">
+ <summary>Represents the natural logarithmic base, specified by the constant, <see langword="e" />.</summary>
+ </member>
+ <member name="M:System.Math.Exp(System.Double)">
+ <summary>Returns <see langword="e" /> raised to the specified power.</summary>
+ <param name="d">A number specifying a power.</param>
+ <returns>The number <see langword="e" /> raised to the power <paramref name="d" />. If <paramref name="d" /> equals <see cref="F:System.Double.NaN" /> or <see cref="F:System.Double.PositiveInfinity" />, that value is returned. If <paramref name="d" /> equals <see cref="F:System.Double.NegativeInfinity" />, 0 is returned.</returns>
+ </member>
+ <member name="M:System.Math.Floor(System.Decimal)">
+ <summary>Returns the largest integral value less than or equal to the specified decimal number.</summary>
+ <param name="d">A decimal number.</param>
+ <returns>The largest integral value less than or equal to <paramref name="d" />. Note that the method returns an integral value of type <see cref="T:System.Decimal" />.</returns>
+ </member>
+ <member name="M:System.Math.Floor(System.Double)">
+ <summary>Returns the largest integral value less than or equal to the specified double-precision floating-point number.</summary>
+ <param name="d">A double-precision floating-point number.</param>
+ <returns>The largest integral value less than or equal to <paramref name="d" />. If <paramref name="d" /> is equal to <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NegativeInfinity" />, or <see cref="F:System.Double.PositiveInfinity" />, that value is returned.</returns>
+ </member>
+ <member name="M:System.Math.FusedMultiplyAdd(System.Double,System.Double,System.Double)">
+ <summary>Returns (x * y) + z, rounded as one ternary operation.</summary>
+ <param name="x">The number to be multiplied with <paramref name="y" />.</param>
+ <param name="y">The number to be multiplied with <paramref name="x" />.</param>
+ <param name="z">The number to be added to the result of <paramref name="x" /> multiplied by <paramref name="y" />.</param>
+ <returns>(x * y) + z, rounded as one ternary operation.</returns>
+ </member>
+ <member name="M:System.Math.IEEERemainder(System.Double,System.Double)">
+ <summary>Returns the remainder resulting from the division of a specified number by another specified number.</summary>
+ <param name="x">A dividend.</param>
+ <param name="y">A divisor.</param>
+ <returns>A number equal to <paramref name="x" /> - (<paramref name="y" /> Q), where Q is the quotient of <paramref name="x" /> / <paramref name="y" /> rounded to the nearest integer (if <paramref name="x" /> / <paramref name="y" /> falls halfway between two integers, the even integer is returned).
+If <paramref name="x" /> - (<paramref name="y" /> Q) is zero, the value +0 is returned if <paramref name="x" /> is positive, or -0 if <paramref name="x" /> is negative.
+If <paramref name="y" /> = 0, <see cref="F:System.Double.NaN" /> is returned.</returns>
+ </member>
+ <member name="M:System.Math.ILogB(System.Double)">
+ <summary>Returns the base 2 integer logarithm of a specified number.</summary>
+ <param name="x">The number whose logarithm is to be found.</param>
+ <returns>One of the values in the following table.
+ <paramref name="x" /> parameter
+
+ Return value
+
+ Default
+
+ The base 2 integer log of <paramref name="x" />; that is, (int)log2(<paramref name="x" />).
+
+ Zero
+
+ <see cref="F:System.Int32.MinValue" /> Equal to <see cref="F:System.Double.NaN" /> or <see cref="F:System.Double.PositiveInfinity" /> or <see cref="F:System.Double.NegativeInfinity" /><see cref="F:System.Int32.MaxValue" /></returns>
+ </member>
+ <member name="M:System.Math.Log(System.Double)">
+ <summary>Returns the natural (base <see langword="e" />) logarithm of a specified number.</summary>
+ <param name="d">The number whose logarithm is to be found.</param>
+ <returns>One of the values in the following table.
+ <paramref name="d" /> parameter
+
+ Return value
+
+ Positive
+
+ The natural logarithm of <paramref name="d" />; that is, ln <paramref name="d" />, or log e <paramref name="d" /> Zero
+
+ <see cref="F:System.Double.NegativeInfinity" /> Negative
+
+ <see cref="F:System.Double.NaN" /> Equal to <see cref="F:System.Double.NaN" /><see cref="F:System.Double.NaN" /> Equal to <see cref="F:System.Double.PositiveInfinity" /><see cref="F:System.Double.PositiveInfinity" /></returns>
+ </member>
+ <member name="M:System.Math.Log(System.Double,System.Double)">
+ <summary>Returns the logarithm of a specified number in a specified base.</summary>
+ <param name="a">The number whose logarithm is to be found.</param>
+ <param name="newBase">The base of the logarithm.</param>
+ <returns>One of the values in the following table. (+Infinity denotes <see cref="F:System.Double.PositiveInfinity" />, -Infinity denotes <see cref="F:System.Double.NegativeInfinity" />, and NaN denotes <see cref="F:System.Double.NaN" />.)
+ <paramref name="a" /><paramref name="newBase" /> Return value
+
+ <paramref name="a" />&gt; 0
+
+ (0 &lt;<paramref name="newBase" />&lt; 1) -or-(<paramref name="newBase" />&gt; 1)
+
+ lognewBase(a)
+
+ <paramref name="a" />&lt; 0
+
+ (any value)
+
+ NaN
+
+ (any value)
+
+ <paramref name="newBase" />&lt; 0
+
+ NaN
+
+ <paramref name="a" /> != 1
+
+ <paramref name="newBase" /> = 0
+
+ NaN
+
+ <paramref name="a" /> != 1
+
+ <paramref name="newBase" /> = +Infinity
+
+ NaN
+
+ <paramref name="a" /> = NaN
+
+ (any value)
+
+ NaN
+
+ (any value)
+
+ <paramref name="newBase" /> = NaN
+
+ NaN
+
+ (any value)
+
+ <paramref name="newBase" /> = 1
+
+ NaN
+
+ <paramref name="a" /> = 0
+
+ 0 &lt;<paramref name="newBase" />&lt; 1
+
+ +Infinity
+
+ <paramref name="a" /> = 0
+
+ <paramref name="newBase" />&gt; 1
+
+ -Infinity
+
+ <paramref name="a" /> = +Infinity
+
+ 0 &lt;<paramref name="newBase" />&lt; 1
+
+ -Infinity
+
+ <paramref name="a" /> = +Infinity
+
+ <paramref name="newBase" />&gt; 1
+
+ +Infinity
+
+ <paramref name="a" /> = 1
+
+ <paramref name="newBase" /> = 0
+
+ 0
+
+ <paramref name="a" /> = 1
+
+ <paramref name="newBase" /> = +Infinity
+
+ 0</returns>
+ </member>
+ <member name="M:System.Math.Log10(System.Double)">
+ <summary>Returns the base 10 logarithm of a specified number.</summary>
+ <param name="d">A number whose logarithm is to be found.</param>
+ <returns>One of the values in the following table.
+ <paramref name="d" /> parameter
+
+ Return value
+
+ Positive
+
+ The base 10 log of <paramref name="d" />; that is, log 10<paramref name="d" />.
+
+ Zero
+
+ <see cref="F:System.Double.NegativeInfinity" /> Negative
+
+ <see cref="F:System.Double.NaN" /> Equal to <see cref="F:System.Double.NaN" /><see cref="F:System.Double.NaN" /> Equal to <see cref="F:System.Double.PositiveInfinity" /><see cref="F:System.Double.PositiveInfinity" /></returns>
+ </member>
+ <member name="M:System.Math.Log2(System.Double)">
+ <summary>Returns the base 2 logarithm of a specified number.</summary>
+ <param name="x">A number whose logarithm is to be found.</param>
+ <returns>One of the values in the following table.
+ <paramref name="x" /> parameter
+
+ Return value
+
+ Positive
+
+ The base 2 log of <paramref name="x" />; that is, log 2<paramref name="x" />.
+
+ Zero
+
+ <see cref="F:System.Double.NegativeInfinity" /> Negative
+
+ <see cref="F:System.Double.NaN" /> Equal to <see cref="F:System.Double.NaN" /><see cref="F:System.Double.NaN" /> Equal to <see cref="F:System.Double.PositiveInfinity" /><see cref="F:System.Double.PositiveInfinity" /></returns>
+ </member>
+ <member name="M:System.Math.Max(System.Byte,System.Byte)">
+ <summary>Returns the larger of two 8-bit unsigned integers.</summary>
+ <param name="val1">The first of two 8-bit unsigned integers to compare.</param>
+ <param name="val2">The second of two 8-bit unsigned integers to compare.</param>
+ <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger.</returns>
+ </member>
+ <member name="M:System.Math.Max(System.Decimal,System.Decimal)">
+ <summary>Returns the larger of two decimal numbers.</summary>
+ <param name="val1">The first of two decimal numbers to compare.</param>
+ <param name="val2">The second of two decimal numbers to compare.</param>
+ <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger.</returns>
+ </member>
+ <member name="M:System.Math.Max(System.Double,System.Double)">
+ <summary>Returns the larger of two double-precision floating-point numbers.</summary>
+ <param name="val1">The first of two double-precision floating-point numbers to compare.</param>
+ <param name="val2">The second of two double-precision floating-point numbers to compare.</param>
+ <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger. If <paramref name="val1" />, <paramref name="val2" />, or both <paramref name="val1" /> and <paramref name="val2" /> are equal to <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NaN" /> is returned.</returns>
+ </member>
+ <member name="M:System.Math.Max(System.Int16,System.Int16)">
+ <summary>Returns the larger of two 16-bit signed integers.</summary>
+ <param name="val1">The first of two 16-bit signed integers to compare.</param>
+ <param name="val2">The second of two 16-bit signed integers to compare.</param>
+ <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger.</returns>
+ </member>
+ <member name="M:System.Math.Max(System.Int32,System.Int32)">
+ <summary>Returns the larger of two 32-bit signed integers.</summary>
+ <param name="val1">The first of two 32-bit signed integers to compare.</param>
+ <param name="val2">The second of two 32-bit signed integers to compare.</param>
+ <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger.</returns>
+ </member>
+ <member name="M:System.Math.Max(System.Int64,System.Int64)">
+ <summary>Returns the larger of two 64-bit signed integers.</summary>
+ <param name="val1">The first of two 64-bit signed integers to compare.</param>
+ <param name="val2">The second of two 64-bit signed integers to compare.</param>
+ <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger.</returns>
+ </member>
+ <member name="M:System.Math.Max(System.SByte,System.SByte)">
+ <summary>Returns the larger of two 8-bit signed integers.</summary>
+ <param name="val1">The first of two 8-bit signed integers to compare.</param>
+ <param name="val2">The second of two 8-bit signed integers to compare.</param>
+ <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger.</returns>
+ </member>
+ <member name="M:System.Math.Max(System.Single,System.Single)">
+ <summary>Returns the larger of two single-precision floating-point numbers.</summary>
+ <param name="val1">The first of two single-precision floating-point numbers to compare.</param>
+ <param name="val2">The second of two single-precision floating-point numbers to compare.</param>
+ <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger. If <paramref name="val1" />, or <paramref name="val2" />, or both <paramref name="val1" /> and <paramref name="val2" /> are equal to <see cref="F:System.Single.NaN" />, <see cref="F:System.Single.NaN" /> is returned.</returns>
+ </member>
+ <member name="M:System.Math.Max(System.UInt16,System.UInt16)">
+ <summary>Returns the larger of two 16-bit unsigned integers.</summary>
+ <param name="val1">The first of two 16-bit unsigned integers to compare.</param>
+ <param name="val2">The second of two 16-bit unsigned integers to compare.</param>
+ <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger.</returns>
+ </member>
+ <member name="M:System.Math.Max(System.UInt32,System.UInt32)">
+ <summary>Returns the larger of two 32-bit unsigned integers.</summary>
+ <param name="val1">The first of two 32-bit unsigned integers to compare.</param>
+ <param name="val2">The second of two 32-bit unsigned integers to compare.</param>
+ <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger.</returns>
+ </member>
+ <member name="M:System.Math.Max(System.UInt64,System.UInt64)">
+ <summary>Returns the larger of two 64-bit unsigned integers.</summary>
+ <param name="val1">The first of two 64-bit unsigned integers to compare.</param>
+ <param name="val2">The second of two 64-bit unsigned integers to compare.</param>
+ <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is larger.</returns>
+ </member>
+ <member name="M:System.Math.MaxMagnitude(System.Double,System.Double)">
+ <summary>Returns the larger magnitude of two double-precision floating-point numbers.</summary>
+ <param name="x">The first of two double-precision floating-point numbers to compare.</param>
+ <param name="y">The second of two double-precision floating-point numbers to compare.</param>
+ <returns>Parameter <paramref name="x" /> or <paramref name="y" />, whichever has the larger magnitude. If <paramref name="x" />, or <paramref name="y" />, or both <paramref name="x" /> and <paramref name="y" /> are equal to <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NaN" /> is returned.</returns>
+ </member>
+ <member name="M:System.Math.Min(System.Byte,System.Byte)">
+ <summary>Returns the smaller of two 8-bit unsigned integers.</summary>
+ <param name="val1">The first of two 8-bit unsigned integers to compare.</param>
+ <param name="val2">The second of two 8-bit unsigned integers to compare.</param>
+ <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller.</returns>
+ </member>
+ <member name="M:System.Math.Min(System.Decimal,System.Decimal)">
+ <summary>Returns the smaller of two decimal numbers.</summary>
+ <param name="val1">The first of two decimal numbers to compare.</param>
+ <param name="val2">The second of two decimal numbers to compare.</param>
+ <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller.</returns>
+ </member>
+ <member name="M:System.Math.Min(System.Double,System.Double)">
+ <summary>Returns the smaller of two double-precision floating-point numbers.</summary>
+ <param name="val1">The first of two double-precision floating-point numbers to compare.</param>
+ <param name="val2">The second of two double-precision floating-point numbers to compare.</param>
+ <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller. If <paramref name="val1" />, <paramref name="val2" />, or both <paramref name="val1" /> and <paramref name="val2" /> are equal to <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NaN" /> is returned.</returns>
+ </member>
+ <member name="M:System.Math.Min(System.Int16,System.Int16)">
+ <summary>Returns the smaller of two 16-bit signed integers.</summary>
+ <param name="val1">The first of two 16-bit signed integers to compare.</param>
+ <param name="val2">The second of two 16-bit signed integers to compare.</param>
+ <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller.</returns>
+ </member>
+ <member name="M:System.Math.Min(System.Int32,System.Int32)">
+ <summary>Returns the smaller of two 32-bit signed integers.</summary>
+ <param name="val1">The first of two 32-bit signed integers to compare.</param>
+ <param name="val2">The second of two 32-bit signed integers to compare.</param>
+ <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller.</returns>
+ </member>
+ <member name="M:System.Math.Min(System.Int64,System.Int64)">
+ <summary>Returns the smaller of two 64-bit signed integers.</summary>
+ <param name="val1">The first of two 64-bit signed integers to compare.</param>
+ <param name="val2">The second of two 64-bit signed integers to compare.</param>
+ <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller.</returns>
+ </member>
+ <member name="M:System.Math.Min(System.SByte,System.SByte)">
+ <summary>Returns the smaller of two 8-bit signed integers.</summary>
+ <param name="val1">The first of two 8-bit signed integers to compare.</param>
+ <param name="val2">The second of two 8-bit signed integers to compare.</param>
+ <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller.</returns>
+ </member>
+ <member name="M:System.Math.Min(System.Single,System.Single)">
+ <summary>Returns the smaller of two single-precision floating-point numbers.</summary>
+ <param name="val1">The first of two single-precision floating-point numbers to compare.</param>
+ <param name="val2">The second of two single-precision floating-point numbers to compare.</param>
+ <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller. If <paramref name="val1" />, <paramref name="val2" />, or both <paramref name="val1" /> and <paramref name="val2" /> are equal to <see cref="F:System.Single.NaN" />, <see cref="F:System.Single.NaN" /> is returned.</returns>
+ </member>
+ <member name="M:System.Math.Min(System.UInt16,System.UInt16)">
+ <summary>Returns the smaller of two 16-bit unsigned integers.</summary>
+ <param name="val1">The first of two 16-bit unsigned integers to compare.</param>
+ <param name="val2">The second of two 16-bit unsigned integers to compare.</param>
+ <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller.</returns>
+ </member>
+ <member name="M:System.Math.Min(System.UInt32,System.UInt32)">
+ <summary>Returns the smaller of two 32-bit unsigned integers.</summary>
+ <param name="val1">The first of two 32-bit unsigned integers to compare.</param>
+ <param name="val2">The second of two 32-bit unsigned integers to compare.</param>
+ <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller.</returns>
+ </member>
+ <member name="M:System.Math.Min(System.UInt64,System.UInt64)">
+ <summary>Returns the smaller of two 64-bit unsigned integers.</summary>
+ <param name="val1">The first of two 64-bit unsigned integers to compare.</param>
+ <param name="val2">The second of two 64-bit unsigned integers to compare.</param>
+ <returns>Parameter <paramref name="val1" /> or <paramref name="val2" />, whichever is smaller.</returns>
+ </member>
+ <member name="M:System.Math.MinMagnitude(System.Double,System.Double)">
+ <summary>Returns the smaller magnitude of two double-precision floating-point numbers.</summary>
+ <param name="x">The first of two double-precision floating-point numbers to compare.</param>
+ <param name="y">The second of two double-precision floating-point numbers to compare.</param>
+ <returns>Parameter <paramref name="x" /> or <paramref name="y" />, whichever has the smaller magnitude. If <paramref name="x" />, or <paramref name="y" />, or both <paramref name="x" /> and <paramref name="y" /> are equal to <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NaN" /> is returned.</returns>
+ </member>
+ <member name="F:System.Math.PI">
+ <summary>Represents the ratio of the circumference of a circle to its diameter, specified by the constant, π.</summary>
+ </member>
+ <member name="M:System.Math.Pow(System.Double,System.Double)">
+ <summary>Returns a specified number raised to the specified power.</summary>
+ <param name="x">A double-precision floating-point number to be raised to a power.</param>
+ <param name="y">A double-precision floating-point number that specifies a power.</param>
+ <returns>The number <paramref name="x" /> raised to the power <paramref name="y" />.</returns>
+ </member>
+ <member name="M:System.Math.Round(System.Decimal)">
+ <summary>Rounds a decimal value to the nearest integral value, and rounds midpoint values to the nearest even number.</summary>
+ <param name="d">A decimal number to be rounded.</param>
+ <returns>The integer nearest the <paramref name="d" /> parameter. If the fractional component of <paramref name="d" /> is halfway between two integers, one of which is even and the other odd, the even number is returned. Note that this method returns a <see cref="T:System.Decimal" /> instead of an integral type.</returns>
+ <exception cref="T:System.OverflowException">The result is outside the range of a <see cref="T:System.Decimal" />.</exception>
+ </member>
+ <member name="M:System.Math.Round(System.Decimal,System.Int32)">
+ <summary>Rounds a decimal value to a specified number of fractional digits, and rounds midpoint values to the nearest even number.</summary>
+ <param name="d">A decimal number to be rounded.</param>
+ <param name="decimals">The number of decimal places in the return value.</param>
+ <returns>The number nearest to <paramref name="d" /> that contains a number of fractional digits equal to <paramref name="decimals" />.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="decimals" /> is less than 0 or greater than 28.</exception>
+ <exception cref="T:System.OverflowException">The result is outside the range of a <see cref="T:System.Decimal" />.</exception>
+ </member>
+ <member name="M:System.Math.Round(System.Decimal,System.Int32,System.MidpointRounding)">
+ <summary>Rounds a decimal value to a specified number of fractional digits, and uses the specified rounding convention for midpoint values.</summary>
+ <param name="d">A decimal number to be rounded.</param>
+ <param name="decimals">The number of decimal places in the return value.</param>
+ <param name="mode">Specification for how to round <paramref name="d" /> if it is midway between two other numbers.</param>
+ <returns>The number nearest to <paramref name="d" /> that contains a number of fractional digits equal to <paramref name="decimals" />. If <paramref name="d" /> has fewer fractional digits than <paramref name="decimals" />, <paramref name="d" /> is returned unchanged.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="decimals" /> is less than 0 or greater than 28.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="mode" /> is not a valid value of <see cref="T:System.MidpointRounding" />.</exception>
+ <exception cref="T:System.OverflowException">The result is outside the range of a <see cref="T:System.Decimal" />.</exception>
+ </member>
+ <member name="M:System.Math.Round(System.Decimal,System.MidpointRounding)">
+ <summary>Rounds a decimal value to the nearest integer, and uses the specified rounding convention for midpoint values.</summary>
+ <param name="d">A decimal number to be rounded.</param>
+ <param name="mode">Specification for how to round <paramref name="d" /> if it is midway between two other numbers.</param>
+ <returns>The integer nearest <paramref name="d" />. If <paramref name="d" /> is halfway between two numbers, one of which is even and the other odd, then <paramref name="mode" /> determines which of the two is returned. Note that this method returns a <see cref="T:System.Decimal" /> instead of an integral type.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="mode" /> is not a valid value of <see cref="T:System.MidpointRounding" />.</exception>
+ <exception cref="T:System.OverflowException">The result is outside the range of a <see cref="T:System.Decimal" />.</exception>
+ </member>
+ <member name="M:System.Math.Round(System.Double)">
+ <summary>Rounds a double-precision floating-point value to the nearest integral value, and rounds midpoint values to the nearest even number.</summary>
+ <param name="a">A double-precision floating-point number to be rounded.</param>
+ <returns>The integer nearest <paramref name="a" />. If the fractional component of <paramref name="a" /> is halfway between two integers, one of which is even and the other odd, then the even number is returned. Note that this method returns a <see cref="T:System.Double" /> instead of an integral type.</returns>
+ </member>
+ <member name="M:System.Math.Round(System.Double,System.Int32)">
+ <summary>Rounds a double-precision floating-point value to a specified number of fractional digits, and rounds midpoint values to the nearest even number.</summary>
+ <param name="value">A double-precision floating-point number to be rounded.</param>
+ <param name="digits">The number of fractional digits in the return value.</param>
+ <returns>The number nearest to <paramref name="value" /> that contains a number of fractional digits equal to <paramref name="digits" />.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="digits" /> is less than 0 or greater than 15.</exception>
+ </member>
+ <member name="M:System.Math.Round(System.Double,System.Int32,System.MidpointRounding)">
+ <summary>Rounds a double-precision floating-point value to a specified number of fractional digits, and uses the specified rounding convention for midpoint values.</summary>
+ <param name="value">A double-precision floating-point number to be rounded.</param>
+ <param name="digits">The number of fractional digits in the return value.</param>
+ <param name="mode">Specification for how to round <paramref name="value" /> if it is midway between two other numbers.</param>
+ <returns>The number nearest to <paramref name="value" /> that has a number of fractional digits equal to <paramref name="digits" />. If <paramref name="value" /> has fewer fractional digits than <paramref name="digits" />, <paramref name="value" /> is returned unchanged.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="digits" /> is less than 0 or greater than 15.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="mode" /> is not a valid value of <see cref="T:System.MidpointRounding" />.</exception>
+ </member>
+ <member name="M:System.Math.Round(System.Double,System.MidpointRounding)">
+ <summary>Rounds a double-precision floating-point value to the nearest integer, and uses the specified rounding convention for midpoint values.</summary>
+ <param name="value">A double-precision floating-point number to be rounded.</param>
+ <param name="mode">Specification for how to round <paramref name="value" /> if it is midway between two other numbers.</param>
+ <returns>The integer nearest <paramref name="value" />. If <paramref name="value" /> is halfway between two integers, one of which is even and the other odd, then <paramref name="mode" /> determines which of the two is returned. Note that this method returns a <see cref="T:System.Double" /> instead of an integral type.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="mode" /> is not a valid value of <see cref="T:System.MidpointRounding" />.</exception>
+ </member>
+ <member name="M:System.Math.ScaleB(System.Double,System.Int32)">
+ <summary>Returns x * 2^n computed efficiently.</summary>
+ <param name="x">A single-precision floating-point number that specifies the base value.</param>
+ <param name="n">A single-precision floating-point number that specifies the power.</param>
+ <returns>x * 2^n computed efficiently.</returns>
+ </member>
+ <member name="M:System.Math.Sign(System.Decimal)">
+ <summary>Returns an integer that indicates the sign of a decimal number.</summary>
+ <param name="value">A signed decimal number.</param>
+ <returns>A number that indicates the sign of <paramref name="value" />, as shown in the following table.
+ Return value
+
+ Meaning
+
+ -1
+
+ <paramref name="value" /> is less than zero.
+
+ 0
+
+ <paramref name="value" /> is equal to zero.
+
+ 1
+
+ <paramref name="value" /> is greater than zero.</returns>
+ </member>
+ <member name="M:System.Math.Sign(System.Double)">
+ <summary>Returns an integer that indicates the sign of a double-precision floating-point number.</summary>
+ <param name="value">A signed number.</param>
+ <returns>A number that indicates the sign of <paramref name="value" />, as shown in the following table.
+ Return value
+
+ Meaning
+
+ -1
+
+ <paramref name="value" /> is less than zero.
+
+ 0
+
+ <paramref name="value" /> is equal to zero.
+
+ 1
+
+ <paramref name="value" /> is greater than zero.</returns>
+ <exception cref="T:System.ArithmeticException">
+ <paramref name="value" /> is equal to <see cref="F:System.Double.NaN" />.</exception>
+ </member>
+ <member name="M:System.Math.Sign(System.Int16)">
+ <summary>Returns an integer that indicates the sign of a 16-bit signed integer.</summary>
+ <param name="value">A signed number.</param>
+ <returns>A number that indicates the sign of <paramref name="value" />, as shown in the following table.
+ Return value
+
+ Meaning
+
+ -1
+
+ <paramref name="value" /> is less than zero.
+
+ 0
+
+ <paramref name="value" /> is equal to zero.
+
+ 1
+
+ <paramref name="value" /> is greater than zero.</returns>
+ </member>
+ <member name="M:System.Math.Sign(System.Int32)">
+ <summary>Returns an integer that indicates the sign of a 32-bit signed integer.</summary>
+ <param name="value">A signed number.</param>
+ <returns>A number that indicates the sign of <paramref name="value" />, as shown in the following table.
+ Return value
+
+ Meaning
+
+ -1
+
+ <paramref name="value" /> is less than zero.
+
+ 0
+
+ <paramref name="value" /> is equal to zero.
+
+ 1
+
+ <paramref name="value" /> is greater than zero.</returns>
+ </member>
+ <member name="M:System.Math.Sign(System.Int64)">
+ <summary>Returns an integer that indicates the sign of a 64-bit signed integer.</summary>
+ <param name="value">A signed number.</param>
+ <returns>A number that indicates the sign of <paramref name="value" />, as shown in the following table.
+ Return value
+
+ Meaning
+
+ -1
+
+ <paramref name="value" /> is less than zero.
+
+ 0
+
+ <paramref name="value" /> is equal to zero.
+
+ 1
+
+ <paramref name="value" /> is greater than zero.</returns>
+ </member>
+ <member name="M:System.Math.Sign(System.SByte)">
+ <summary>Returns an integer that indicates the sign of an 8-bit signed integer.</summary>
+ <param name="value">A signed number.</param>
+ <returns>A number that indicates the sign of <paramref name="value" />, as shown in the following table.
+ Return value
+
+ Meaning
+
+ -1
+
+ <paramref name="value" /> is less than zero.
+
+ 0
+
+ <paramref name="value" /> is equal to zero.
+
+ 1
+
+ <paramref name="value" /> is greater than zero.</returns>
+ </member>
+ <member name="M:System.Math.Sign(System.Single)">
+ <summary>Returns an integer that indicates the sign of a single-precision floating-point number.</summary>
+ <param name="value">A signed number.</param>
+ <returns>A number that indicates the sign of <paramref name="value" />, as shown in the following table.
+ Return value
+
+ Meaning
+
+ -1
+
+ <paramref name="value" /> is less than zero.
+
+ 0
+
+ <paramref name="value" /> is equal to zero.
+
+ 1
+
+ <paramref name="value" /> is greater than zero.</returns>
+ <exception cref="T:System.ArithmeticException">
+ <paramref name="value" /> is equal to <see cref="F:System.Single.NaN" />.</exception>
+ </member>
+ <member name="M:System.Math.Sin(System.Double)">
+ <summary>Returns the sine of the specified angle.</summary>
+ <param name="a">An angle, measured in radians.</param>
+ <returns>The sine of <paramref name="a" />. If <paramref name="a" /> is equal to <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NegativeInfinity" />, or <see cref="F:System.Double.PositiveInfinity" />, this method returns <see cref="F:System.Double.NaN" />.</returns>
+ </member>
+ <member name="M:System.Math.Sinh(System.Double)">
+ <summary>Returns the hyperbolic sine of the specified angle.</summary>
+ <param name="value">An angle, measured in radians.</param>
+ <returns>The hyperbolic sine of <paramref name="value" />. If <paramref name="value" /> is equal to <see cref="F:System.Double.NegativeInfinity" />, <see cref="F:System.Double.PositiveInfinity" />, or <see cref="F:System.Double.NaN" />, this method returns a <see cref="T:System.Double" /> equal to <paramref name="value" />.</returns>
+ </member>
+ <member name="M:System.Math.Sqrt(System.Double)">
+ <summary>Returns the square root of a specified number.</summary>
+ <param name="d">The number whose square root is to be found.</param>
+ <returns>One of the values in the following table.
+ <paramref name="d" /> parameter
+
+ Return value
+
+ Zero or positive
+
+ The positive square root of <paramref name="d" />.
+
+ Negative
+
+ <see cref="F:System.Double.NaN" /> Equals <see cref="F:System.Double.NaN" /><see cref="F:System.Double.NaN" /> Equals <see cref="F:System.Double.PositiveInfinity" /><see cref="F:System.Double.PositiveInfinity" /></returns>
+ </member>
+ <member name="M:System.Math.Tan(System.Double)">
+ <summary>Returns the tangent of the specified angle.</summary>
+ <param name="a">An angle, measured in radians.</param>
+ <returns>The tangent of <paramref name="a" />. If <paramref name="a" /> is equal to <see cref="F:System.Double.NaN" />, <see cref="F:System.Double.NegativeInfinity" />, or <see cref="F:System.Double.PositiveInfinity" />, this method returns <see cref="F:System.Double.NaN" />.</returns>
+ </member>
+ <member name="M:System.Math.Tanh(System.Double)">
+ <summary>Returns the hyperbolic tangent of the specified angle.</summary>
+ <param name="value">An angle, measured in radians.</param>
+ <returns>The hyperbolic tangent of <paramref name="value" />. If <paramref name="value" /> is equal to <see cref="F:System.Double.NegativeInfinity" />, this method returns -1. If value is equal to <see cref="F:System.Double.PositiveInfinity" />, this method returns 1. If <paramref name="value" /> is equal to <see cref="F:System.Double.NaN" />, this method returns <see cref="F:System.Double.NaN" />.</returns>
+ </member>
+ <member name="M:System.Math.Truncate(System.Decimal)">
+ <summary>Calculates the integral part of a specified decimal number.</summary>
+ <param name="d">A number to truncate.</param>
+ <returns>The integral part of <paramref name="d" />; that is, the number that remains after any fractional digits have been discarded.</returns>
+ </member>
+ <member name="M:System.Math.Truncate(System.Double)">
+ <summary>Calculates the integral part of a specified double-precision floating-point number.</summary>
+ <param name="d">A number to truncate.</param>
+ <returns>The integral part of <paramref name="d" />; that is, the number that remains after any fractional digits have been discarded, or one of the values listed in the following table.
+ <paramref name="d" /> Return value
+
+ <see cref="F:System.Double.NaN" /><see cref="F:System.Double.NaN" /><see cref="F:System.Double.NegativeInfinity" /><see cref="F:System.Double.NegativeInfinity" /><see cref="F:System.Double.PositiveInfinity" /><see cref="F:System.Double.PositiveInfinity" /></returns>
+ </member>
+ <member name="T:System.MathF">
+ <summary>Provides constants and static methods for trigonometric, logarithmic, and other common mathematical functions.</summary>
+ </member>
+ <member name="M:System.MathF.Abs(System.Single)">
+ <summary>Returns the absolute value of a single-precision floating-point number.</summary>
+ <param name="x">A number that is greater than or equal to <see cref="F:System.Single.MinValue" />, but less than or equal to <see cref="F:System.Single.MaxValue" />.</param>
+ <returns>A single-precision floating-point number, x, such that 0 ≤ x ≤ <see cref="F:System.Single.MaxValue" />.</returns>
+ </member>
+ <member name="M:System.MathF.Acos(System.Single)">
+ <summary>Returns the angle whose cosine is the specified number.</summary>
+ <param name="x">A number representing a cosine, where <paramref name="x" /> must be greater than or equal to -1, but less than or equal to 1.</param>
+ <returns>An angle, θ, measured in radians, such that 0 ≤ θ ≤ π.
+-or-
+<see cref="F:System.Single.NaN" /> if <paramref name="x" /> &lt; -1 or <paramref name="x" /> &gt; 1 or <paramref name="x" /> equals <see cref="F:System.Single.NaN" />.</returns>
+ </member>
+ <member name="M:System.MathF.Acosh(System.Single)">
+ <summary>Returns the angle whose hyperbolic cosine is the specified number.</summary>
+ <param name="x">A number representing a hyperbolic cosine, where <paramref name="x" /> must be greater than or equal to 1, but less than or equal to <see cref="F:System.Single.PositiveInfinity" />.</param>
+ <returns>An angle, θ, measured in radians, such that 0 ≤ θ ≤ ∞.
+-or-
+<see cref="F:System.Single.NaN" /> if <paramref name="x" /> &lt; 1 or <paramref name="x" /> equals <see cref="F:System.Single.NaN" />.</returns>
+ </member>
+ <member name="M:System.MathF.Asin(System.Single)">
+ <summary>Returns the angle whose sine is the specified number.</summary>
+ <param name="x">A number representing a sine, where <paramref name="x" /> must be greater than or equal to -1, but less than or equal to 1.</param>
+ <returns>An angle, θ, measured in radians, such that -π/2 ≤ θ ≤ π/2.
+-or-
+<see cref="F:System.Single.NaN" /> if <paramref name="x" /> &lt; -1 or <paramref name="x" /> &gt; 1 or <paramref name="x" /> equals <see cref="F:System.Single.NaN" />.</returns>
+ </member>
+ <member name="M:System.MathF.Asinh(System.Single)">
+ <summary>Returns the angle whose hyperbolic sine is the specified number.</summary>
+ <param name="x">A number representing a hyperbolic sine, where <paramref name="x" /> must be greater than or equal to <see cref="F:System.Single.NegativeInfinity" />, but less than or equal to <see cref="F:System.Single.PositiveInfinity" />.</param>
+ <returns>An angle, θ, measured in radians, such that -∞ &lt; θ ≤ -1, or 1 ≤ θ &lt; ∞.
+-or-
+<see cref="F:System.Single.NaN" /> if <paramref name="x" /> equals <see cref="F:System.Single.NaN" />.</returns>
+ </member>
+ <member name="M:System.MathF.Atan(System.Single)">
+ <summary>Returns the angle whose tangent is the specified number.</summary>
+ <param name="x">A number representing a tangent.</param>
+ <returns>An angle, θ, measured in radians, such that -π/2 ≤ θ ≤ π/2.
+-or-
+<see cref="F:System.Single.NaN" /> if <paramref name="x" /> equals <see cref="F:System.Single.NaN" />, -π/2 rounded to double precision (-1.5707963267949) if <paramref name="x" /> equals <see cref="F:System.Single.NegativeInfinity" />, or π/2 rounded to double precision (1.5707963267949) if <paramref name="x" /> equals <see cref="F:System.Single.PositiveInfinity" />.</returns>
+ </member>
+ <member name="M:System.MathF.Atan2(System.Single,System.Single)">
+ <summary>Returns the angle whose tangent is the quotient of two specified numbers.</summary>
+ <param name="y">The y coordinate of a point.</param>
+ <param name="x">The x coordinate of a point.</param>
+ <returns>An angle, θ, measured in radians, such that -π ≤ θ ≤ π, and tan(θ) = <paramref name="y" /> / <paramref name="x" />, where (<paramref name="x" />, <paramref name="y" />) is a point in the Cartesian plane. Observe the following:
+
+For (<paramref name="x" />, <paramref name="y" />) in quadrant 1, 0 &lt; θ &lt; π/2.
+
+For (<paramref name="x" />, <paramref name="y" />) in quadrant 2, π/2 &lt; θ ≤ π.
+
+For (<paramref name="x" />, <paramref name="y" />) in quadrant 3, -π &lt; θ &lt; -π/2.
+
+For (<paramref name="x" />, <paramref name="y" />) in quadrant 4, -π/2 &lt; θ &lt; 0.
+
+
+For points on the boundaries of the quadrants, the return value is the following:
+
+If y is 0 and x is not negative, θ = 0.
+
+If y is 0 and x is negative, θ = π.
+
+If y is positive and x is 0, θ = π/2.
+
+If y is negative and x is 0, θ = -π/2.
+
+If y is 0 and x is 0, θ = 0.
+
+
+If <paramref name="x" /> or <paramref name="y" /> is <see cref="F:System.Single.NaN" />, or if <paramref name="x" /> and <paramref name="y" /> are either <see cref="F:System.Single.PositiveInfinity" /> or <see cref="F:System.Single.NegativeInfinity" />, the method returns <see cref="F:System.Single.NaN" />.</returns>
+ </member>
+ <member name="M:System.MathF.Atanh(System.Single)">
+ <summary>Returns the angle whose hyperbolic tangent is the specified number.</summary>
+ <param name="x">A number representing a hyperbolic tangent, where <paramref name="x" /> must be greater than or equal to -1, but less than or equal to 1.</param>
+ <returns>An angle, θ, measured in radians, such that -∞ &lt; θ &lt;-1, or 1 &lt; θ &lt; ∞.
+-or-
+<see cref="F:System.Single.NaN" /> if <paramref name="x" /> &lt; -1 or <paramref name="x" /> &gt; 1 or <paramref name="x" /> equals <see cref="F:System.Single.NaN" />.</returns>
+ </member>
+ <member name="M:System.MathF.BitDecrement(System.Single)">
+ <summary>Returns the next smallest value that compares less than <paramref name="x" />.</summary>
+ <param name="x">The value to decrement.</param>
+ <returns>The next smallest value that compares less than <paramref name="x" />.
+-or-
+<see cref="F:System.Single.NegativeInfinity" /> if <paramref name="x" /> is equals <see cref="F:System.Single.NegativeInfinity" />.
+-or-
+<see cref="F:System.Single.NaN" /> if <paramref name="x" /> equals <see cref="F:System.Single.NaN" />.</returns>
+ </member>
+ <member name="M:System.MathF.BitIncrement(System.Single)">
+ <summary>Returns the next largest value that is greater than <paramref name="x" />.</summary>
+ <param name="x">The value to increment.</param>
+ <returns>The next largest value that is greater than <paramref name="x" />.
+-or-
+<see cref="F:System.Single.PositiveInfinity" /> if <paramref name="x" /> equals <see cref="F:System.Single.PositiveInfinity" />.
+-or-
+<see cref="F:System.Single.NaN" /> if <paramref name="x" /> is equals <see cref="F:System.Single.NaN" />.</returns>
+ </member>
+ <member name="M:System.MathF.Cbrt(System.Single)">
+ <summary>Returns the cube root of a specified number.</summary>
+ <param name="x">The number whose cube root is to be found.</param>
+ <returns>The cube root of <paramref name="x" />.
+-or-
+<see cref="F:System.Single.NaN" /> if <paramref name="x" /> is equals <see cref="F:System.Single.NaN" />.</returns>
+ </member>
+ <member name="M:System.MathF.Ceiling(System.Single)">
+ <summary>Returns the smallest integral value that is greater than or equal to the specified single-precision floating-point number.</summary>
+ <param name="x">A single-precision floating-point number.</param>
+ <returns>The smallest integral value that is greater than or equal to <paramref name="x" />. If <paramref name="x" /> is equal to <see cref="F:System.Single.NaN" />, <see cref="F:System.Single.NegativeInfinity" />, or <see cref="F:System.Single.PositiveInfinity" />, that value is returned. Note that this method returns a <see cref="T:System.Single" /> instead of an integral type.</returns>
+ </member>
+ <member name="M:System.MathF.CopySign(System.Single,System.Single)">
+ <summary>Returns a value with the magnitude of <paramref name="x" /> and the sign of <paramref name="y" />.</summary>
+ <param name="x">A number whose magnitude is used in the result.</param>
+ <param name="y">A number whose sign is the used in the result.</param>
+ <returns>A value with the magnitude of <paramref name="x" /> and the sign of <paramref name="y" />.</returns>
+ </member>
+ <member name="M:System.MathF.Cos(System.Single)">
+ <summary>Returns the cosine of the specified angle.</summary>
+ <param name="x">An angle, measured in radians.</param>
+ <returns>The cosine of <paramref name="x" />. If <paramref name="x" /> is equal to <see cref="F:System.Single.NaN" />, <see cref="F:System.Single.NegativeInfinity" />, or <see cref="F:System.Single.PositiveInfinity" />, this method returns <see cref="F:System.Single.NaN" />.</returns>
+ </member>
+ <member name="M:System.MathF.Cosh(System.Single)">
+ <summary>Returns the hyperbolic cosine of the specified angle.</summary>
+ <param name="x">An angle, measured in radians.</param>
+ <returns>The hyperbolic cosine of <paramref name="x" />. If <paramref name="x" /> is equal to <see cref="F:System.Single.NegativeInfinity" /> or <see cref="F:System.Single.PositiveInfinity" />, <see cref="F:System.Single.PositiveInfinity" /> is returned. If <paramref name="x" /> is equal to <see cref="F:System.Single.NaN" />, <see cref="F:System.Single.NaN" /> is returned.</returns>
+ </member>
+ <member name="F:System.MathF.E">
+ <summary>Represents the natural logarithmic base, specified by the constant, <see langword="e" />.</summary>
+ </member>
+ <member name="M:System.MathF.Exp(System.Single)">
+ <summary>Returns <see langword="e" /> raised to the specified power.</summary>
+ <param name="x">A number specifying a power.</param>
+ <returns>The number <see langword="e" /> raised to the power <paramref name="x" />. If <paramref name="x" /> equals <see cref="F:System.Single.NaN" /> or <see cref="F:System.Single.PositiveInfinity" />, that value is returned. If <paramref name="x" /> equals <see cref="F:System.Single.NegativeInfinity" />, 0 is returned.</returns>
+ </member>
+ <member name="M:System.MathF.Floor(System.Single)">
+ <summary>Returns the largest integral value less than or equal to the specified single-precision floating-point number.</summary>
+ <param name="x">A single-precision floating-point number.</param>
+ <returns>The largest integral value less than or equal to <paramref name="x" />. If <paramref name="x" /> is equal to <see cref="F:System.Single.NaN" />, <see cref="F:System.Single.NegativeInfinity" />, or <see cref="F:System.Single.PositiveInfinity" />, that value is returned.</returns>
+ </member>
+ <member name="M:System.MathF.FusedMultiplyAdd(System.Single,System.Single,System.Single)">
+ <summary>Returns (x * y) + z, rounded as one ternary operation.</summary>
+ <param name="x">The number to be multiplied with <paramref name="y" />.</param>
+ <param name="y">The number to be multiplied with <paramref name="x" />.</param>
+ <param name="z">The number to be added to the result of <paramref name="x" /> multiplied by <paramref name="y" />.</param>
+ <returns>(x * y) + z, rounded as one ternary operation.</returns>
+ </member>
+ <member name="M:System.MathF.IEEERemainder(System.Single,System.Single)">
+ <summary>Returns the remainder resulting from the division of a specified number by another specified number.</summary>
+ <param name="x">A dividend.</param>
+ <param name="y">A divisor.</param>
+ <returns>A number equal to <paramref name="x" /> - (<paramref name="y" /> Q), where Q is the quotient of <paramref name="x" /> / <paramref name="y" /> rounded to the nearest integer (if <paramref name="x" /> / <paramref name="y" /> falls halfway between two integers, the even integer is returned).
+If <paramref name="x" /> - (<paramref name="y" /> Q) is zero, the value +0 is returned if <paramref name="x" /> is positive, or -0 if <paramref name="x" /> is negative.
+If <paramref name="y" /> = 0, <see cref="F:System.Single.NaN" /> is returned.</returns>
+ </member>
+ <member name="M:System.MathF.ILogB(System.Single)">
+ <summary>Returns the base 2 integer logarithm of a specified number.</summary>
+ <param name="x">The number whose logarithm is to be found.</param>
+ <returns>One of the values in the following table.
+ <paramref name="x" /> parameter
+
+ Return value
+
+ Default
+
+ The base 2 integer log of <paramref name="x" />; that is, (int)log2(<paramref name="x" />).
+
+ Zero
+
+ <see cref="F:System.Int32.MinValue" /> Equal to <see cref="F:System.Single.NaN" /> or <see cref="F:System.Single.PositiveInfinity" /> or <see cref="F:System.Single.NegativeInfinity" /><see cref="F:System.Int32.MaxValue" /></returns>
+ </member>
+ <member name="M:System.MathF.Log(System.Single)">
+ <summary>Returns the natural (base <see langword="e" />) logarithm of a specified number.</summary>
+ <param name="x">The number whose logarithm is to be found.</param>
+ <returns>One of the values in the following table.
+ <paramref name="x" /> parameter
+
+ Return value
+
+ Positive
+
+ The natural logarithm of <paramref name="x" />; that is, ln <paramref name="x" />, or log e <paramref name="x" /> Zero
+
+ <see cref="F:System.Single.NegativeInfinity" /> Negative
+
+ <see cref="F:System.Single.NaN" /> Equal to <see cref="F:System.Single.NaN" /><see cref="F:System.Single.NaN" /> Equal to <see cref="F:System.Single.PositiveInfinity" /><see cref="F:System.Single.PositiveInfinity" /></returns>
+ </member>
+ <member name="M:System.MathF.Log(System.Single,System.Single)">
+ <summary>Returns the logarithm of a specified number in a specified base.</summary>
+ <param name="x">The number whose logarithm is to be found.</param>
+ <param name="y">The base.</param>
+ <returns>One of the values in the following table. (+Infinity denotes <see cref="F:System.Single.PositiveInfinity" />, -Infinity denotes <see cref="F:System.Single.NegativeInfinity" />, and NaN denotes <see cref="F:System.Single.NaN" />.)
+ <paramref name="x" /><paramref name="newBase" /> Return value
+
+ <paramref name="x" />&gt; 0
+
+ (0 &lt;<paramref name="newBase" />&lt; 1) -or-(<paramref name="newBase" />&gt; 1)
+
+ lognewBase(a)
+
+ <paramref name="x" />&lt; 0
+
+ (any value)
+
+ NaN
+
+ (any value)
+
+ <paramref name="newBase" />&lt; 0
+
+ NaN
+
+ <paramref name="x" /> != 1
+
+ <paramref name="newBase" /> = 0
+
+ NaN
+
+ <paramref name="x" /> != 1
+
+ <paramref name="newBase" /> = +Infinity
+
+ NaN
+
+ <paramref name="x" /> = NaN
+
+ (any value)
+
+ NaN
+
+ (any value)
+
+ <paramref name="newBase" /> = NaN
+
+ NaN
+
+ (any value)
+
+ <paramref name="newBase" /> = 1
+
+ NaN
+
+ <paramref name="x" /> = 0
+
+ 0 &lt;<paramref name="newBase" />&lt; 1
+
+ +Infinity
+
+ <paramref name="x" /> = 0
+
+ <paramref name="newBase" />&gt; 1
+
+ -Infinity
+
+ <paramref name="x" /> = +Infinity
+
+ 0 &lt;<paramref name="newBase" />&lt; 1
+
+ -Infinity
+
+ <paramref name="x" /> = +Infinity
+
+ <paramref name="newBase" />&gt; 1
+
+ +Infinity
+
+ <paramref name="x" /> = 1
+
+ <paramref name="newBase" /> = 0
+
+ 0
+
+ <paramref name="x" /> = 1
+
+ <paramref name="newBase" /> = +Infinity
+
+ 0</returns>
+ </member>
+ <member name="M:System.MathF.Log10(System.Single)">
+ <summary>Returns the base 10 logarithm of a specified number.</summary>
+ <param name="x">A number whose logarithm is to be found.</param>
+ <returns>One of the values in the following table.
+ <paramref name="x" /> parameter
+
+ Return value
+
+ Positive
+
+ The base 10 log of <paramref name="x" />; that is, log 10<paramref name="x" />.
+
+ Zero
+
+ <see cref="F:System.Single.NegativeInfinity" /> Negative
+
+ <see cref="F:System.Single.NaN" /> Equal to <see cref="F:System.Single.NaN" /><see cref="F:System.Single.NaN" /> Equal to <see cref="F:System.Single.PositiveInfinity" /><see cref="F:System.Single.PositiveInfinity" /></returns>
+ </member>
+ <member name="M:System.MathF.Log2(System.Single)">
+ <summary>Returns the base 2 logarithm of a specified number.</summary>
+ <param name="x">A number whose logarithm is to be found.</param>
+ <returns>One of the values in the following table.
+ <paramref name="x" /> parameter
+
+ Return value
+
+ Positive
+
+ The base 2 log of <paramref name="x" />; that is, log 2<paramref name="x" />.
+
+ Zero
+
+ <see cref="F:System.Single.NegativeInfinity" /> Negative
+
+ <see cref="F:System.Single.NaN" /> Equal to <see cref="F:System.Single.NaN" /><see cref="F:System.Single.NaN" /> Equal to <see cref="F:System.Single.PositiveInfinity" /><see cref="F:System.Single.PositiveInfinity" /></returns>
+ </member>
+ <member name="M:System.MathF.Max(System.Single,System.Single)">
+ <summary>Returns the larger of two single-precision floating-point numbers.</summary>
+ <param name="x">The first of two single-precision floating-point numbers to compare.</param>
+ <param name="y">The second of two single-precision floating-point numbers to compare.</param>
+ <returns>Parameter <paramref name="x" /> or <paramref name="y" />, whichever is larger. If <paramref name="x" />, or <paramref name="y" />, or both <paramref name="x" /> and <paramref name="y" /> are equal to <see cref="F:System.Single.NaN" />, <see cref="F:System.Single.NaN" /> is returned.</returns>
+ </member>
+ <member name="M:System.MathF.MaxMagnitude(System.Single,System.Single)">
+ <summary>Returns the larger magnitude of two single-precision floating-point numbers.</summary>
+ <param name="x">The first of two single-precision floating-point numbers to compare.</param>
+ <param name="y">The second of two single-precision floating-point numbers to compare.</param>
+ <returns>Parameter <paramref name="x" /> or <paramref name="y" />, whichever has the larger magnitude. If <paramref name="x" />, or <paramref name="y" />, or both <paramref name="x" /> and <paramref name="y" /> are equal to <see cref="F:System.Single.NaN" />, <see cref="F:System.Single.NaN" /> is returned.</returns>
+ </member>
+ <member name="M:System.MathF.Min(System.Single,System.Single)">
+ <summary>Returns the smaller of two single-precision floating-point numbers.</summary>
+ <param name="x">The first of two single-precision floating-point numbers to compare.</param>
+ <param name="y">The second of two single-precision floating-point numbers to compare.</param>
+ <returns>Parameter <paramref name="x" /> or <paramref name="y" />, whichever is smaller. If <paramref name="x" />, <paramref name="y" />, or both <paramref name="x" /> and <paramref name="y" /> are equal to <see cref="F:System.Single.NaN" />, <see cref="F:System.Single.NaN" /> is returned.</returns>
+ </member>
+ <member name="M:System.MathF.MinMagnitude(System.Single,System.Single)">
+ <summary>Returns the smaller magnitude of two single-precision floating-point numbers.</summary>
+ <param name="x">The first of two single-precision floating-point numbers to compare.</param>
+ <param name="y">The second of two single-precision floating-point numbers to compare.</param>
+ <returns>Parameter <paramref name="x" /> or <paramref name="y" />, whichever has the smaller magnitude. If <paramref name="x" />, or <paramref name="y" />, or both <paramref name="x" /> and <paramref name="y" /> are equal to <see cref="F:System.Single.NaN" />, <see cref="F:System.Single.NaN" /> is returned.</returns>
+ </member>
+ <member name="F:System.MathF.PI">
+ <summary>Represents the ratio of the circumference of a circle to its diameter, specified by the constant, π.</summary>
+ </member>
+ <member name="M:System.MathF.Pow(System.Single,System.Single)">
+ <summary>Returns a specified number raised to the specified power.</summary>
+ <param name="x">A single-precision floating-point number to be raised to a power.</param>
+ <param name="y">A single-precision floating-point number that specifies a power.</param>
+ <returns>The number <paramref name="x" /> raised to the power <paramref name="y" />.</returns>
+ </member>
+ <member name="M:System.MathF.Round(System.Single)">
+ <summary>Rounds a single-precision floating-point value to the nearest integral value, and rounds midpoint values to the nearest even number.</summary>
+ <param name="x">A single-precision floating-point number to be rounded.</param>
+ <returns>The integer nearest <paramref name="x" />. If the fractional component of <paramref name="x" /> is halfway between two integers, one of which is even and the other odd, then the even number is returned. Note that this method returns a <see cref="T:System.Single" /> instead of an integral type.</returns>
+ </member>
+ <member name="M:System.MathF.Round(System.Single,System.Int32)">
+ <summary>Rounds a single-precision floating-point value to a specified number of fractional digits, and rounds midpoint values to the nearest even number.</summary>
+ <param name="x">A single-precision floating-point number to be rounded.</param>
+ <param name="digits">The number of fractional digits in the return value.</param>
+ <returns>The number nearest to <paramref name="x" /> that contains a number of fractional digits equal to <paramref name="digits" />.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="digits" /> is less than 0 or greater than 6.</exception>
+ </member>
+ <member name="M:System.MathF.Round(System.Single,System.Int32,System.MidpointRounding)">
+ <summary>Rounds a single-precision floating-point value to a specified number of fractional digits, and uses the specified rounding convention for midpoint values.</summary>
+ <param name="x">A single-precision floating-point number to be rounded.</param>
+ <param name="digits">The number of fractional digits in the return value.</param>
+ <param name="mode">Specification for how to round <paramref name="x" /> if it is midway between two other numbers.</param>
+ <returns>The number nearest to <paramref name="x" /> that has a number of fractional digits equal to <paramref name="digits" />. If <paramref name="x" /> has fewer fractional digits than <paramref name="digits" />, <paramref name="x" /> is returned unchanged.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="digits" /> is less than 0 or greater than 6.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="mode" /> is not a valid value of <see cref="T:System.MidpointRounding" />.</exception>
+ </member>
+ <member name="M:System.MathF.Round(System.Single,System.MidpointRounding)">
+ <summary>Rounds a single-precision floating-point value to the nearest integer, and uses the specified rounding convention for midpoint values.</summary>
+ <param name="x">A single-precision floating-point number to be rounded.</param>
+ <param name="mode">Specification for how to round <paramref name="x" /> if it is midway between two other numbers.</param>
+ <returns>The integer nearest <paramref name="x" />. If <paramref name="x" /> is halfway between two integers, one of which is even and the other odd, then <paramref name="mode" /> determines which of the two is returned. Note that this method returns a <see cref="T:System.Single" /> instead of an integral type.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="mode" /> is not a valid value of <see cref="T:System.MidpointRounding" />.</exception>
+ </member>
+ <member name="M:System.MathF.ScaleB(System.Single,System.Int32)">
+ <summary>Returns x * 2^n computed efficiently.</summary>
+ <param name="x">A single-precision floating-point number that specifies the base value.</param>
+ <param name="n">A single-precision floating-point number that specifies the power.</param>
+ <returns>x * 2^n computed efficiently.</returns>
+ </member>
+ <member name="M:System.MathF.Sign(System.Single)">
+ <summary>Returns an integer that indicates the sign of a single-precision floating-point number.</summary>
+ <param name="x">A signed number.</param>
+ <returns>A number that indicates the sign of <paramref name="x" />, as shown in the following table.
+ Return value
+
+ Meaning
+
+ -1
+
+ <paramref name="x" /> is less than zero.
+
+ 0
+
+ <paramref name="x" /> is equal to zero.
+
+ 1
+
+ <paramref name="x" /> is greater than zero.</returns>
+ <exception cref="T:System.ArithmeticException">
+ <paramref name="x" /> is equal to <see cref="F:System.Single.NaN" />.</exception>
+ </member>
+ <member name="M:System.MathF.Sin(System.Single)">
+ <summary>Returns the sine of the specified angle.</summary>
+ <param name="x">An angle, measured in radians.</param>
+ <returns>The sine of <paramref name="x" />. If <paramref name="x" /> is equal to <see cref="F:System.Single.NaN" />, <see cref="F:System.Single.NegativeInfinity" />, or <see cref="F:System.Single.PositiveInfinity" />, this method returns <see cref="F:System.Single.NaN" />.</returns>
+ </member>
+ <member name="M:System.MathF.Sinh(System.Single)">
+ <summary>Returns the hyperbolic sine of the specified angle.</summary>
+ <param name="x">An angle, measured in radians.</param>
+ <returns>The hyperbolic sine of <paramref name="x" />. If <paramref name="x" /> is equal to <see cref="F:System.Single.NegativeInfinity" />, <see cref="F:System.Single.PositiveInfinity" />, or <see cref="F:System.Single.NaN" />, this method returns a <see cref="T:System.Single" /> equal to <paramref name="x" />.</returns>
+ </member>
+ <member name="M:System.MathF.Sqrt(System.Single)">
+ <summary>Returns the square root of a specified number.</summary>
+ <param name="x">The number whose square root is to be found.</param>
+ <returns>One of the values in the following table.
+ <paramref name="x" /> parameter
+
+ Return value
+
+ Zero or positive
+
+ The positive square root of <paramref name="x" />.
+
+ Negative
+
+ <see cref="F:System.Single.NaN" /> Equals <see cref="F:System.Single.NaN" /><see cref="F:System.Single.NaN" /> Equals <see cref="F:System.Single.PositiveInfinity" /><see cref="F:System.Single.PositiveInfinity" /></returns>
+ </member>
+ <member name="M:System.MathF.Tan(System.Single)">
+ <summary>Returns the tangent of the specified angle.</summary>
+ <param name="x">An angle, measured in radians.</param>
+ <returns>The tangent of <paramref name="x" />. If <paramref name="x" /> is equal to <see cref="F:System.Single.NaN" />, <see cref="F:System.Single.NegativeInfinity" />, or <see cref="F:System.Single.PositiveInfinity" />, this method returns <see cref="F:System.Single.NaN" />.</returns>
+ </member>
+ <member name="M:System.MathF.Tanh(System.Single)">
+ <summary>Returns the hyperbolic tangent of the specified angle.</summary>
+ <param name="x">An angle, measured in radians.</param>
+ <returns>The hyperbolic tangent of <paramref name="x" />. If <paramref name="x" /> is equal to <see cref="F:System.Single.NegativeInfinity" />, this method returns -1. If value is equal to <see cref="F:System.Single.PositiveInfinity" />, this method returns 1. If <paramref name="x" /> is equal to <see cref="F:System.Single.NaN" />, this method returns <see cref="F:System.Single.NaN" />.</returns>
+ </member>
+ <member name="M:System.MathF.Truncate(System.Single)">
+ <summary>Calculates the integral part of a specified single-precision floating-point number.</summary>
+ <param name="x">A number to truncate.</param>
+ <returns>The integral part of <paramref name="x" />; that is, the number that remains after any fractional digits have been discarded, or one of the values listed in the following table.
+ <paramref name="x" /> Return value
+
+ <see cref="F:System.Single.NaN" /><see cref="F:System.Single.NaN" /><see cref="F:System.Single.NegativeInfinity" /><see cref="F:System.Single.NegativeInfinity" /><see cref="F:System.Single.PositiveInfinity" /><see cref="F:System.Single.PositiveInfinity" /></returns>
+ </member>
+ <member name="T:System.Net.WebUtility">
+ <summary>Provides methods for encoding and decoding URLs when processing Web requests.</summary>
+ </member>
+ <member name="M:System.Net.WebUtility.HtmlDecode(System.String)">
+ <summary>Converts a string that has been HTML-encoded for HTTP transmission into a decoded string.</summary>
+ <param name="value">The string to decode.</param>
+ <returns>A decoded string.</returns>
+ </member>
+ <member name="M:System.Net.WebUtility.HtmlDecode(System.String,System.IO.TextWriter)">
+ <summary>Converts a string that has been HTML-encoded into a decoded string, and sends the decoded string to a <see cref="T:System.IO.TextWriter" /> output stream.</summary>
+ <param name="value">The string to decode.</param>
+ <param name="output">A <see cref="T:System.IO.TextWriter" /> stream of output.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="output" /> parameter cannot be <see langword="null" /> if the <paramref name="value" /> parameter is not <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Net.WebUtility.HtmlEncode(System.String)">
+ <summary>Converts a string to an HTML-encoded string.</summary>
+ <param name="value">The string to encode.</param>
+ <returns>An encoded string.</returns>
+ </member>
+ <member name="M:System.Net.WebUtility.HtmlEncode(System.String,System.IO.TextWriter)">
+ <summary>Converts a string into an HTML-encoded string, and returns the output as a <see cref="T:System.IO.TextWriter" /> stream of output.</summary>
+ <param name="value">The string to encode.</param>
+ <param name="output">A <see cref="T:System.IO.TextWriter" /> output stream.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="output" /> parameter cannot be <see langword="null" /> if the <paramref name="value" /> parameter is not <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Net.WebUtility.UrlDecode(System.String)">
+ <summary>Converts a string that has been encoded for transmission in a URL into a decoded string.</summary>
+ <param name="encodedValue">A URL-encoded string to decode.</param>
+ <returns>A decoded string.</returns>
+ </member>
+ <member name="M:System.Net.WebUtility.UrlDecodeToBytes(System.Byte[],System.Int32,System.Int32)">
+ <summary>Converts an encoded byte array that has been encoded for transmission in a URL into a decoded byte array.</summary>
+ <param name="encodedValue">A URL-encoded <see cref="T:System.Byte" /> array to decode.</param>
+ <param name="offset">The offset, in bytes, from the start of the <see cref="T:System.Byte" /> array to decode.</param>
+ <param name="count">The count, in bytes, to decode from the <see cref="T:System.Byte" /> array.</param>
+ <returns>A decoded <see cref="T:System.Byte" /> array.</returns>
+ </member>
+ <member name="M:System.Net.WebUtility.UrlEncode(System.String)">
+ <summary>Converts a text string into a URL-encoded string.</summary>
+ <param name="value">The text to URL-encode.</param>
+ <returns>A URL-encoded string.</returns>
+ </member>
+ <member name="M:System.Net.WebUtility.UrlEncodeToBytes(System.Byte[],System.Int32,System.Int32)">
+ <summary>Converts a byte array into a URL-encoded byte array.</summary>
+ <param name="value">The <see cref="T:System.Byte" /> array to URL-encode.</param>
+ <param name="offset">The offset, in bytes, from the start of the <see cref="T:System.Byte" /> array to encode.</param>
+ <param name="count">The count, in bytes, to encode from the <see cref="T:System.Byte" /> array.</param>
+ <returns>An encoded <see cref="T:System.Byte" /> array.</returns>
+ </member>
+ <member name="T:System.Numerics.BitOperations">
+ <summary>Provides utility methods for intrinsic bit-twiddling operations. The methods use hardware intrinsics when available on the underlying platform; otherwise, they use optimized software fallbacks.</summary>
+ </member>
+ <member name="M:System.Numerics.BitOperations.LeadingZeroCount(System.UInt32)">
+ <summary>Counts the number of leading zero bits in an unsigned 32-bit integer mask.</summary>
+ <param name="value">The mask.</param>
+ <returns>The number of leading zero bits in a mask.</returns>
+ </member>
+ <member name="M:System.Numerics.BitOperations.LeadingZeroCount(System.UInt64)">
+ <summary>Counts the number of leading zero bits in an unsigned 64-bit integer mask.</summary>
+ <param name="value">The mask.</param>
+ <returns>The number of leading zero bits in a mask.</returns>
+ </member>
+ <member name="M:System.Numerics.BitOperations.Log2(System.UInt32)">
+ <summary>Returns the integer (floor) log of the specified value, base 2.</summary>
+ <param name="value">The number from which to obtain the logarithm.</param>
+ <returns>The log of the specified value, base 2.</returns>
+ </member>
+ <member name="M:System.Numerics.BitOperations.Log2(System.UInt64)">
+ <summary>Returns the integer (floor) log of the specified value, base 2.</summary>
+ <param name="value">The number from which to obtain the logarithm.</param>
+ <returns>The log of the specified value, base 2.</returns>
+ </member>
+ <member name="M:System.Numerics.BitOperations.PopCount(System.UInt32)">
+ <summary>Returns the population count (number of bits set) of a mask.</summary>
+ <param name="value">The mask.</param>
+ <returns>The population count of a mask.</returns>
+ </member>
+ <member name="M:System.Numerics.BitOperations.PopCount(System.UInt64)">
+ <summary>Returns the population count (number of bits set) of an unsigned 64-bit integer mask.</summary>
+ <param name="value">The mask.</param>
+ <returns>The population count of the mask.</returns>
+ </member>
+ <member name="M:System.Numerics.BitOperations.RotateLeft(System.UInt32,System.Int32)">
+ <summary>Rotates the specified value left by the specified number of bits.</summary>
+ <param name="value">The value to rotate.</param>
+ <param name="offset">The number of bits to rotate by. Any value outside the range [0..31] is treated as congruent mod 32.</param>
+ <returns>The rotated value.</returns>
+ </member>
+ <member name="M:System.Numerics.BitOperations.RotateLeft(System.UInt64,System.Int32)">
+ <summary>Rotates the specified value left by the specified number of bits.</summary>
+ <param name="value">The value to rotate.</param>
+ <param name="offset">The number of bits to rotate by. Any value outside the range [0..63] is treated as congruent mod 64.</param>
+ <returns>The rotated value.</returns>
+ </member>
+ <member name="M:System.Numerics.BitOperations.RotateRight(System.UInt32,System.Int32)">
+ <summary>Rotates the specified value right by the specified number of bits.</summary>
+ <param name="value">The value to rotate.</param>
+ <param name="offset">The number of bits to rotate by. Any value outside the range [0..31] is treated as congruent mod 32.</param>
+ <returns>The rotated value.</returns>
+ </member>
+ <member name="M:System.Numerics.BitOperations.RotateRight(System.UInt64,System.Int32)">
+ <summary>Rotates the specified value right by the specified number of bits.</summary>
+ <param name="value">The value to rotate.</param>
+ <param name="offset">The number of bits to rotate by. Any value outside the range [0..63] is treated as congruent mod 64.</param>
+ <returns>The rotated value.</returns>
+ </member>
+ <member name="M:System.Numerics.BitOperations.TrailingZeroCount(System.Int32)">
+ <summary>Counts the number of trailing zero bits in an 32-bit integer value mask.</summary>
+ <param name="value">The mask.</param>
+ <returns>The number of trailing zero bits in the integer value.</returns>
+ </member>
+ <member name="M:System.Numerics.BitOperations.TrailingZeroCount(System.Int64)">
+ <summary>Counts the number of trailing zero bits in a 64-bit integer value mask.</summary>
+ <param name="value">The mask.</param>
+ <returns>The number of trailing zero bits in the mask.</returns>
+ </member>
+ <member name="M:System.Numerics.BitOperations.TrailingZeroCount(System.UInt32)">
+ <summary>Counts the number of trailing zero bits in an unsigned 32-bit integer value mask.</summary>
+ <param name="value">The mask.</param>
+ <returns>The number of trailing zero bits in the mask.</returns>
+ </member>
+ <member name="M:System.Numerics.BitOperations.TrailingZeroCount(System.UInt64)">
+ <summary>Count the number of trailing zero bits in an unsigned 64-bit integer value mask.</summary>
+ <param name="value">The mask.</param>
+ <returns>The number of trailing zero bits in the mask.</returns>
+ </member>
+ <member name="T:System.OperatingSystem">
+ <summary>Represents information about an operating system, such as the version and platform identifier. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.OperatingSystem.#ctor(System.PlatformID,System.Version)">
+ <summary>Initializes a new instance of the <see cref="T:System.OperatingSystem" /> class, using the specified platform identifier value and version object.</summary>
+ <param name="platform">One of the <see cref="T:System.PlatformID" /> values that indicates the operating system platform.</param>
+ <param name="version">A <see cref="T:System.Version" /> object that indicates the version of the operating system.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="version" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="platform" /> is not a <see cref="T:System.PlatformID" /> enumeration value.</exception>
+ </member>
+ <member name="M:System.OperatingSystem.Clone">
+ <summary>Creates an <see cref="T:System.OperatingSystem" /> object that is identical to this instance.</summary>
+ <returns>An <see cref="T:System.OperatingSystem" /> object that is a copy of this instance.</returns>
+ </member>
+ <member name="M:System.OperatingSystem.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the data necessary to deserialize this instance.</summary>
+ <param name="info">The object to populate with serialization information.</param>
+ <param name="context">The place to store and retrieve serialized data. Reserved for future use.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="info" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="P:System.OperatingSystem.Platform">
+ <summary>Gets a <see cref="T:System.PlatformID" /> enumeration value that identifies the operating system platform.</summary>
+ <returns>One of the <see cref="T:System.PlatformID" /> values.</returns>
+ </member>
+ <member name="P:System.OperatingSystem.ServicePack">
+ <summary>Gets the service pack version represented by this <see cref="T:System.OperatingSystem" /> object.</summary>
+ <returns>The service pack version, if service packs are supported and at least one is installed; otherwise, an empty string ("").</returns>
+ </member>
+ <member name="M:System.OperatingSystem.ToString">
+ <summary>Converts the value of this <see cref="T:System.OperatingSystem" /> object to its equivalent string representation.</summary>
+ <returns>The string representation of the values returned by the <see cref="P:System.OperatingSystem.Platform" />, <see cref="P:System.OperatingSystem.Version" />, and <see cref="P:System.OperatingSystem.ServicePack" /> properties.</returns>
+ </member>
+ <member name="P:System.OperatingSystem.Version">
+ <summary>Gets a <see cref="T:System.Version" /> object that identifies the operating system.</summary>
+ <returns>A <see cref="T:System.Version" /> object that describes the major version, minor version, build, and revision numbers for the operating system.</returns>
+ </member>
+ <member name="P:System.OperatingSystem.VersionString">
+ <summary>Gets the concatenated string representation of the platform identifier, version, and service pack that are currently installed on the operating system.</summary>
+ <returns>The string representation of the values returned by the <see cref="P:System.OperatingSystem.Platform" />, <see cref="P:System.OperatingSystem.Version" />, and <see cref="P:System.OperatingSystem.ServicePack" /> properties.</returns>
+ </member>
+ <member name="T:System.PlatformID">
+ <summary>Identifies the operating system, or platform, supported by an assembly.</summary>
+ </member>
+ <member name="F:System.PlatformID.MacOSX">
+ <summary>The operating system is Macintosh. This value was returned by Silverlight. On .NET Core, its replacement is Unix.</summary>
+ </member>
+ <member name="F:System.PlatformID.Unix">
+ <summary>The operating system is Unix.</summary>
+ </member>
+ <member name="F:System.PlatformID.Win32NT">
+ <summary>The operating system is Windows NT or later.</summary>
+ </member>
+ <member name="F:System.PlatformID.Win32S">
+ <summary>The operating system is Win32s. This value is no longer in use.</summary>
+ </member>
+ <member name="F:System.PlatformID.Win32Windows">
+ <summary>The operating system is Windows 95 or Windows 98. This value is no longer in use.</summary>
+ </member>
+ <member name="F:System.PlatformID.WinCE">
+ <summary>The operating system is Windows CE. This value is no longer in use.</summary>
+ </member>
+ <member name="F:System.PlatformID.Xbox">
+ <summary>The development platform is Xbox 360. This value is no longer in use.</summary>
+ </member>
+ <member name="T:System.Progress`1">
+ <summary>Provides an <see cref="T:System.IProgress`1" /> that invokes callbacks for each reported progress value.</summary>
+ <typeparam name="T">Specifies the type of the progress report value.</typeparam>
+ </member>
+ <member name="M:System.Progress`1.#ctor">
+ <summary>Initializes the <see cref="T:System.Progress`1" /> object.</summary>
+ </member>
+ <member name="M:System.Progress`1.#ctor(System.Action{`0})">
+ <summary>Initializes the <see cref="T:System.Progress`1" /> object with the specified callback.</summary>
+ <param name="handler">A handler to invoke for each reported progress value. This handler will be invoked in addition to any delegates registered with the <see cref="E:System.Progress`1.ProgressChanged" /> event. Depending on the <see cref="T:System.Threading.SynchronizationContext" /> instance captured by the <see cref="T:System.Progress`1" /> at construction, it is possible that this handler instance could be invoked concurrently with itself.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="handler" /> is <see langword="null" /> (<see langword="Nothing" /> in Visual Basic).</exception>
+ </member>
+ <member name="M:System.Progress`1.OnReport(`0)">
+ <summary>Reports a progress change.</summary>
+ <param name="value">The value of the updated progress.</param>
+ </member>
+ <member name="E:System.Progress`1.ProgressChanged">
+ <summary>Raised for each reported progress value.</summary>
+ </member>
+ <member name="M:System.Progress`1.System#IProgress{T}#Report(`0)">
+ <summary>Reports a progress change.</summary>
+ <param name="value">The value of the updated progress.</param>
+ </member>
+ <member name="T:System.Random">
+ <summary>Represents a pseudo-random number generator, which is a device that produces a sequence of numbers that meet certain statistical requirements for randomness.</summary>
+ </member>
+ <member name="M:System.Random.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Random" /> class, using a time-dependent default seed value.</summary>
+ </member>
+ <member name="M:System.Random.#ctor(System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Random" /> class, using the specified seed value.</summary>
+ <param name="Seed">A number used to calculate a starting value for the pseudo-random number sequence. If a negative number is specified, the absolute value of the number is used.</param>
+ </member>
+ <member name="M:System.Random.Next">
+ <summary>Returns a non-negative random integer.</summary>
+ <returns>A 32-bit signed integer that is greater than or equal to 0 and less than <see cref="F:System.Int32.MaxValue" />.</returns>
+ </member>
+ <member name="M:System.Random.Next(System.Int32)">
+ <summary>Returns a non-negative random integer that is less than the specified maximum.</summary>
+ <param name="maxValue">The exclusive upper bound of the random number to be generated. <paramref name="maxValue" /> must be greater than or equal to 0.</param>
+ <returns>A 32-bit signed integer that is greater than or equal to 0, and less than <paramref name="maxValue" />; that is, the range of return values ordinarily includes 0 but not <paramref name="maxValue" />. However, if <paramref name="maxValue" /> equals 0, <paramref name="maxValue" /> is returned.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="maxValue" /> is less than 0.</exception>
+ </member>
+ <member name="M:System.Random.Next(System.Int32,System.Int32)">
+ <summary>Returns a random integer that is within a specified range.</summary>
+ <param name="minValue">The inclusive lower bound of the random number returned.</param>
+ <param name="maxValue">The exclusive upper bound of the random number returned. <paramref name="maxValue" /> must be greater than or equal to <paramref name="minValue" />.</param>
+ <returns>A 32-bit signed integer greater than or equal to <paramref name="minValue" /> and less than <paramref name="maxValue" />; that is, the range of return values includes <paramref name="minValue" /> but not <paramref name="maxValue" />. If <paramref name="minValue" /> equals <paramref name="maxValue" />, <paramref name="minValue" /> is returned.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="minValue" /> is greater than <paramref name="maxValue" />.</exception>
+ </member>
+ <member name="M:System.Random.NextBytes(System.Byte[])">
+ <summary>Fills the elements of a specified array of bytes with random numbers.</summary>
+ <param name="buffer">An array of bytes to contain random numbers.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Random.NextBytes(System.Span{System.Byte})">
+ <param name="buffer" />
+ </member>
+ <member name="M:System.Random.NextDouble">
+ <summary>Returns a random floating-point number that is greater than or equal to 0.0, and less than 1.0.</summary>
+ <returns>A double-precision floating point number that is greater than or equal to 0.0, and less than 1.0.</returns>
+ </member>
+ <member name="M:System.Random.Sample">
+ <summary>Returns a random floating-point number between 0.0 and 1.0.</summary>
+ <returns>A double-precision floating point number that is greater than or equal to 0.0, and less than 1.0.</returns>
+ </member>
+ <member name="T:System.Reflection.AssemblyNameProxy">
+ <summary>Provides a remotable version of the <see langword="AssemblyName" />.</summary>
+ </member>
+ <member name="M:System.Reflection.AssemblyNameProxy.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Reflection.AssemblyNameProxy" /> class.</summary>
+ </member>
+ <member name="M:System.Reflection.AssemblyNameProxy.GetAssemblyName(System.String)">
+ <summary>Gets the <see langword="AssemblyName" /> for a given file.</summary>
+ <param name="assemblyFile">The assembly file for which to get the <see langword="AssemblyName" />.</param>
+ <returns>An <see langword="AssemblyName" /> object representing the given file.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="assemblyFile" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="assemblyFile" /> is empty.</exception>
+ <exception cref="T:System.IO.FileNotFoundException">
+ <paramref name="assemblyFile" /> is not found.</exception>
+ <exception cref="T:System.Security.SecurityException">The caller does not have the required permission.</exception>
+ <exception cref="T:System.BadImageFormatException">
+ <paramref name="assemblyFile" /> is not a valid assembly.</exception>
+ </member>
+ <member name="T:System.ResolveEventHandler">
+ <summary>Represents a method that handles the <see cref="E:System.AppDomain.TypeResolve" />, <see cref="E:System.AppDomain.ResourceResolve" />, or <see cref="E:System.AppDomain.AssemblyResolve" /> event of an <see cref="T:System.AppDomain" />.</summary>
+ <param name="sender">The source of the event.</param>
+ <param name="args">The event data.</param>
+ <returns>The assembly that resolves the type, assembly, or resource; or <see langword="null" /> if the assembly cannot be resolved.</returns>
+ </member>
+ <member name="T:System.Runtime.CompilerServices.SwitchExpressionException">
+ <summary>Indicates that a switch expression that was non-exhaustive failed to match its input at runtime. The exception optionally contains an object representing the unmatched value.</summary>
+ </member>
+ <member name="M:System.Runtime.CompilerServices.SwitchExpressionException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.SwitchExpressionException" /> class.</summary>
+ </member>
+ <member name="M:System.Runtime.CompilerServices.SwitchExpressionException.#ctor(System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.SwitchExpressionException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
+ </member>
+ <member name="M:System.Runtime.CompilerServices.SwitchExpressionException.#ctor(System.Object)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.SwitchExpressionException" /> class with an unmatched switch value.</summary>
+ <param name="unmatchedValue">The switch value that does not match any switch cases.</param>
+ </member>
+ <member name="M:System.Runtime.CompilerServices.SwitchExpressionException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.SwitchExpressionException" /> class with the specified message.</summary>
+ <param name="message">The message to display to the end user.</param>
+ </member>
+ <member name="M:System.Runtime.CompilerServices.SwitchExpressionException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.SwitchExpressionException" /> class with the specified detailed description and the specified exception.</summary>
+ <param name="message">The message to display to the end user.</param>
+ <param name="innerException">A reference to the inner exception that is the cause of this exception.</param>
+ </member>
+ <member name="M:System.Runtime.CompilerServices.SwitchExpressionException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the parameter name and additional exception information.</summary>
+ <param name="info">Stores the data that was being used to serialize or deserialize the object that the <see cref="T:System.ComponentModel.Design.Serialization.CodeDomSerializer" /> was serializing or deserializing.</param>
+ <param name="context">Describes the source and destination of the stream that generated the exception, as well as a means for serialization to retain that context and an additional caller-defined context.</param>
+ </member>
+ <member name="P:System.Runtime.CompilerServices.SwitchExpressionException.Message">
+ <summary>Gets the exception message.</summary>
+ <returns>The complete message string.</returns>
+ </member>
+ <member name="P:System.Runtime.CompilerServices.SwitchExpressionException.UnmatchedValue">
+ <summary>Gets the unmatched value associated with the exception.</summary>
+ <returns>The unmatched value causing the exception.</returns>
+ </member>
+ <member name="T:System.Runtime.ProfileOptimization">
+ <summary>Improves the startup performance of application domains in applications that require the just-in-time (JIT) compiler by performing background compilation of methods that are likely to be executed, based on profiles created during previous compilations.</summary>
+ </member>
+ <member name="M:System.Runtime.ProfileOptimization.SetProfileRoot(System.String)">
+ <summary>Enables optimization profiling for the current application domain, and sets the folder where the optimization profile files are stored. On a single-core computer, the method is ignored.</summary>
+ <param name="directoryPath">The full path to the folder where profile files are stored for the current application domain.</param>
+ </member>
+ <member name="M:System.Runtime.ProfileOptimization.StartProfile(System.String)">
+ <summary>Starts just-in-time (JIT) compilation of the methods that were previously recorded in the specified profile file, on a background thread. Starts the process of recording current method use, which later overwrites the specified profile file.</summary>
+ <param name="profile">The file name of the profile to use.</param>
+ </member>
+ <member name="T:System.Runtime.Versioning.ComponentGuaranteesAttribute">
+ <summary>Defines the compatibility guarantee of a component, type, or type member that may span multiple versions.</summary>
+ </member>
+ <member name="M:System.Runtime.Versioning.ComponentGuaranteesAttribute.#ctor(System.Runtime.Versioning.ComponentGuaranteesOptions)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.Versioning.ComponentGuaranteesAttribute" /> class with a value that indicates a library, type, or member's guaranteed level of compatibility across multiple versions.</summary>
+ <param name="guarantees">One of the enumeration values that specifies the level of compatibility that is guaranteed across multiple versions.</param>
+ </member>
+ <member name="P:System.Runtime.Versioning.ComponentGuaranteesAttribute.Guarantees">
+ <summary>Gets a value that indicates the guaranteed level of compatibility of a library, type, or type member that spans multiple versions.</summary>
+ <returns>One of the enumeration values that specifies the level of compatibility that is guaranteed across multiple versions.</returns>
+ </member>
+ <member name="T:System.Runtime.Versioning.ComponentGuaranteesOptions">
+ <summary>Describes the compatibility guarantee of a component, type, or type member that may span multiple versions.</summary>
+ </member>
+ <member name="F:System.Runtime.Versioning.ComponentGuaranteesOptions.Exchange">
+ <summary>The developer promises multi-version exchange compatibility for the type. Consumers of the type can expect compatibility across future versions and can use the type in all their interfaces. Versioning problems cannot be fixed by side-by-side execution.</summary>
+ </member>
+ <member name="F:System.Runtime.Versioning.ComponentGuaranteesOptions.None">
+ <summary>The developer does not guarantee compatibility across versions. Consumers of the component, type, or member can expect future versions to break the existing client.</summary>
+ </member>
+ <member name="F:System.Runtime.Versioning.ComponentGuaranteesOptions.SideBySide">
+ <summary>The component has been tested to work when more than one version of the assembly is loaded into the same application domain. Future versions can break compatibility. However, when such breaking changes are made, the old version is not modified but continues to exist alongside the new version.</summary>
+ </member>
+ <member name="F:System.Runtime.Versioning.ComponentGuaranteesOptions.Stable">
+ <summary>The developer promises stable compatibility across versions. Consumers of the type can expect that future versions will not break the existing client. However, if they do and if the client has not used the type in its interfaces, side-by-side execution may fix the problem.</summary>
+ </member>
+ <member name="T:System.Runtime.Versioning.FrameworkName">
+ <summary>Represents the name of a version of the .NET Framework.</summary>
+ </member>
+ <member name="M:System.Runtime.Versioning.FrameworkName.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.Versioning.FrameworkName" /> class from a string that contains information about a version of the .NET Framework.</summary>
+ <param name="frameworkName">A string that contains .NET Framework version information.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="frameworkName" /> is <see cref="F:System.String.Empty" />.
+-or-
+<paramref name="frameworkName" /> has fewer than two components or more than three components.
+-or-
+<paramref name="frameworkName" /> does not include a major and minor version number.
+-or-
+<paramref name="frameworkName" /> does not include a valid version number.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="frameworkName" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.Versioning.FrameworkName.#ctor(System.String,System.Version)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.Versioning.FrameworkName" /> class from a string and a <see cref="T:System.Version" /> object that identify a .NET Framework version.</summary>
+ <param name="identifier">A string that identifies a .NET Framework version.</param>
+ <param name="version">An object that contains .NET Framework version information.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="identifier" /> is <see cref="F:System.String.Empty" />.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="identifier" /> is <see langword="null" />.
+-or-
+<paramref name="version" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.Versioning.FrameworkName.#ctor(System.String,System.Version,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.Versioning.FrameworkName" /> class from a string, a <see cref="T:System.Version" /> object that identifies a .NET Framework version, and a profile name.</summary>
+ <param name="identifier">A string that identifies a .NET Framework version.</param>
+ <param name="version">An object that contains .NET Framework version information.</param>
+ <param name="profile">A profile name.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="identifier" /> is <see cref="F:System.String.Empty" />.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="identifier" /> is <see langword="null" />.
+-or-
+<paramref name="version" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.Versioning.FrameworkName.Equals(System.Object)">
+ <summary>Returns a value that indicates whether this <see cref="T:System.Runtime.Versioning.FrameworkName" /> instance represents the same .NET Framework version as a specified object.</summary>
+ <param name="obj">The object to compare to the current instance.</param>
+ <returns>
+ <see langword="true" /> if every component of the current <see cref="T:System.Runtime.Versioning.FrameworkName" /> object matches the corresponding component of <paramref name="obj" />; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Runtime.Versioning.FrameworkName.Equals(System.Runtime.Versioning.FrameworkName)">
+ <summary>Returns a value that indicates whether this <see cref="T:System.Runtime.Versioning.FrameworkName" /> instance represents the same .NET Framework version as a specified <see cref="T:System.Runtime.Versioning.FrameworkName" /> instance.</summary>
+ <param name="other">The object to compare to the current instance.</param>
+ <returns>
+ <see langword="true" /> if every component of the current <see cref="T:System.Runtime.Versioning.FrameworkName" /> object matches the corresponding component of <paramref name="other" />; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Runtime.Versioning.FrameworkName.FullName">
+ <summary>Gets the full name of this <see cref="T:System.Runtime.Versioning.FrameworkName" /> object.</summary>
+ <returns>The full name of this <see cref="T:System.Runtime.Versioning.FrameworkName" /> object.</returns>
+ </member>
+ <member name="M:System.Runtime.Versioning.FrameworkName.GetHashCode">
+ <summary>Returns the hash code for the <see cref="T:System.Runtime.Versioning.FrameworkName" /> object.</summary>
+ <returns>A 32-bit signed integer that represents the hash code of this instance.</returns>
+ </member>
+ <member name="P:System.Runtime.Versioning.FrameworkName.Identifier">
+ <summary>Gets the identifier of this <see cref="T:System.Runtime.Versioning.FrameworkName" /> object.</summary>
+ <returns>The identifier of this <see cref="T:System.Runtime.Versioning.FrameworkName" /> object.</returns>
+ </member>
+ <member name="M:System.Runtime.Versioning.FrameworkName.op_Equality(System.Runtime.Versioning.FrameworkName,System.Runtime.Versioning.FrameworkName)">
+ <summary>Returns a value that indicates whether two <see cref="T:System.Runtime.Versioning.FrameworkName" /> objects represent the same .NET Framework version.</summary>
+ <param name="left">The first object to compare.</param>
+ <param name="right">The second object to compare.</param>
+ <returns>
+ <see langword="true" /> if the <paramref name="left" /> and <paramref name="right" /> parameters represent the same .NET Framework version; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Runtime.Versioning.FrameworkName.op_Inequality(System.Runtime.Versioning.FrameworkName,System.Runtime.Versioning.FrameworkName)">
+ <summary>Returns a value that indicates whether two <see cref="T:System.Runtime.Versioning.FrameworkName" /> objects represent different .NET Framework versions.</summary>
+ <param name="left">The first object to compare.</param>
+ <param name="right">The second object to compare.</param>
+ <returns>
+ <see langword="true" /> if the <paramref name="left" /> and <paramref name="right" /> parameters represent different .NET Framework versions; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Runtime.Versioning.FrameworkName.Profile">
+ <summary>Gets the profile name of this <see cref="T:System.Runtime.Versioning.FrameworkName" /> object.</summary>
+ <returns>The profile name of this <see cref="T:System.Runtime.Versioning.FrameworkName" /> object.</returns>
+ </member>
+ <member name="M:System.Runtime.Versioning.FrameworkName.ToString">
+ <summary>Returns the string representation of this <see cref="T:System.Runtime.Versioning.FrameworkName" /> object.</summary>
+ <returns>A string that represents this <see cref="T:System.Runtime.Versioning.FrameworkName" /> object.</returns>
+ </member>
+ <member name="P:System.Runtime.Versioning.FrameworkName.Version">
+ <summary>Gets the version of this <see cref="T:System.Runtime.Versioning.FrameworkName" /> object.</summary>
+ <returns>An object that contains version information about this <see cref="T:System.Runtime.Versioning.FrameworkName" /> object.</returns>
+ </member>
+ <member name="T:System.Runtime.Versioning.ResourceConsumptionAttribute">
+ <summary>Specifies the resource consumed by the member of a class. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Runtime.Versioning.ResourceConsumptionAttribute.#ctor(System.Runtime.Versioning.ResourceScope)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.Versioning.ResourceConsumptionAttribute" /> class specifying the scope of the consumed resource.</summary>
+ <param name="resourceScope">The <see cref="T:System.Runtime.Versioning.ResourceScope" /> for the consumed resource.</param>
+ </member>
+ <member name="M:System.Runtime.Versioning.ResourceConsumptionAttribute.#ctor(System.Runtime.Versioning.ResourceScope,System.Runtime.Versioning.ResourceScope)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.Versioning.ResourceConsumptionAttribute" /> class specifying the scope of the consumed resource and the scope of how it is consumed.</summary>
+ <param name="resourceScope">The <see cref="T:System.Runtime.Versioning.ResourceScope" /> for the consumed resource.</param>
+ <param name="consumptionScope">The <see cref="T:System.Runtime.Versioning.ResourceScope" /> used by this member.</param>
+ </member>
+ <member name="P:System.Runtime.Versioning.ResourceConsumptionAttribute.ConsumptionScope">
+ <summary>Gets the consumption scope for this member.</summary>
+ <returns>A <see cref="T:System.Runtime.Versioning.ResourceScope" /> object specifying the resource scope used by this member.</returns>
+ </member>
+ <member name="P:System.Runtime.Versioning.ResourceConsumptionAttribute.ResourceScope">
+ <summary>Gets the resource scope for the consumed resource.</summary>
+ <returns>A <see cref="T:System.Runtime.Versioning.ResourceScope" /> object specifying the resource scope of the consumed member.</returns>
+ </member>
+ <member name="T:System.Runtime.Versioning.ResourceExposureAttribute">
+ <summary>Specifies the resource exposure for a member of a class. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Runtime.Versioning.ResourceExposureAttribute.#ctor(System.Runtime.Versioning.ResourceScope)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.Versioning.ResourceExposureAttribute" /> class with the specified exposure level.</summary>
+ <param name="exposureLevel">The scope of the resource.</param>
+ </member>
+ <member name="P:System.Runtime.Versioning.ResourceExposureAttribute.ResourceExposureLevel">
+ <summary>Gets the resource exposure scope.</summary>
+ <returns>A <see cref="T:System.Runtime.Versioning.ResourceScope" /> object.</returns>
+ </member>
+ <member name="T:System.Runtime.Versioning.ResourceScope">
+ <summary>Identifies the scope of a sharable resource.</summary>
+ </member>
+ <member name="F:System.Runtime.Versioning.ResourceScope.AppDomain">
+ <summary>The state is shared by objects within an <see cref="T:System.AppDomain" />.</summary>
+ </member>
+ <member name="F:System.Runtime.Versioning.ResourceScope.Assembly">
+ <summary>The resource is visible at an assembly scope.</summary>
+ </member>
+ <member name="F:System.Runtime.Versioning.ResourceScope.Library">
+ <summary>The state is shared by objects within a library.</summary>
+ </member>
+ <member name="F:System.Runtime.Versioning.ResourceScope.Machine">
+ <summary>The state is shared by objects within the machine.</summary>
+ </member>
+ <member name="F:System.Runtime.Versioning.ResourceScope.None">
+ <summary>There is no shared state.</summary>
+ </member>
+ <member name="F:System.Runtime.Versioning.ResourceScope.Private">
+ <summary>The resource is visible to only the type.</summary>
+ </member>
+ <member name="F:System.Runtime.Versioning.ResourceScope.Process">
+ <summary>The state is shared within a process.</summary>
+ </member>
+ <member name="T:System.Runtime.Versioning.VersioningHelper">
+ <summary>Provides methods to aid developers in writing version-safe code. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Runtime.Versioning.VersioningHelper.MakeVersionSafeName(System.String,System.Runtime.Versioning.ResourceScope,System.Runtime.Versioning.ResourceScope)">
+ <summary>Returns a version-safe name based on the specified resource name and the intended resource consumption source.</summary>
+ <param name="name">The name of the resource.</param>
+ <param name="from">The scope of the resource.</param>
+ <param name="to">The desired resource consumption scope.</param>
+ <returns>A version-safe name.</returns>
+ </member>
+ <member name="M:System.Runtime.Versioning.VersioningHelper.MakeVersionSafeName(System.String,System.Runtime.Versioning.ResourceScope,System.Runtime.Versioning.ResourceScope,System.Type)">
+ <summary>Returns a version-safe name based on the specified resource name, the intended resource consumption scope, and the type using the resource.</summary>
+ <param name="name">The name of the resource.</param>
+ <param name="from">The beginning of the scope range.</param>
+ <param name="to">The end of the scope range.</param>
+ <param name="type">The <see cref="T:System.Type" /> of the resource.</param>
+ <returns>A version-safe name.</returns>
+ <exception cref="T:System.ArgumentException">The values for <paramref name="from" /> and <paramref name="to" /> are invalid. The resource type in the <see cref="T:System.Runtime.Versioning.ResourceScope" /> enumeration is going from a more restrictive resource type to a more general resource type.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="type" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="T:System.Security.IPermission">
+ <summary>Defines methods implemented by permission types.</summary>
+ </member>
+ <member name="M:System.Security.IPermission.Copy">
+ <summary>Creates and returns an identical copy of the current permission.</summary>
+ <returns>A copy of the current permission.</returns>
+ </member>
+ <member name="M:System.Security.IPermission.Demand">
+ <summary>Throws a <see cref="T:System.Security.SecurityException" /> at run time if the security requirement is not met.</summary>
+ </member>
+ <member name="M:System.Security.IPermission.Intersect(System.Security.IPermission)">
+ <summary>Creates and returns a permission that is the intersection of the current permission and the specified permission.</summary>
+ <param name="target">A permission to intersect with the current permission. It must be of the same type as the current permission.</param>
+ <returns>A new permission that represents the intersection of the current permission and the specified permission. This new permission is <see langword="null" /> if the intersection is empty.</returns>
+ <exception cref="T:System.ArgumentException">The <paramref name="target" /> parameter is not <see langword="null" /> and is not an instance of the same class as the current permission.</exception>
+ </member>
+ <member name="M:System.Security.IPermission.IsSubsetOf(System.Security.IPermission)">
+ <summary>Determines whether the current permission is a subset of the specified permission.</summary>
+ <param name="target">A permission that is to be tested for the subset relationship. This permission must be of the same type as the current permission.</param>
+ <returns>
+ <see langword="true" /> if the current permission is a subset of the specified permission; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.ArgumentException">The <paramref name="target" /> parameter is not <see langword="null" /> and is not of the same type as the current permission.</exception>
+ </member>
+ <member name="M:System.Security.IPermission.Union(System.Security.IPermission)">
+ <summary>Creates a permission that is the union of the current permission and the specified permission.</summary>
+ <param name="target">A permission to combine with the current permission. It must be of the same type as the current permission.</param>
+ <returns>A new permission that represents the union of the current permission and the specified permission.</returns>
+ <exception cref="T:System.ArgumentException">The <paramref name="target" /> parameter is not <see langword="null" /> and is not of the same type as the current permission.</exception>
+ </member>
+ <member name="T:System.Security.ISecurityEncodable">
+ <summary>Defines the methods that convert permission object state to and from XML element representation.</summary>
+ </member>
+ <member name="M:System.Security.ISecurityEncodable.FromXml(System.Security.SecurityElement)">
+ <summary>Reconstructs a security object with a specified state from an XML encoding.</summary>
+ <param name="e">The XML encoding to use to reconstruct the security object.</param>
+ </member>
+ <member name="M:System.Security.ISecurityEncodable.ToXml">
+ <summary>Creates an XML encoding of the security object and its current state.</summary>
+ <returns>An XML encoding of the security object, including any state information.</returns>
+ </member>
+ <member name="T:System.Security.IStackWalk">
+ <summary>Manages the stack walk that determines whether all callers in the call stack have the required permissions to access a protected resource.</summary>
+ </member>
+ <member name="M:System.Security.IStackWalk.Assert">
+ <summary>Asserts that the calling code can access the resource identified by the current permission object, even if callers higher in the stack have not been granted permission to access the resource.</summary>
+ <exception cref="T:System.Security.SecurityException">The calling code does not have <see cref="F:System.Security.Permissions.SecurityPermissionFlag.Assertion" />.</exception>
+ </member>
+ <member name="M:System.Security.IStackWalk.Demand">
+ <summary>Determines at run time whether all callers in the call stack have been granted the permission specified by the current permission object.</summary>
+ <exception cref="T:System.Security.SecurityException">A caller higher in the call stack does not have the permission specified by the current permission object.
+-or-
+A caller in the call stack has called <see cref="M:System.Security.IStackWalk.Deny" /> on the current permission object.</exception>
+ </member>
+ <member name="M:System.Security.IStackWalk.Deny">
+ <summary>Causes every <see cref="M:System.Security.IStackWalk.Demand" /> for the current object that passes through the calling code to fail.</summary>
+ </member>
+ <member name="M:System.Security.IStackWalk.PermitOnly">
+ <summary>Causes every <see cref="M:System.Security.IStackWalk.Demand" /> for all objects except the current one that passes through the calling code to fail, even if code higher in the call stack has been granted permission to access other resources.</summary>
+ </member>
+ <member name="T:System.Security.Permissions.CodeAccessSecurityAttribute">
+ <summary>Specifies the base attribute class for code access security.</summary>
+ </member>
+ <member name="M:System.Security.Permissions.CodeAccessSecurityAttribute.#ctor(System.Security.Permissions.SecurityAction)">
+ <summary>Initializes a new instance of <see cref="T:System.Security.Permissions.CodeAccessSecurityAttribute" /> with the specified <see cref="T:System.Security.Permissions.SecurityAction" />.</summary>
+ <param name="action">One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values.</param>
+ </member>
+ <member name="T:System.Security.Permissions.PermissionState">
+ <summary>Specifies whether a permission should have all or no access to resources at creation.</summary>
+ </member>
+ <member name="F:System.Security.Permissions.PermissionState.None">
+ <summary>No access to the resource protected by the permission.</summary>
+ </member>
+ <member name="F:System.Security.Permissions.PermissionState.Unrestricted">
+ <summary>Full access to the resource protected by the permission.</summary>
+ </member>
+ <member name="T:System.Security.Permissions.SecurityAction">
+ <summary>Specifies the security actions that can be performed using declarative security.</summary>
+ </member>
+ <member name="F:System.Security.Permissions.SecurityAction.Assert">
+ <summary>The calling code can access the resource identified by the current permission object, even if callers higher in the stack have not been granted permission to access the resource (see Using the Assert Method).</summary>
+ </member>
+ <member name="F:System.Security.Permissions.SecurityAction.Demand">
+ <summary>All callers higher in the call stack are required to have been granted the permission specified by the current permission object.</summary>
+ </member>
+ <member name="F:System.Security.Permissions.SecurityAction.Deny">
+ <summary>The ability to access the resource specified by the current permission object is denied to callers, even if they have been granted permission to access it (see Using the Deny Method).</summary>
+ </member>
+ <member name="F:System.Security.Permissions.SecurityAction.InheritanceDemand">
+ <summary>The derived class inheriting the class or overriding a method is required to have been granted the specified permission.</summary>
+ </member>
+ <member name="F:System.Security.Permissions.SecurityAction.LinkDemand">
+ <summary>The immediate caller is required to have been granted the specified permission. Do not use in the .NET Framework 4. For full trust, use <see cref="T:System.Security.SecurityCriticalAttribute" /> instead; for partial trust, use <see cref="F:System.Security.Permissions.SecurityAction.Demand" />.</summary>
+ </member>
+ <member name="F:System.Security.Permissions.SecurityAction.PermitOnly">
+ <summary>Only the resources specified by this permission object can be accessed, even if the code has been granted permission to access other resources.</summary>
+ </member>
+ <member name="F:System.Security.Permissions.SecurityAction.RequestMinimum">
+ <summary>The request for the minimum permissions required for code to run. This action can only be used within the scope of the assembly.</summary>
+ </member>
+ <member name="F:System.Security.Permissions.SecurityAction.RequestOptional">
+ <summary>The request for additional permissions that are optional (not required to run). This request implicitly refuses all other permissions not specifically requested. This action can only be used within the scope of the assembly.</summary>
+ </member>
+ <member name="F:System.Security.Permissions.SecurityAction.RequestRefuse">
+ <summary>The request that permissions that might be misused will not be granted to the calling code. This action can only be used within the scope of the assembly.</summary>
+ </member>
+ <member name="T:System.Security.Permissions.SecurityAttribute">
+ <summary>Specifies the base attribute class for declarative security from which <see cref="T:System.Security.Permissions.CodeAccessSecurityAttribute" /> is derived.</summary>
+ </member>
+ <member name="M:System.Security.Permissions.SecurityAttribute.#ctor(System.Security.Permissions.SecurityAction)">
+ <summary>Initializes a new instance of <see cref="T:System.Security.Permissions.SecurityAttribute" /> with the specified <see cref="T:System.Security.Permissions.SecurityAction" />.</summary>
+ <param name="action">One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values.</param>
+ </member>
+ <member name="P:System.Security.Permissions.SecurityAttribute.Action">
+ <summary>Gets or sets a security action.</summary>
+ <returns>One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values.</returns>
+ </member>
+ <member name="M:System.Security.Permissions.SecurityAttribute.CreatePermission">
+ <summary>When overridden in a derived class, creates a permission object that can then be serialized into binary form and persistently stored along with the <see cref="T:System.Security.Permissions.SecurityAction" /> in an assembly's metadata.</summary>
+ <returns>A serializable permission object.</returns>
+ </member>
+ <member name="P:System.Security.Permissions.SecurityAttribute.Unrestricted">
+ <summary>Gets or sets a value indicating whether full (unrestricted) permission to the resource protected by the attribute is declared.</summary>
+ <returns>
+ <see langword="true" /> if full permission to the protected resource is declared; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="T:System.Security.Permissions.SecurityPermissionAttribute">
+ <summary>Allows security actions for <see cref="T:System.Security.Permissions.SecurityPermission" /> to be applied to code using declarative security. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Security.Permissions.SecurityPermissionAttribute.#ctor(System.Security.Permissions.SecurityAction)">
+ <summary>Initializes a new instance of the <see cref="T:System.Security.Permissions.SecurityPermissionAttribute" /> class with the specified <see cref="T:System.Security.Permissions.SecurityAction" />.</summary>
+ <param name="action">One of the <see cref="T:System.Security.Permissions.SecurityAction" /> values.</param>
+ </member>
+ <member name="P:System.Security.Permissions.SecurityPermissionAttribute.Assertion">
+ <summary>Gets or sets a value indicating whether permission to assert that all this code's callers have the requisite permission for the operation is declared.</summary>
+ <returns>
+ <see langword="true" /> if permission to assert is declared; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Security.Permissions.SecurityPermissionAttribute.BindingRedirects">
+ <summary>Gets or sets a value that indicates whether code has permission to perform binding redirection in the application configuration file.</summary>
+ <returns>
+ <see langword="true" /> if code can perform binding redirects; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Security.Permissions.SecurityPermissionAttribute.ControlAppDomain">
+ <summary>Gets or sets a value indicating whether permission to manipulate <see cref="T:System.AppDomain" /> is declared.</summary>
+ <returns>
+ <see langword="true" /> if permission to manipulate <see cref="T:System.AppDomain" /> is declared; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Security.Permissions.SecurityPermissionAttribute.ControlDomainPolicy">
+ <summary>Gets or sets a value indicating whether permission to alter or manipulate domain security policy is declared.</summary>
+ <returns>
+ <see langword="true" /> if permission to alter or manipulate security policy in an application domain is declared; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Security.Permissions.SecurityPermissionAttribute.ControlEvidence">
+ <summary>Gets or sets a value indicating whether permission to alter or manipulate evidence is declared.</summary>
+ <returns>
+ <see langword="true" /> if the ability to alter or manipulate evidence is declared; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Security.Permissions.SecurityPermissionAttribute.ControlPolicy">
+ <summary>Gets or sets a value indicating whether permission to view and manipulate security policy is declared.</summary>
+ <returns>
+ <see langword="true" /> if permission to manipulate security policy is declared; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Security.Permissions.SecurityPermissionAttribute.ControlPrincipal">
+ <summary>Gets or sets a value indicating whether permission to manipulate the current principal is declared.</summary>
+ <returns>
+ <see langword="true" /> if permission to manipulate the current principal is declared; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Security.Permissions.SecurityPermissionAttribute.ControlThread">
+ <summary>Gets or sets a value indicating whether permission to manipulate threads is declared.</summary>
+ <returns>
+ <see langword="true" /> if permission to manipulate threads is declared; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Security.Permissions.SecurityPermissionAttribute.CreatePermission">
+ <summary>Creates and returns a new <see cref="T:System.Security.Permissions.SecurityPermission" />.</summary>
+ <returns>A <see cref="T:System.Security.Permissions.SecurityPermission" /> that corresponds to this attribute.</returns>
+ </member>
+ <member name="P:System.Security.Permissions.SecurityPermissionAttribute.Execution">
+ <summary>Gets or sets a value indicating whether permission to execute code is declared.</summary>
+ <returns>
+ <see langword="true" /> if permission to execute code is declared; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Security.Permissions.SecurityPermissionAttribute.Flags">
+ <summary>Gets or sets all permission flags comprising the <see cref="T:System.Security.Permissions.SecurityPermission" /> permissions.</summary>
+ <returns>One or more of the <see cref="T:System.Security.Permissions.SecurityPermissionFlag" /> values combined using a bitwise OR.</returns>
+ <exception cref="T:System.ArgumentException">An attempt is made to set this property to an invalid value. See <see cref="T:System.Security.Permissions.SecurityPermissionFlag" /> for the valid values.</exception>
+ </member>
+ <member name="P:System.Security.Permissions.SecurityPermissionAttribute.Infrastructure">
+ <summary>Gets or sets a value indicating whether code can plug into the common language runtime infrastructure, such as adding Remoting Context Sinks, Envoy Sinks and Dynamic Sinks.</summary>
+ <returns>
+ <see langword="true" /> if code can plug into the common language runtime infrastructure; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Security.Permissions.SecurityPermissionAttribute.RemotingConfiguration">
+ <summary>Gets or sets a value indicating whether code can configure remoting types and channels.</summary>
+ <returns>
+ <see langword="true" /> if code can configure remoting types and channels; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Security.Permissions.SecurityPermissionAttribute.SerializationFormatter">
+ <summary>Gets or sets a value indicating whether code can use a serialization formatter to serialize or deserialize an object.</summary>
+ <returns>
+ <see langword="true" /> if code can use a serialization formatter to serialize or deserialize an object; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Security.Permissions.SecurityPermissionAttribute.SkipVerification">
+ <summary>Gets or sets a value indicating whether permission to bypass code verification is declared.</summary>
+ <returns>
+ <see langword="true" /> if permission to bypass code verification is declared; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Security.Permissions.SecurityPermissionAttribute.UnmanagedCode">
+ <summary>Gets or sets a value indicating whether permission to call unmanaged code is declared.</summary>
+ <returns>
+ <see langword="true" /> if permission to call unmanaged code is declared; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="T:System.Security.Permissions.SecurityPermissionFlag">
+ <summary>Specifies access flags for the security permission object.</summary>
+ </member>
+ <member name="F:System.Security.Permissions.SecurityPermissionFlag.AllFlags">
+ <summary>The unrestricted state of the permission.</summary>
+ </member>
+ <member name="F:System.Security.Permissions.SecurityPermissionFlag.Assertion">
+ <summary>Ability to assert that all this code's callers have the requisite permission for the operation.</summary>
+ </member>
+ <member name="F:System.Security.Permissions.SecurityPermissionFlag.BindingRedirects">
+ <summary>Permission to perform explicit binding redirection in the application configuration file. This includes redirection of .NET Framework assemblies that have been unified as well as other assemblies found outside the .NET Framework.</summary>
+ </member>
+ <member name="F:System.Security.Permissions.SecurityPermissionFlag.ControlAppDomain">
+ <summary>Ability to create and manipulate an <see cref="T:System.AppDomain" />.</summary>
+ </member>
+ <member name="F:System.Security.Permissions.SecurityPermissionFlag.ControlDomainPolicy">
+ <summary>Ability to specify domain policy.</summary>
+ </member>
+ <member name="F:System.Security.Permissions.SecurityPermissionFlag.ControlEvidence">
+ <summary>Ability to provide evidence, including the ability to alter the evidence provided by the common language runtime.
+This is a powerful permission that should only be granted to highly trusted code.</summary>
+ </member>
+ <member name="F:System.Security.Permissions.SecurityPermissionFlag.ControlPolicy">
+ <summary>Ability to view and modify policy.
+This is a powerful permission that should only be granted to highly trusted code.</summary>
+ </member>
+ <member name="F:System.Security.Permissions.SecurityPermissionFlag.ControlPrincipal">
+ <summary>Ability to manipulate the principal object.</summary>
+ </member>
+ <member name="F:System.Security.Permissions.SecurityPermissionFlag.ControlThread">
+ <summary>Ability to use certain advanced operations on threads.</summary>
+ </member>
+ <member name="F:System.Security.Permissions.SecurityPermissionFlag.Execution">
+ <summary>Permission for the code to run. Without this permission, managed code will not be executed.
+This flag has no effect when used dynamically with stack modifiers such as <see cref="M:System.Security.CodeAccessPermission.Deny" />, <see cref="M:System.Security.CodeAccessPermission.Assert" />, and <see cref="M:System.Security.CodeAccessPermission.PermitOnly" />.</summary>
+ </member>
+ <member name="F:System.Security.Permissions.SecurityPermissionFlag.Infrastructure">
+ <summary>Permission to plug code into the common language runtime infrastructure, such as adding Remoting Context Sinks, Envoy Sinks and Dynamic Sinks.</summary>
+ </member>
+ <member name="F:System.Security.Permissions.SecurityPermissionFlag.NoFlags">
+ <summary>No security access.</summary>
+ </member>
+ <member name="F:System.Security.Permissions.SecurityPermissionFlag.RemotingConfiguration">
+ <summary>Permission to configure Remoting types and channels.</summary>
+ </member>
+ <member name="F:System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter">
+ <summary>Ability to provide serialization services. Used by serialization formatters.</summary>
+ </member>
+ <member name="F:System.Security.Permissions.SecurityPermissionFlag.SkipVerification">
+ <summary>Ability to skip verification of code in this assembly. Code that is unverifiable can be run if this permission is granted.
+This is a powerful permission that should be granted only to highly trusted code.
+This flag has no effect when used dynamically with stack modifiers such as <see cref="M:System.Security.CodeAccessPermission.Deny" />, <see cref="M:System.Security.CodeAccessPermission.Assert" />, and <see cref="M:System.Security.CodeAccessPermission.PermitOnly" />.</summary>
+ </member>
+ <member name="F:System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode">
+ <summary>Ability to call unmanaged code.
+ Since unmanaged code potentially allows other permissions to be bypassed, this is a dangerous permission that should only be granted to highly trusted code. It is used for such applications as calling native code using PInvoke or using COM interop.</summary>
+ </member>
+ <member name="T:System.Security.PermissionSet">
+ <summary>Represents a collection that can contain many different types of permissions.</summary>
+ </member>
+ <member name="M:System.Security.PermissionSet.#ctor(System.Security.Permissions.PermissionState)">
+ <summary>Initializes a new instance of the <see cref="T:System.Security.PermissionSet" /> class with the specified <see cref="T:System.Security.Permissions.PermissionState" />.</summary>
+ <param name="state">One of the enumeration values that specifies the permission set's access to resources.</param>
+ <exception cref="T:System.ArgumentException">The <paramref name="state" /> parameter is not a valid <see cref="T:System.Security.Permissions.PermissionState" />.</exception>
+ </member>
+ <member name="M:System.Security.PermissionSet.#ctor(System.Security.PermissionSet)">
+ <summary>Initializes a new instance of the <see cref="T:System.Security.PermissionSet" /> class with initial values taken from the <paramref name="permSet" /> parameter.</summary>
+ <param name="permSet">The set from which to take the value of the new <see cref="T:System.Security.PermissionSet" />, or <see langword="null" /> to create an empty <see cref="T:System.Security.PermissionSet" />.</param>
+ </member>
+ <member name="M:System.Security.PermissionSet.AddPermission(System.Security.IPermission)">
+ <summary>Adds a specified permission to the <see cref="T:System.Security.PermissionSet" />.</summary>
+ <param name="perm">The permission to add.</param>
+ <returns>The union of the permission added and any permission of the same type that already exists in the <see cref="T:System.Security.PermissionSet" />.</returns>
+ <exception cref="T:System.InvalidOperationException">The method is called from a <see cref="T:System.Security.ReadOnlyPermissionSet" />.</exception>
+ </member>
+ <member name="M:System.Security.PermissionSet.AddPermissionImpl(System.Security.IPermission)">
+ <summary>Adds a specified permission to the <see cref="T:System.Security.PermissionSet" />.</summary>
+ <param name="perm">The permission to add.</param>
+ <returns>The union of the permission added and any permission of the same type that already exists in the <see cref="T:System.Security.PermissionSet" />, or <see langword="null" /> if <paramref name="perm" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.InvalidOperationException">The method is called from a <see cref="T:System.Security.ReadOnlyPermissionSet" />.</exception>
+ </member>
+ <member name="M:System.Security.PermissionSet.Assert">
+ <summary>Declares that the calling code can access the resource protected by a permission demand through the code that calls this method, even if callers higher in the stack have not been granted permission to access the resource. Using <see cref="M:System.Security.PermissionSet.Assert" /> can create security vulnerabilities.</summary>
+ <exception cref="T:System.Security.SecurityException">The <see cref="T:System.Security.PermissionSet" /> instance asserted has not been granted to the asserting code.
+-or-
+There is already an active <see cref="M:System.Security.PermissionSet.Assert" /> for the current frame.</exception>
+ </member>
+ <member name="M:System.Security.PermissionSet.ContainsNonCodeAccessPermissions">
+ <summary>Gets a value indicating whether the <see cref="T:System.Security.PermissionSet" /> contains permissions that are not derived from <see cref="T:System.Security.CodeAccessPermission" />.</summary>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Security.PermissionSet" /> contains permissions that are not derived from <see cref="T:System.Security.CodeAccessPermission" />; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Security.PermissionSet.ConvertPermissionSet(System.String,System.Byte[],System.String)">
+ <summary>Converts an encoded <see cref="T:System.Security.PermissionSet" /> from one XML encoding format to another XML encoding format.</summary>
+ <param name="inFormat">A string representing one of the following encoding formats: ASCII, Unicode, or Binary. Possible values are "XMLASCII" or "XML", "XMLUNICODE", and "BINARY".</param>
+ <param name="inData">An XML-encoded permission set.</param>
+ <param name="outFormat">A string representing one of the following encoding formats: ASCII, Unicode, or Binary. Possible values are "XMLASCII" or "XML", "XMLUNICODE", and "BINARY".</param>
+ <returns>An encrypted permission set with the specified output format.</returns>
+ <exception cref="T:System.NotImplementedException">In all cases.</exception>
+ </member>
+ <member name="M:System.Security.PermissionSet.Copy">
+ <summary>Creates a copy of the <see cref="T:System.Security.PermissionSet" />.</summary>
+ <returns>A copy of the <see cref="T:System.Security.PermissionSet" />.</returns>
+ </member>
+ <member name="M:System.Security.PermissionSet.CopyTo(System.Array,System.Int32)">
+ <summary>Copies the permission objects of the set to the indicated location in an <see cref="T:System.Array" />.</summary>
+ <param name="array">The target array to which to copy.</param>
+ <param name="index">The starting position in the array to begin copying (zero based).</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="array" /> parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="array" /> parameter has more than one dimension.</exception>
+ <exception cref="T:System.IndexOutOfRangeException">The <paramref name="index" /> parameter is out of the range of the <paramref name="array" /> parameter.</exception>
+ </member>
+ <member name="P:System.Security.PermissionSet.Count">
+ <summary>Gets the number of permission objects contained in the permission set.</summary>
+ <returns>The number of permission objects contained in the <see cref="T:System.Security.PermissionSet" />.</returns>
+ </member>
+ <member name="M:System.Security.PermissionSet.Demand">
+ <summary>Forces a <see cref="T:System.Security.SecurityException" /> at run time if all callers higher in the call stack have not been granted the permissions specified by the current instance.</summary>
+ <exception cref="T:System.Security.SecurityException">A caller in the call chain does not have the permission demanded.</exception>
+ </member>
+ <member name="M:System.Security.PermissionSet.Deny">
+ <summary>Causes any <see cref="M:System.Security.PermissionSet.Demand" /> that passes through the calling code for a permission that has an intersection with a permission of a type contained in the current <see cref="T:System.Security.PermissionSet" /> to fail.</summary>
+ <exception cref="T:System.Security.SecurityException">A previous call to <see cref="M:System.Security.PermissionSet.Deny" /> has already restricted the permissions for the current stack frame.</exception>
+ </member>
+ <member name="M:System.Security.PermissionSet.Equals(System.Object)">
+ <summary>Determines whether the specified <see cref="T:System.Security.PermissionSet" /> or <see cref="T:System.Security.NamedPermissionSet" /> object is equal to the current <see cref="T:System.Security.PermissionSet" />.</summary>
+ <param name="o">The object to compare with the current <see cref="T:System.Security.PermissionSet" />.</param>
+ <returns>
+ <see langword="true" /> if the specified object is equal to the current <see cref="T:System.Security.PermissionSet" /> object; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Security.PermissionSet.FromXml(System.Security.SecurityElement)">
+ <summary>Reconstructs a security object with a specified state from an XML encoding.</summary>
+ <param name="et">The XML encoding to use to reconstruct the security object.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="et" /> parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="et" /> parameter is not a valid permission element.
+-or-
+The <paramref name="et" /> parameter's version number is not supported.</exception>
+ </member>
+ <member name="M:System.Security.PermissionSet.GetEnumerator">
+ <summary>Returns an enumerator for the permissions of the set.</summary>
+ <returns>An enumerator object for the permissions of the set.</returns>
+ </member>
+ <member name="M:System.Security.PermissionSet.GetEnumeratorImpl">
+ <summary>Returns an enumerator for the permissions of the set.</summary>
+ <returns>An enumerator object for the permissions of the set.</returns>
+ </member>
+ <member name="M:System.Security.PermissionSet.GetHashCode">
+ <summary>Gets a hash code for the <see cref="T:System.Security.PermissionSet" /> object that is suitable for use in hashing algorithms and data structures such as a hash table.</summary>
+ <returns>A hash code for the current <see cref="T:System.Security.PermissionSet" /> object.</returns>
+ </member>
+ <member name="M:System.Security.PermissionSet.GetPermission(System.Type)">
+ <summary>Gets a permission object of the specified type, if it exists in the set.</summary>
+ <param name="permClass">The type of the desired permission object.</param>
+ <returns>A copy of the permission object of the type specified by the <paramref name="permClass" /> parameter contained in the <see cref="T:System.Security.PermissionSet" />, or <see langword="null" /> if none exists.</returns>
+ </member>
+ <member name="M:System.Security.PermissionSet.GetPermissionImpl(System.Type)">
+ <summary>Gets a permission object of the specified type, if it exists in the set.</summary>
+ <param name="permClass">The type of the permission object.</param>
+ <returns>A copy of the permission object, of the type specified by the <paramref name="permClass" /> parameter, contained in the <see cref="T:System.Security.PermissionSet" />, or <see langword="null" /> if none exists.</returns>
+ </member>
+ <member name="M:System.Security.PermissionSet.Intersect(System.Security.PermissionSet)">
+ <summary>Creates and returns a permission set that is the intersection of the current <see cref="T:System.Security.PermissionSet" /> and the specified <see cref="T:System.Security.PermissionSet" />.</summary>
+ <param name="other">A permission set to intersect with the current <see cref="T:System.Security.PermissionSet" />.</param>
+ <returns>A new permission set that represents the intersection of the current <see cref="T:System.Security.PermissionSet" /> and the specified target. This object is <see langword="null" /> if the intersection is empty.</returns>
+ </member>
+ <member name="M:System.Security.PermissionSet.IsEmpty">
+ <summary>Gets a value indicating whether the <see cref="T:System.Security.PermissionSet" /> is empty.</summary>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Security.PermissionSet" /> is empty; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Security.PermissionSet.IsReadOnly">
+ <summary>Gets a value indicating whether the collection is read-only.</summary>
+ <returns>Always <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Security.PermissionSet.IsSubsetOf(System.Security.PermissionSet)">
+ <summary>Determines whether the current <see cref="T:System.Security.PermissionSet" /> is a subset of the specified <see cref="T:System.Security.PermissionSet" />.</summary>
+ <param name="target">The permission set to test for the subset relationship. This must be either a <see cref="T:System.Security.PermissionSet" /> or a <see cref="T:System.Security.NamedPermissionSet" />.</param>
+ <returns>
+ <see langword="true" /> if the current <see cref="T:System.Security.PermissionSet" /> is a subset of the <paramref name="target" /> parameter; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Security.PermissionSet.IsSynchronized">
+ <summary>Gets a value indicating whether the collection is guaranteed to be thread safe.</summary>
+ <returns>Always <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Security.PermissionSet.IsUnrestricted">
+ <summary>Determines whether the <see cref="T:System.Security.PermissionSet" /> is <see langword="Unrestricted" />.</summary>
+ <returns>
+ <see langword="true" /> if the <see cref="T:System.Security.PermissionSet" /> is <see langword="Unrestricted" />; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Security.PermissionSet.PermitOnly">
+ <summary>Causes any <see cref="M:System.Security.PermissionSet.Demand" /> that passes through the calling code for any <see cref="T:System.Security.PermissionSet" /> that is not a subset of the current <see cref="T:System.Security.PermissionSet" /> to fail.</summary>
+ </member>
+ <member name="M:System.Security.PermissionSet.RemovePermission(System.Type)">
+ <summary>Removes a permission of a certain type from the set.</summary>
+ <param name="permClass">The type of permission to delete.</param>
+ <returns>The permission removed from the set.</returns>
+ <exception cref="T:System.InvalidOperationException">The method is called from a <see cref="T:System.Security.ReadOnlyPermissionSet" />.</exception>
+ </member>
+ <member name="M:System.Security.PermissionSet.RemovePermissionImpl(System.Type)">
+ <summary>Removes a permission of a certain type from the set.</summary>
+ <param name="permClass">The type of the permission to remove.</param>
+ <returns>The permission removed from the set.</returns>
+ <exception cref="T:System.InvalidOperationException">The method is called from a <see cref="T:System.Security.ReadOnlyPermissionSet" />.</exception>
+ </member>
+ <member name="M:System.Security.PermissionSet.RevertAssert">
+ <summary>Causes any previous <see cref="M:System.Security.CodeAccessPermission.Assert" /> for the current frame to be removed and no longer be in effect.</summary>
+ <exception cref="T:System.InvalidOperationException">There is no previous <see cref="M:System.Security.CodeAccessPermission.Assert" /> for the current frame.</exception>
+ </member>
+ <member name="M:System.Security.PermissionSet.SetPermission(System.Security.IPermission)">
+ <summary>Sets a permission to the <see cref="T:System.Security.PermissionSet" />, replacing any existing permission of the same type.</summary>
+ <param name="perm">The permission to set.</param>
+ <returns>The set permission.</returns>
+ <exception cref="T:System.InvalidOperationException">The method is called from a <see cref="T:System.Security.ReadOnlyPermissionSet" />.</exception>
+ </member>
+ <member name="M:System.Security.PermissionSet.SetPermissionImpl(System.Security.IPermission)">
+ <summary>Sets a permission to the <see cref="T:System.Security.PermissionSet" />, replacing any existing permission of the same type.</summary>
+ <param name="perm">The permission to set.</param>
+ <returns>The set permission.</returns>
+ <exception cref="T:System.InvalidOperationException">The method is called from a <see cref="T:System.Security.ReadOnlyPermissionSet" />.</exception>
+ </member>
+ <member name="P:System.Security.PermissionSet.SyncRoot">
+ <summary>Gets the root object of the current collection.</summary>
+ <returns>The root object of the current collection.</returns>
+ </member>
+ <member name="M:System.Security.PermissionSet.System#Runtime#Serialization#IDeserializationCallback#OnDeserialization(System.Object)">
+ <summary>Runs when the entire object graph has been deserialized.</summary>
+ <param name="sender">The object that initiated the callback. The functionality for this parameter is not currently implemented.</param>
+ </member>
+ <member name="M:System.Security.PermissionSet.ToString">
+ <summary>Returns a string representation of the <see cref="T:System.Security.PermissionSet" />.</summary>
+ <returns>A representation of the <see cref="T:System.Security.PermissionSet" />.</returns>
+ </member>
+ <member name="M:System.Security.PermissionSet.ToXml">
+ <summary>Creates an XML encoding of the security object and its current state.</summary>
+ <returns>An XML encoding of the security object, including any state information.</returns>
+ </member>
+ <member name="M:System.Security.PermissionSet.Union(System.Security.PermissionSet)">
+ <summary>Creates a <see cref="T:System.Security.PermissionSet" /> that is the union of the current <see cref="T:System.Security.PermissionSet" /> and the specified <see cref="T:System.Security.PermissionSet" />.</summary>
+ <param name="other">The permission set to form the union with the current <see cref="T:System.Security.PermissionSet" />.</param>
+ <returns>A new permission set that represents the union of the current <see cref="T:System.Security.PermissionSet" /> and the specified <see cref="T:System.Security.PermissionSet" />.</returns>
+ </member>
+ <member name="T:System.Security.SecurityElement">
+ <summary>Represents the XML object model for encoding security objects. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Security.SecurityElement.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Security.SecurityElement" /> class with the specified tag.</summary>
+ <param name="tag">The tag name of an XML element.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="tag" /> parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="tag" /> parameter is invalid in XML.</exception>
+ </member>
+ <member name="M:System.Security.SecurityElement.#ctor(System.String,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Security.SecurityElement" /> class with the specified tag and text.</summary>
+ <param name="tag">The tag name of the XML element.</param>
+ <param name="text">The text content within the element.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="tag" /> parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="tag" /> parameter or <paramref name="text" /> parameter is invalid in XML.</exception>
+ </member>
+ <member name="M:System.Security.SecurityElement.AddAttribute(System.String,System.String)">
+ <summary>Adds a name/value attribute to an XML element.</summary>
+ <param name="name">The name of the attribute.</param>
+ <param name="value">The value of the attribute.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="name" /> parameter or <paramref name="value" /> parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="name" /> parameter or <paramref name="value" /> parameter is invalid in XML.
+-or-
+An attribute with the name specified by the <paramref name="name" /> parameter already exists.</exception>
+ </member>
+ <member name="M:System.Security.SecurityElement.AddChild(System.Security.SecurityElement)">
+ <summary>Adds a child element to the XML element.</summary>
+ <param name="child">The child element to add.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="child" /> parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Security.SecurityElement.Attribute(System.String)">
+ <summary>Finds an attribute by name in an XML element.</summary>
+ <param name="name">The name of the attribute for which to search.</param>
+ <returns>The value associated with the named attribute, or <see langword="null" /> if no attribute with <paramref name="name" /> exists.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="name" /> parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="P:System.Security.SecurityElement.Attributes">
+ <summary>Gets or sets the attributes of an XML element as name/value pairs.</summary>
+ <returns>The <see cref="T:System.Collections.Hashtable" /> object for the attribute values of the XML element.</returns>
+ <exception cref="T:System.InvalidCastException">The name or value of the <see cref="T:System.Collections.Hashtable" /> object is invalid.</exception>
+ <exception cref="T:System.ArgumentException">The name is not a valid XML attribute name.</exception>
+ </member>
+ <member name="P:System.Security.SecurityElement.Children">
+ <summary>Gets or sets the array of child elements of the XML element.</summary>
+ <returns>The ordered child elements of the XML element as security elements.</returns>
+ <exception cref="T:System.ArgumentException">A child of the XML parent node is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Security.SecurityElement.Copy">
+ <summary>Creates and returns an identical copy of the current <see cref="T:System.Security.SecurityElement" /> object.</summary>
+ <returns>A copy of the current <see cref="T:System.Security.SecurityElement" /> object.</returns>
+ </member>
+ <member name="M:System.Security.SecurityElement.Equal(System.Security.SecurityElement)">
+ <summary>Compares two XML element objects for equality.</summary>
+ <param name="other">An XML element object to which to compare the current XML element object.</param>
+ <returns>
+ <see langword="true" /> if the tag, attribute names and values, child elements, and text fields in the current XML element are identical to their counterparts in the <paramref name="other" /> parameter; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Security.SecurityElement.Escape(System.String)">
+ <summary>Replaces invalid XML characters in a string with their valid XML equivalent.</summary>
+ <param name="str">The string within which to escape invalid characters.</param>
+ <returns>The input string with invalid characters replaced.</returns>
+ </member>
+ <member name="M:System.Security.SecurityElement.FromString(System.String)">
+ <summary>Creates a security element from an XML-encoded string.</summary>
+ <param name="xml">The XML-encoded string from which to create the security element.</param>
+ <returns>A <see cref="T:System.Security.SecurityElement" /> created from the XML.</returns>
+ <exception cref="T:System.Security.XmlSyntaxException">
+ <paramref name="xml" /> contains one or more single quotation mark characters.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="xml" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Security.SecurityElement.IsValidAttributeName(System.String)">
+ <summary>Determines whether a string is a valid attribute name.</summary>
+ <param name="name">The attribute name to test for validity.</param>
+ <returns>
+ <see langword="true" /> if the <paramref name="name" /> parameter is a valid XML attribute name; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Security.SecurityElement.IsValidAttributeValue(System.String)">
+ <summary>Determines whether a string is a valid attribute value.</summary>
+ <param name="value">The attribute value to test for validity.</param>
+ <returns>
+ <see langword="true" /> if the <paramref name="value" /> parameter is a valid XML attribute value; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Security.SecurityElement.IsValidTag(System.String)">
+ <summary>Determines whether a string is a valid tag.</summary>
+ <param name="tag">The tag to test for validity.</param>
+ <returns>
+ <see langword="true" /> if the <paramref name="tag" /> parameter is a valid XML tag; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Security.SecurityElement.IsValidText(System.String)">
+ <summary>Determines whether a string is valid as text within an XML element.</summary>
+ <param name="text">The text to test for validity.</param>
+ <returns>
+ <see langword="true" /> if the <paramref name="text" /> parameter is a valid XML text element; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Security.SecurityElement.SearchForChildByTag(System.String)">
+ <summary>Finds a child by its tag name.</summary>
+ <param name="tag">The tag for which to search in child elements.</param>
+ <returns>The first child XML element with the specified tag value, or <see langword="null" /> if no child element with <paramref name="tag" /> exists.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="tag" /> parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Security.SecurityElement.SearchForTextOfTag(System.String)">
+ <summary>Finds a child by its tag name and returns the contained text.</summary>
+ <param name="tag">The tag for which to search in child elements.</param>
+ <returns>The text contents of the first child element with the specified tag value.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="tag" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="P:System.Security.SecurityElement.Tag">
+ <summary>Gets or sets the tag name of an XML element.</summary>
+ <returns>The tag name of an XML element.</returns>
+ <exception cref="T:System.ArgumentNullException">The tag is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">The tag is not valid in XML.</exception>
+ </member>
+ <member name="P:System.Security.SecurityElement.Text">
+ <summary>Gets or sets the text within an XML element.</summary>
+ <returns>The value of the text within an XML element.</returns>
+ <exception cref="T:System.ArgumentException">The text is not valid in XML.</exception>
+ </member>
+ <member name="M:System.Security.SecurityElement.ToString">
+ <summary>Produces a string representation of an XML element and its constituent attributes, child elements, and text.</summary>
+ <returns>The XML element and its contents.</returns>
+ </member>
+ <member name="T:System.StringComparer">
+ <summary>Represents a string comparison operation that uses specific case and culture-based or ordinal comparison rules.</summary>
+ </member>
+ <member name="M:System.StringComparer.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.StringComparer" /> class.</summary>
+ </member>
+ <member name="M:System.StringComparer.Compare(System.Object,System.Object)">
+ <summary>When overridden in a derived class, compares two objects and returns an indication of their relative sort order.</summary>
+ <param name="x">An object to compare to <paramref name="y" />.</param>
+ <param name="y">An object to compare to <paramref name="x" />.</param>
+ <returns>A signed integer that indicates the relative values of <paramref name="x" /> and <paramref name="y" />, as shown in the following table.
+ Value
+
+ Meaning
+
+ Less than zero
+
+ <paramref name="x" /> precedes <paramref name="y" /> in the sort order.
+
+ -or-
+
+ <paramref name="x" /> is <see langword="null" /> and <paramref name="y" /> is not <see langword="null" />.
+
+ Zero
+
+ <paramref name="x" /> is equal to <paramref name="y" />.
+
+ -or-
+
+ <paramref name="x" /> and <paramref name="y" /> are both <see langword="null" />.
+
+ Greater than zero
+
+ <paramref name="x" /> follows <paramref name="y" /> in the sort order.
+
+ -or-
+
+ <paramref name="y" /> is <see langword="null" /> and <paramref name="x" /> is not <see langword="null" />.</returns>
+ <exception cref="T:System.ArgumentException">Neither <paramref name="x" /> nor <paramref name="y" /> is a <see cref="T:System.String" /> object, and neither <paramref name="x" /> nor <paramref name="y" /> implements the <see cref="T:System.IComparable" /> interface.</exception>
+ </member>
+ <member name="M:System.StringComparer.Compare(System.String,System.String)">
+ <summary>When overridden in a derived class, compares two strings and returns an indication of their relative sort order.</summary>
+ <param name="x">A string to compare to <paramref name="y" />.</param>
+ <param name="y">A string to compare to <paramref name="x" />.</param>
+ <returns>A signed integer that indicates the relative values of <paramref name="x" /> and <paramref name="y" />, as shown in the following table.
+ Value
+
+ Meaning
+
+ Less than zero
+
+ <paramref name="x" /> precedes <paramref name="y" /> in the sort order.
+
+ -or-
+
+ <paramref name="x" /> is <see langword="null" /> and <paramref name="y" /> is not <see langword="null" />.
+
+ Zero
+
+ <paramref name="x" /> is equal to <paramref name="y" />.
+
+ -or-
+
+ <paramref name="x" /> and <paramref name="y" /> are both <see langword="null" />.
+
+ Greater than zero
+
+ <paramref name="x" /> follows <paramref name="y" /> in the sort order.
+
+ -or-
+
+ <paramref name="y" /> is <see langword="null" /> and <paramref name="x" /> is not <see langword="null" />.</returns>
+ </member>
+ <member name="M:System.StringComparer.Create(System.Globalization.CultureInfo,System.Boolean)">
+ <summary>Creates a <see cref="T:System.StringComparer" /> object that compares strings according to the rules of a specified culture.</summary>
+ <param name="culture">A culture whose linguistic rules are used to perform a string comparison.</param>
+ <param name="ignoreCase">
+ <see langword="true" /> to specify that comparison operations be case-insensitive; <see langword="false" /> to specify that comparison operations be case-sensitive.</param>
+ <returns>A new <see cref="T:System.StringComparer" /> object that performs string comparisons according to the comparison rules used by the <paramref name="culture" /> parameter and the case rule specified by the <paramref name="ignoreCase" /> parameter.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="culture" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.StringComparer.Create(System.Globalization.CultureInfo,System.Globalization.CompareOptions)">
+ <param name="culture" />
+ <param name="options" />
+ </member>
+ <member name="P:System.StringComparer.CurrentCulture">
+ <summary>Gets a <see cref="T:System.StringComparer" /> object that performs a case-sensitive string comparison using the word comparison rules of the current culture.</summary>
+ <returns>A new <see cref="T:System.StringComparer" /> object.</returns>
+ </member>
+ <member name="P:System.StringComparer.CurrentCultureIgnoreCase">
+ <summary>Gets a <see cref="T:System.StringComparer" /> object that performs case-insensitive string comparisons using the word comparison rules of the current culture.</summary>
+ <returns>A new object for string comparison.</returns>
+ </member>
+ <member name="M:System.StringComparer.Equals(System.Object,System.Object)">
+ <summary>When overridden in a derived class, indicates whether two objects are equal.</summary>
+ <param name="x">An object to compare to <paramref name="y" />.</param>
+ <param name="y">An object to compare to <paramref name="x" />.</param>
+ <returns>
+ <see langword="true" /> if <paramref name="x" /> and <paramref name="y" /> refer to the same object, or <paramref name="x" /> and <paramref name="y" /> are both the same type of object and those objects are equal, or both <paramref name="x" /> and <paramref name="y" /> are <see langword="null" />; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.StringComparer.Equals(System.String,System.String)">
+ <summary>When overridden in a derived class, indicates whether two strings are equal.</summary>
+ <param name="x">A string to compare to <paramref name="y" />.</param>
+ <param name="y">A string to compare to <paramref name="x" />.</param>
+ <returns>
+ <see langword="true" /> if <paramref name="x" /> and <paramref name="y" /> refer to the same object, or <paramref name="x" /> and <paramref name="y" /> are equal, or <paramref name="x" /> and <paramref name="y" /> are <see langword="null" />; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.StringComparer.FromComparison(System.StringComparison)">
+ <param name="comparisonType" />
+ </member>
+ <member name="M:System.StringComparer.GetHashCode(System.Object)">
+ <summary>When overridden in a derived class, gets the hash code for the specified object.</summary>
+ <param name="obj">An object.</param>
+ <returns>A 32-bit signed hash code calculated from the value of the <paramref name="obj" /> parameter.</returns>
+ <exception cref="T:System.ArgumentException">Not enough memory is available to allocate the buffer that is required to compute the hash code.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="obj" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.StringComparer.GetHashCode(System.String)">
+ <summary>When overridden in a derived class, gets the hash code for the specified string.</summary>
+ <param name="obj">A string.</param>
+ <returns>A 32-bit signed hash code calculated from the value of the <paramref name="obj" /> parameter.</returns>
+ <exception cref="T:System.ArgumentException">Not enough memory is available to allocate the buffer that is required to compute the hash code.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="obj" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="P:System.StringComparer.InvariantCulture">
+ <summary>Gets a <see cref="T:System.StringComparer" /> object that performs a case-sensitive string comparison using the word comparison rules of the invariant culture.</summary>
+ <returns>A new <see cref="T:System.StringComparer" /> object.</returns>
+ </member>
+ <member name="P:System.StringComparer.InvariantCultureIgnoreCase">
+ <summary>Gets a <see cref="T:System.StringComparer" /> object that performs a case-insensitive string comparison using the word comparison rules of the invariant culture.</summary>
+ <returns>A new <see cref="T:System.StringComparer" /> object.</returns>
+ </member>
+ <member name="P:System.StringComparer.Ordinal">
+ <summary>Gets a <see cref="T:System.StringComparer" /> object that performs a case-sensitive ordinal string comparison.</summary>
+ <returns>A <see cref="T:System.StringComparer" /> object.</returns>
+ </member>
+ <member name="P:System.StringComparer.OrdinalIgnoreCase">
+ <summary>Gets a <see cref="T:System.StringComparer" /> object that performs a case-insensitive ordinal string comparison.</summary>
+ <returns>A <see cref="T:System.StringComparer" /> object.</returns>
+ </member>
+ <member name="T:System.StringNormalizationExtensions">
+ <summary>Provides extension methods to work with string normalization.</summary>
+ </member>
+ <member name="M:System.StringNormalizationExtensions.IsNormalized(System.String)">
+ <summary>Indicates whether the specified string is in Unicode normalization form C.</summary>
+ <param name="value">A string.</param>
+ <returns>
+ <see langword="true" /> if <paramref name="value" /> is in normalization form C; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="value" /> contains invalid Unicode characters.</exception>
+ </member>
+ <member name="M:System.StringNormalizationExtensions.IsNormalized(System.String,System.Text.NormalizationForm)">
+ <summary>Indicates whether a string is in a specified Unicode normalization form.</summary>
+ <param name="value">A string.</param>
+ <param name="normalizationForm">A Unicode normalization form.</param>
+ <returns>
+ <see langword="true" /> if <paramref name="value" /> is in normalization form <paramref name="normalizationForm" />; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="value" /> contains invalid Unicode characters.</exception>
+ </member>
+ <member name="M:System.StringNormalizationExtensions.Normalize(System.String)">
+ <summary>Normalizes a string to a Unicode normalization form C.</summary>
+ <param name="value">The string to normalize.</param>
+ <returns>A new string whose textual value is the same as <paramref name="value" /> but whose binary representation is in Unicode normalization form C.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="value" /> contains invalid Unicode characters.</exception>
+ </member>
+ <member name="M:System.StringNormalizationExtensions.Normalize(System.String,System.Text.NormalizationForm)">
+ <summary>Normalizes a string to the specified Unicode normalization form.</summary>
+ <param name="value">The string to normalize.</param>
+ <param name="normalizationForm">The Unicode normalization form.</param>
+ <returns>A new string whose textual value is the same as <paramref name="value" /> but whose binary representation is in the <paramref name="normalizationForm" /> normalization form.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="value" /> contains invalid Unicode characters.</exception>
+ </member>
+ <member name="T:System.UriBuilder">
+ <summary>Provides a custom constructor for uniform resource identifiers (URIs) and modifies URIs for the <see cref="T:System.Uri" /> class.</summary>
+ </member>
+ <member name="M:System.UriBuilder.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.UriBuilder" /> class.</summary>
+ </member>
+ <member name="M:System.UriBuilder.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.UriBuilder" /> class with the specified URI.</summary>
+ <param name="uri">A URI string.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="uri" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.UriFormatException">In the .NET for Windows Store apps or the Portable Class Library, catch the base class exception, <see cref="T:System.FormatException" />, instead.
+
+
+
+ <paramref name="uri" /> is a zero-length string or contains only spaces.
+
+ -or-
+
+ The parsing routine detected a scheme in an invalid form.
+
+ -or-
+
+ The parser detected more than two consecutive slashes in a URI that does not use the "file" scheme.
+
+ -or-
+
+ <paramref name="uri" /> is not a valid URI.</exception>
+ </member>
+ <member name="M:System.UriBuilder.#ctor(System.String,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.UriBuilder" /> class with the specified scheme and host.</summary>
+ <param name="schemeName">An Internet access protocol.</param>
+ <param name="hostName">A DNS-style domain name or IP address.</param>
+ </member>
+ <member name="M:System.UriBuilder.#ctor(System.String,System.String,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.UriBuilder" /> class with the specified scheme, host, and port.</summary>
+ <param name="scheme">An Internet access protocol.</param>
+ <param name="host">A DNS-style domain name or IP address.</param>
+ <param name="portNumber">An IP port number for the service.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="portNumber" /> is less than -1 or greater than 65,535.</exception>
+ </member>
+ <member name="M:System.UriBuilder.#ctor(System.String,System.String,System.Int32,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.UriBuilder" /> class with the specified scheme, host, port number, and path.</summary>
+ <param name="scheme">An Internet access protocol.</param>
+ <param name="host">A DNS-style domain name or IP address.</param>
+ <param name="port">An IP port number for the service.</param>
+ <param name="pathValue">The path to the Internet resource.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="port" /> is less than -1 or greater than 65,535.</exception>
+ </member>
+ <member name="M:System.UriBuilder.#ctor(System.String,System.String,System.Int32,System.String,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.UriBuilder" /> class with the specified scheme, host, port number, path and query string or fragment identifier.</summary>
+ <param name="scheme">An Internet access protocol.</param>
+ <param name="host">A DNS-style domain name or IP address.</param>
+ <param name="port">An IP port number for the service.</param>
+ <param name="path">The path to the Internet resource.</param>
+ <param name="extraValue">A query string or fragment identifier.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="extraValue" /> is neither <see langword="null" /> nor <see cref="F:System.String.Empty" />, nor does a valid fragment identifier begin with a number sign (#), nor a valid query string begin with a question mark (?).</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="port" /> is less than -1 or greater than 65,535.</exception>
+ </member>
+ <member name="M:System.UriBuilder.#ctor(System.Uri)">
+ <summary>Initializes a new instance of the <see cref="T:System.UriBuilder" /> class with the specified <see cref="T:System.Uri" /> instance.</summary>
+ <param name="uri">An instance of the <see cref="T:System.Uri" /> class.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="uri" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.UriBuilder.Equals(System.Object)">
+ <summary>Compares an existing <see cref="T:System.Uri" /> instance with the contents of the <see cref="T:System.UriBuilder" /> for equality.</summary>
+ <param name="rparam">The object to compare with the current instance.</param>
+ <returns>
+ <see langword="true" /> if <paramref name="rparam" /> represents the same <see cref="T:System.Uri" /> as the <see cref="T:System.Uri" /> constructed by this <see cref="T:System.UriBuilder" /> instance; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.UriBuilder.Fragment">
+ <summary>Gets or sets the fragment portion of the URI.</summary>
+ <returns>The fragment portion of the URI. The fragment identifier ("#") is added to the beginning of the fragment.</returns>
+ </member>
+ <member name="M:System.UriBuilder.GetHashCode">
+ <summary>Returns the hash code for the URI.</summary>
+ <returns>The hash code generated for the URI.</returns>
+ </member>
+ <member name="P:System.UriBuilder.Host">
+ <summary>Gets or sets the Domain Name System (DNS) host name or IP address of a server.</summary>
+ <returns>The DNS host name or IP address of the server.</returns>
+ </member>
+ <member name="P:System.UriBuilder.Password">
+ <summary>Gets or sets the password associated with the user that accesses the URI.</summary>
+ <returns>The password of the user that accesses the URI.</returns>
+ </member>
+ <member name="P:System.UriBuilder.Path">
+ <summary>Gets or sets the path to the resource referenced by the URI.</summary>
+ <returns>The path to the resource referenced by the URI.</returns>
+ </member>
+ <member name="P:System.UriBuilder.Port">
+ <summary>Gets or sets the port number of the URI.</summary>
+ <returns>The port number of the URI.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The port cannot be set to a value less than -1 or greater than 65,535.</exception>
+ </member>
+ <member name="P:System.UriBuilder.Query">
+ <summary>Gets or sets any query information included in the URI.</summary>
+ <returns>The query information included in the URI.</returns>
+ </member>
+ <member name="P:System.UriBuilder.Scheme">
+ <summary>Gets or sets the scheme name of the URI.</summary>
+ <returns>The scheme of the URI.</returns>
+ <exception cref="T:System.ArgumentException">The scheme cannot be set to an invalid scheme name.</exception>
+ </member>
+ <member name="M:System.UriBuilder.ToString">
+ <summary>Returns the display string for the specified <see cref="T:System.UriBuilder" /> instance.</summary>
+ <returns>The string that contains the unescaped display string of the <see cref="T:System.UriBuilder" />.</returns>
+ <exception cref="T:System.UriFormatException">In the .NET for Windows Store apps or the Portable Class Library, catch the base class exception, <see cref="T:System.FormatException" />, instead.
+
+
+
+
+ The <see cref="T:System.UriBuilder" /> instance has a bad password.</exception>
+ </member>
+ <member name="P:System.UriBuilder.Uri">
+ <summary>Gets the <see cref="T:System.Uri" /> instance constructed by the specified <see cref="T:System.UriBuilder" /> instance.</summary>
+ <returns>A <see cref="T:System.Uri" /> that contains the URI constructed by the <see cref="T:System.UriBuilder" />.</returns>
+ <exception cref="T:System.UriFormatException">In the .NET for Windows Store apps or the Portable Class Library, catch the base class exception, <see cref="T:System.FormatException" />, instead.
+
+
+
+
+ The URI constructed by the <see cref="T:System.UriBuilder" /> properties is invalid.</exception>
+ </member>
+ <member name="P:System.UriBuilder.UserName">
+ <summary>The user name associated with the user that accesses the URI.</summary>
+ <returns>The user name of the user that accesses the URI.</returns>
+ </member>
+ </members>
+</doc> \ No newline at end of file