Microsoft.Win32Ex.xml

<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Microsoft.Win32Ex</name>
    </assembly>
    <members>
        <member name="T:Microsoft.Win32.AdvApi32">
            <summary>
            Provide access to functionality additional to the kernel. Included are things like the Windows registry, shutdown/restart the system (or abort), start/stop/create a Windows service, manage user accounts.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.AdvApi32.SERVICE_NO_CHANGE">
            <summary>
            Indicates that no change has occurred for a service property.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.AdvApi32.DllCharSet">
            <summary>
            The character set used by AdvApi32.dll.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.AdvApi32.DllName">
            <summary>
            The name of the assembly that exposes AdvApi32.
            </summary>
        </member>
        <member name="M:Microsoft.Win32.AdvApi32.GetServiceConfig(System.Runtime.InteropServices.SafeHandle)">
            <summary>
            Gets the current configuration of a service.
            </summary>
            <param name="serviceHandle">A handle to the service.</param>
            <returns>A <see cref="T:Microsoft.Win32.ServiceConfig"/> object containing information about the service.</returns>
        </member>
        <member name="M:Microsoft.Win32.AdvApi32.SetServiceStartMode(System.Runtime.InteropServices.SafeHandle,System.ServiceProcess.ServiceStartMode)">
            <summary>
            Sets the start mode of a service.
            </summary>
            <param name="serviceHandle">A handle to the service.</param>
            <param name="startMode">The new start mode of the service.</param>
        </member>
        <member name="M:Microsoft.Win32.AdvApi32.ChangeServiceConfig(System.Runtime.InteropServices.SafeHandle,System.UInt32,System.UInt32,System.UInt32,System.String,System.String,System.String,System.String,System.String,System.String)">
            <summary>
            Changes the configuration parameters of a service.
            </summary>
            <param name="serviceHandle">A handle to the service.</param>
            <param name="serviceType">The type of service. Specify <see cref="F:Microsoft.Win32.AdvApi32.SERVICE_NO_CHANGE"/> if you are not changing the existing service type.</param>
            <param name="startMode">The service start options. Specify <see cref="F:Microsoft.Win32.AdvApi32.SERVICE_NO_CHANGE"/> if you are not changing the existing start options.</param>
            <param name="errorControl">The severity of the error, and action taken, if this service fails to start. Specify <see cref="F:Microsoft.Win32.AdvApi32.SERVICE_NO_CHANGE"/> if you are not changing the existing error control.</param>
            <param name="binaryPath">The fully qualified path to the service binary file. Specify NULL if you are not changing the existing path. If the path contains a space, it must be quoted so that it is correctly interpreted.</param>
            <param name="loadOrderGroup">The name of the load ordering group of which this service is a member. Specify NULL if you are not changing the existing group. Specify an empty string if the service does not belong to a group.</param>
            <param name="dependencies">A pointer to a double null-terminated array of null-separated names of services or load ordering groups that the system must start before this service can be started. (Dependency on a group means that this service can run if at least one member of the group is running after an attempt to start all members of the group.) Specify NULL if you are not changing the existing dependencies. Specify an empty string if the service has no dependencies.</param>
            <param name="serviceStartName">The name of the account under which the service should run. Specify NULL if you are not changing the existing account name.</param>
            <param name="password">The password to the account name specified by the lpServiceStartName parameter. Specify NULL if you are not changing the existing password. Specify an empty string if the account has no password or if the service runs in the LocalService, NetworkService, or LocalSystem account.</param>
            <param name="displayName">The display name to be used by applications to identify the service for its users. Specify NULL if you are not changing the existing display name.</param>
        </member>
        <member name="T:Microsoft.Win32.AdvApi32.QUERY_SERVICE_CONFIG">
            <summary>
            Contains configuration information for an installed service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.AdvApi32.QUERY_SERVICE_CONFIG.dwServiceType">
            <summary>
            The type of service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.AdvApi32.QUERY_SERVICE_CONFIG.dwStartType">
            <summary>
            When to start the service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.AdvApi32.QUERY_SERVICE_CONFIG.dwErrorControl">
            <summary>
            The severity of the error, and action taken, if this service fails to start.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.AdvApi32.QUERY_SERVICE_CONFIG.lpBinaryPathName">
             <summary>
             The fully qualified path to the service binary file.
             
             The path can also include arguments for an auto-start service. These arguments are passed to the service entry point (typically the main function).
             </summary>
        </member>
        <member name="F:Microsoft.Win32.AdvApi32.QUERY_SERVICE_CONFIG.lpLoadOrderGroup">
             <summary>
             The name of the load ordering group to which this service belongs. If the member is NULL or an empty string, the service does not belong to a load ordering group.
             
             The startup program uses load ordering groups to load groups of services in a specified order with respect to the other groups. The list of load ordering groups is contained in the following registry value:
             
             HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\ServiceGroupOrder
             </summary>
        </member>
        <member name="F:Microsoft.Win32.AdvApi32.QUERY_SERVICE_CONFIG.dwTagID">
             <summary>
             A unique tag value for this service in the group specified by the lpLoadOrderGroup parameter. A value of zero indicates that the service has not been assigned a tag. You can use a tag for ordering service startup within a load order group by specifying a tag order vector in the registry located at:
             
             HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\GroupOrderList
             
             Tags are only evaluated for SERVICE_KERNEL_DRIVER and SERVICE_FILE_SYSTEM_DRIVER type services that have SERVICE_BOOT_START or SERVICE_SYSTEM_START start types.
             </summary>
        </member>
        <member name="F:Microsoft.Win32.AdvApi32.QUERY_SERVICE_CONFIG.lpDependencies">
            <summary>
            An array of null-separated names of services or load ordering groups that must start before this service. The array is doubly null-terminated. If the pointer is NULL or if it points to an empty string, the service has no dependencies. If a group name is specified, it must be prefixed by the SC_GROUP_IDENTIFIER (defined in WinSvc.h) character to differentiate it from a service name, because services and service groups share the same name space. Dependency on a service means that this service can only run if the service it depends on is running. Dependency on a group means that this service can run if at least one member of the group is running after an attempt to start all members of the group.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.AdvApi32.QUERY_SERVICE_CONFIG.lpServiceStartName">
             <summary>
             If the service type is SERVICE_WIN32_OWN_PROCESS or SERVICE_WIN32_SHARE_PROCESS, this member is the name of the account that the service process will be logged on as when it runs. This name can be of the form Domain\UserName. If the account belongs to the built-in domain, the name can be of the form .\UserName. The name can also be "LocalSystem" if the process is running under the LocalSystem account.
             
             If the service type is SERVICE_KERNEL_DRIVER or SERVICE_FILE_SYSTEM_DRIVER, this member is the driver object name (that is, \FileSystem\Rdr or \Driver\Xns) which the input and output (I/O) system uses to load the device driver. If this member is NULL, the driver is to be run with a default object name created by the I/O system, based on the service name.
             </summary>
        </member>
        <member name="F:Microsoft.Win32.AdvApi32.QUERY_SERVICE_CONFIG.lpDisplayName">
             <summary>
             The display name to be used by service control programs to identify the service. This string has a maximum length of 256 characters. The name is case-preserved in the service control manager. Display name comparisons are always case-insensitive.
             
             This parameter can specify a localized string using the following format:
             
             @[Path\]DLLName,-StrID
             
             The string with identifier StrID is loaded from DLLName; the Path is optional. For more information, see RegLoadMUIString.
             </summary>
        </member>
        <member name="T:Microsoft.Win32.AdvApi32.NativeMethods">
            <summary>
            Provides access to the native functions.
            </summary>
        </member>
        <member name="M:Microsoft.Win32.AdvApi32.NativeMethods.ChangeServiceConfig(System.Runtime.InteropServices.SafeHandle,System.UInt32,System.UInt32,System.UInt32,System.String,System.String,System.Int32,System.String,System.String,System.String,System.String)">
             <summary>
             Changes the configuration parameters of a service.
             </summary>
             <param name="hService">A handle to the service.</param>
             <param name="dwServiceType">The type of service. Specify SERVICE_NO_CHANGE if you are not changing the existing service type.</param>
             <param name="dwStartType">The service start options. Specify SERVICE_NO_CHANGE if you are not changing the existing start type.</param>
             <param name="dwErrorControl">The severity of the error, and action taken, if this service fails to start. Specify SERVICE_NO_CHANGE if you are not changing the existing error control.</param>
             <param name="lpBinaryPathName">The fully qualified path to the service binary file. Specify NULL if you are not changing the existing path. If the path contains a space, it must be quoted so that it is correctly interpreted.</param>
             <param name="lpLoadOrderGroup">The name of the load ordering group of which this service is a member. Specify NULL if you are not changing the existing group. Specify an empty string if the service does not belong to a group.</param>
             <param name="lpdwTagId">A pointer to a variable that receives a tag value that is unique in the group specified in the lpLoadOrderGroup parameter. Specify NULL if you are not changing the existing tag.</param>
             <param name="lpDependencies">A pointer to a double null-terminated array of null-separated names of services or load ordering groups that the system must start before this service can be started. (Dependency on a group means that this service can run if at least one member of the group is running after an attempt to start all members of the group.) Specify NULL if you are not changing the existing dependencies. Specify an empty string if the service has no dependencies.</param>
             <param name="lpServiceStartName">The name of the account under which the service should run. Specify NULL if you are not changing the existing account name. If the service type is SERVICE_WIN32_OWN_PROCESS, use an account name in the form DomainName\UserName. The service process will be logged on as this user. If the account belongs to the built-in domain, you can specify .\UserName (note that the corresponding C/C++ string is ".\\UserName").</param>
             <param name="lpPassWord">The password to the account name specified by the lpServiceStartName parameter. Specify NULL if you are not changing the existing password. Specify an empty string if the account has no password or if the service runs in the LocalService, NetworkService, or LocalSystem account.</param>
             <param name="lpDisplayName">he display name to be used by applications to identify the service for its users. Specify NULL if you are not changing the existing display name; otherwise, this string has a maximum length of 256 characters. The name is case-preserved in the service control manager. Display name comparisons are always case-insensitive.
             
             This parameter can specify a localized string using the following format:
             
             @[path\]dllname,-strID
             
             The string with identifier strID is loaded from dllname; the path is optional.</param>
             <returns>If the function succeeds, the return value is nonzero.
             
             If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:Microsoft.Win32.AdvApi32.NativeMethods.QueryServiceConfig(System.Runtime.InteropServices.SafeHandle,System.IntPtr,System.UInt32,System.UInt32@)">
             <summary>
             Retrieves the configuration parameters of the specified service.
             </summary>
             <param name="hService">A handle to the service.</param>
             <param name="lpServiceConfig">A pointer to a buffer that receives the service configuration information. The format of the data is a QUERY_SERVICE_CONFIG structure.</param>
             <param name="cbBufSize">The size of the buffer pointed to by the lpServiceConfig parameter, in bytes.</param>
             <param name="pcbBytesNeeded">A pointer to a variable that receives the number of bytes needed to store all the configuration information, if the function fails with ERROR_INSUFFICIENT_BUFFER.</param>
             <returns>If the function succeeds, the return value is nonzero.
             
             If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="T:Microsoft.Win32.CopyFileProgress">
            <summary>
            Represents the status of a file copy.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.CopyFileProgress._progressCallback">
            <summary>
            The <see cref="T:Microsoft.Win32.CopyFileProgressCallback"/> method the user wants called when progress is made.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.CopyFileProgress._userData">
            <summary>
            Stores the user data and is passed to the user's callback.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.CopyFileProgress._timeStarted">
            <summary>
            The DateTime when the file copy began.
            </summary>
        </member>
        <member name="M:Microsoft.Win32.CopyFileProgress.#ctor(System.String,System.String,Microsoft.Win32.CopyFileProgressCallback,System.Object)">
            <summary>
            Initializes a new instance of the CopyFileProgress class.
            </summary>
            <param name="sourceFilePath">The full path to the source file being copied.</param>
            <param name="destinationFilePath">The full path to the destination file being copied.</param>
            <param name="copyProgressCallback">A <see cref="T:Microsoft.Win32.CopyFileProgressCallback"/> method to call when progress is made.</param>
            <param name="userData">An object containing data to be used by the method.</param>
        </member>
        <member name="M:Microsoft.Win32.CopyFileProgress.CopyProgressHandler(System.UInt64,System.UInt64,System.UInt64,System.UInt64,System.UInt32,System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr)">
            <summary>
            A callback method for the native CopyFileEx function.
             
            http://msdn.microsoft.com/en-us/library/windows/desktop/aa363854(v=vs.85).aspx
            </summary>
            <param name="totalFileSize">The total size of the file, in bytes.</param>
            <param name="totalBytesTransferred">The total number of bytes transferred from the source file to the destination file since the copy operation began.</param>
            <param name="streamSize">The total size of the current file stream, in bytes.</param>
            <param name="streamBytesTransferred">The total number of bytes in the current stream that have been transferred from the source file to the destination file since the copy operation began.</param>
            <param name="streamNumber">A handle to the current stream. The first time CopyProgressRoutine is called, the stream number is 1.</param>
            <param name="callbackReason">The reason that CopyProgressRoutine was called.</param>
            <param name="sourceFile">A handle to the source file.</param>
            <param name="destinationFile">A handle to the destination file.</param>
            <param name="data">Argument passed to CopyProgressRoutine by CopyFileEx, MoveFileTransacted, or MoveFileWithProgress.</param>
            <returns>The CopyProgressRoutine function should return one of the following values.
            PROGRESS_CANCEL - Cancel the copy operation and delete the destination file.
            PROGRESS_CONTINUE - Continue the copy operation.
            PROGRESS_QUIET - Continue the copy operation, but stop invoking CopyProgressRoutine to report progress.
            PROGRESS_STOP - Stop the copy operation. It can be restarted at a later time.
            </returns>
        </member>
        <member name="P:Microsoft.Win32.CopyFileProgress.DestinationFilePath">
            <summary>
            Gets the path to the destination file being copied.
            </summary>
        </member>
        <member name="P:Microsoft.Win32.CopyFileProgress.EstimatedTimeRemaining">
            <summary>
            Gets an estimated amount of time remaining until the copy operation will complete.
            </summary>
        </member>
        <member name="P:Microsoft.Win32.CopyFileProgress.PercentComplete">
            <summary>
            Gets the percentage of the file that has been copied since the copy operation began.
            </summary>
        </member>
        <member name="P:Microsoft.Win32.CopyFileProgress.SourceFilePath">
            <summary>
            Gets the path to the source file being copied.
            </summary>
        </member>
        <member name="P:Microsoft.Win32.CopyFileProgress.TotalFileSize">
            <summary>
            Gets the total size of the file, in bytes.
            </summary>
        </member>
        <member name="P:Microsoft.Win32.CopyFileProgress.TransferredBytes">
            <summary>
            Gets the total number of bytes transferred from the source file to the destination file since the copy operation began.
            </summary>
        </member>
        <member name="T:System.Win32ExExtensionMethods">
            <summary>
            Extension methods for objects in the System namespace.
            </summary>
        </member>
        <member name="M:System.Win32ExExtensionMethods.AsEnumerable``1(System.IntPtr,System.Int32)">
             <summary>
             
             </summary>
             <typeparam name="T"></typeparam>
             <param name="ptr"></param>
             <param name="count"></param>
             <returns></returns>
        </member>
        <member name="M:System.Win32ExExtensionMethods.ToIntPtr``1(System.Collections.Generic.ICollection{``0})">
            <summary>
            Marshals data of the ICollection to unmanaged memory.
            </summary>
            <typeparam name="T">The type of items in the collection.</typeparam>
            <param name="items">The <see cref="T:System.Collections.Generic.ICollection`1"/> to marshal.</param>
            <returns>A pointer to the newly allocated memory. This memory must be released using the <see cref="M:System.Runtime.InteropServices.Marshal.FreeHGlobal(System.IntPtr)"/> method.</returns>
        </member>
        <member name="M:System.Win32ExExtensionMethods.ToStringAnsi(System.IntPtr)">
            <summary>
            Copies all characters up to the first null character from an unmanaged ANSI string to a managed String, and widens each ANSI character to Unicode.
            </summary>
            <param name="ptr">The address of the first character of the unmanaged string.</param>
            <returns>A managed string that holds a copy of the unmanaged ANSI string. If <paramref name="ptr"/> is null, the method returns a null string.</returns>
        </member>
        <member name="M:System.Win32ExExtensionMethods.ToStringAuto(System.IntPtr)">
            <summary>
            Allocates a managed String and copies all characters up to the first null character from a string stored in unmanaged memory into it.
            </summary>
            <param name="ptr">For Unicode platforms, the address of the first Unicode character.
            -or-
            For ANSI platforms, the address of the first ANSI character.</param>
            <returns>A managed string that holds a copy of the unmanaged string if the value of the <paramref name="ptr"/> parameter is not null; otherwise, this method returns null.</returns>
        </member>
        <member name="M:System.Win32ExExtensionMethods.ToStringAuto(System.IntPtr,System.Int32)">
            <summary>
            Allocates a managed String and copies all characters up to the first null character from a string stored in unmanaged memory into it.
            </summary>
            <param name="ptr">For Unicode platforms, the address of the first Unicode character.
            -or-
            For ANSI platforms, the address of the first ANSI character.</param>
            <param name="len">The number of characters to copy.</param>
            <returns>A managed string that holds a copy of the unmanaged string if the value of the <paramref name="ptr"/> parameter is not null; otherwise, this method returns null.</returns>
        </member>
        <member name="M:System.Win32ExExtensionMethods.ToStringBSTR(System.IntPtr)">
            <summary>
            Allocates a managed String and copies a BSTR Data Type string stored in unmanaged memory into it.
            </summary>
            <param name="ptr">The address of the first character of the unmanaged string.</param>
            <returns>A managed string that holds a copy of the unmanaged string if the value of the <paramref name="ptr"/> parameter is not null; otherwise, this method returns null.</returns>
        </member>
        <member name="M:System.Win32ExExtensionMethods.ToStringUni(System.IntPtr)">
            <summary>
            Allocates a managed String and copies a specified number of characters from an unmanaged Unicode string into it.
            </summary>
            <param name="ptr">The address of the first character of the unmanaged string.</param>
            <returns>A managed string that holds a copy of the unmanaged string if the value of the <paramref name="ptr"/> parameter is not null; otherwise, this method returns null.</returns>
        </member>
        <member name="M:System.Win32ExExtensionMethods.ToStringUni(System.IntPtr,System.Int32)">
            <summary>
            Allocates a managed String and copies a specified number of characters from an unmanaged Unicode string into it.
            </summary>
            <param name="ptr">The address of the first character of the unmanaged string.</param>
            <param name="len">The number of Unicode characters to copy.</param>
            <returns>A managed string that holds a copy of the unmanaged string if the value of the <paramref name="ptr"/> parameter is not null; otherwise, this method returns null.</returns>
        </member>
        <member name="M:System.Win32ExExtensionMethods.ToStructure``1(System.IntPtr)">
            <summary>
            Marshals data from an unmanaged block of memory to a newly allocated managed object of the specified type.
            </summary>
            <typeparam name="T">The System.Type of object to be created. This type object must represent a formatted class or a structure.</typeparam>
            <param name="ptr">A pointer to an unmanaged block of memory.</param>
            <returns>A managed object containing the data pointed to by the ptr parameter.</returns>
            <exception cref="T:System.ArgumentException">The T parameter layout is not sequential or explicit.
            -or-
            The T parameter is a generic type.</exception>
        </member>
        <member name="T:Microsoft.Win32.FindSafeHandle">
            <summary>
            Represents a handle to a file search returned by FindFirstFile or FindFirstFileEx.
            </summary>
        </member>
        <member name="M:Microsoft.Win32.FindSafeHandle.#ctor">
            <summary>
            Creates a new instance of the FindSafeHandle class.
            </summary>
        </member>
        <member name="M:Microsoft.Win32.FindSafeHandle.ReleaseHandle">
            <summary>
            Releases the handle to the loaded dynamic-link library (DLL) module.
            </summary>
            <returns>true if the handle is released successfully; otherwise, in the event of a catastrophic failure, false. In this case, it generates a releaseHandleFailed MDA Managed Debugging Assistant.</returns>
        </member>
        <member name="T:Microsoft.Win32.ModuleSafeHandle">
            <summary>
            Represents a handle to a module returned by LoadLibrary or LoadLibraryEx.
            </summary>
        </member>
        <member name="M:Microsoft.Win32.ModuleSafeHandle.#ctor">
            <summary>
            Creates a new instance of the ModuleSafeHandle class.
            </summary>
        </member>
        <member name="M:Microsoft.Win32.ModuleSafeHandle.ReleaseHandle">
            <summary>
            Releases the handle to the loaded dynamic-link library (DLL) module.
            </summary>
            <returns>true if the handle is released successfully; otherwise, in the event of a catastrophic failure, false. In this case, it generates a releaseHandleFailed MDA Managed Debugging Assistant.</returns>
        </member>
        <member name="T:Microsoft.Win32.Kernel32">
            <summary>
            Provides access to the Win32 base APIs, such as memory management, input/output operations, process and thread creation, and synchronization functions.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Kernel32.DllCharSet">
            <summary>
            The character set to use.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Kernel32.DllName">
            <summary>
            Get assembly name for the Kernel32 API.
            </summary>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.AddDllDirectory(System.String)">
            <summary>
            Adds a directory to the process DLL search path.
            </summary>
            <param name="path">An absolute path to the directory to add to the search path.</param>
            <returns>A cookie that can be passed to <see cref="M:Microsoft.Win32.Kernel32.RemoveDllDirectory(System.IntPtr)"/> to remove the DLL from the process DLL search path.</returns>
            <exception cref="T:System.ComponentModel.Win32Exception">The native function failed.</exception>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.CloseHandle(System.IntPtr)">
            <summary>
            Closes an open object handle.
            </summary>
            <param name="handle">A valid handle to an open object.</param>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.CopyFile(System.String,System.String,Microsoft.Win32.CopyFileOptions)">
            <summary>
            Copies an existing file to a new file using the specified options.
            </summary>
            <param name="sourceFileName">The file to copy.</param>
            <param name="destFileName">The name of the destination file.</param>
            <param name="options">Specifies options to use when copying the file.</param>
            <exception cref="T:System.ArgumentNullException">sourceFileName or destFileName is null.</exception>
            <exception cref="T:System.IO.FileNotFoundException">sourceFileName was not found.</exception>
            <exception cref="T:System.OperationCanceledException">The file copy was canceled by the user's callback method.</exception>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.CopyFile(System.String,System.String,Microsoft.Win32.CopyFileOptions,Microsoft.Win32.CopyFileProgressCallback)">
            <summary>
            Copies an existing file to a new file using the specified options and gets notified of progress.
            </summary>
            <param name="sourceFileName">The file to copy.</param>
            <param name="destFileName">The name of the destination file.</param>
            <param name="options">Specifies options to use when copying the file.</param>
            <param name="copyFileProgressCallback">A <see cref="T:Microsoft.Win32.CopyFileProgressCallback"/> to call when progress is made during the file copy.</param>
            <exception cref="T:System.ArgumentNullException">sourceFileName or destFileName is null.</exception>
            <exception cref="T:System.IO.FileNotFoundException">sourceFileName was not found.</exception>
            <exception cref="T:System.OperationCanceledException">The file copy was canceled by the user's callback method.</exception>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.CopyFile(System.String,System.String,Microsoft.Win32.CopyFileOptions,Microsoft.Win32.CopyFileProgressCallback,System.Object)">
            <summary>
            Copies an existing file to a new file using the specified options and gets notified of progress.
            </summary>
            <param name="sourceFileName">The file to copy.</param>
            <param name="destFileName">The name of the destination file.</param>
            <param name="options">Specifies options to use when copying the file.</param>
            <param name="copyFileProgressCallback">A <see cref="T:Microsoft.Win32.CopyFileProgressCallback"/> to call when progress is made during the file copy.</param>
            <param name="userData">Optional user data to be passed to the callback.</param>
            <exception cref="T:System.ArgumentNullException">sourceFileName or destFileName is null.</exception>
            <exception cref="T:System.IO.FileNotFoundException">sourceFileName was not found.</exception>
            <exception cref="T:System.OperationCanceledException">The file copy was canceled by the user's callback method.</exception>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.CreateSymbolicLink(System.String,System.String,Microsoft.Win32.CreateSymbolicLinkOption)">
            <summary>
            Creates a symbolic link.
            </summary>
            <param name="path">The symbolic link to be created.</param>
            <param name="target">The name of the target for the symbolic link to be created.</param>
            <param name="options">A <see cref="T:Microsoft.Win32.CreateSymbolicLinkOption"/> object that indicates options to use when creating the link target.</param>
            <exception cref="T:System.ComponentModel.Win32Exception">The native function failed.</exception>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.FindFirstFile(System.String,Microsoft.Win32.WIN32_FIND_DATA@)">
            <summary>
            Searches a directory for a file or subdirectory with a name that matches a specific name (or partial name if wild cards are used).
            </summary>
            <param name="path">The directory or path, and the file name, which can include wild card characters, for example, an asterisk (*) or a question mark (?).</param>
            <param name="findData">An out parameter that receives a <see cref="T:Microsoft.Win32.WIN32_FIND_DATA"/> struct containing information about the file that was found.</param>
            <returns></returns>
            <exception cref="T:System.ArgumentNullException">The path parameter is null.</exception>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.FindNextFile(Microsoft.Win32.FindSafeHandle,Microsoft.Win32.WIN32_FIND_DATA@)">
            <summary>
            Continues a file search from a previous call to the FindFirstFile, FindFirstFileEx, or FindFirstFileTransacted functions.
            </summary>
            <param name="findHandle">The search handle returned by a previous call to the FindFirstFile or FindFirstFileEx function.</param>
            <param name="findData">An out parameter that receives a <see cref="T:Microsoft.Win32.WIN32_FIND_DATA"/> struct containing information about the file that was found.</param>
            <returns>true if there are more files that match the search, otherwise false.</returns>
            <exception cref="T:System.ArgumentNullException">The findHandle parameter is null.</exception>
            <exception cref="T:System.ComponentModel.Win32Exception">The native function failed.</exception>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.FreeLibrary(Microsoft.Win32.ModuleSafeHandle)">
            <summary>
            Frees the loaded dynamic-link library (DLL) module and, if necessary, decrements its reference count. When the reference count reaches zero, the module is unloaded from the address space of the calling process and the handle is no longer valid.
            </summary>
            <param name="handle">A handle to the loaded library module. The LoadLibrary, LoadLibraryEx, GetModuleHandle, or GetModuleHandleEx function returns this handle.</param>
            <exception cref="T:System.ComponentModel.Win32Exception">The native function returned an error.</exception>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.GetDllDirectory">
            <summary>
            Retrieves the application-specific portion of the search path used to locate DLLs for the application.
            </summary>
            <returns>The application-specific portion of the search path.</returns>
            <exception cref="T:System.ComponentModel.Win32Exception">The native function failed.</exception>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.GetProc(Microsoft.Win32.ModuleSafeHandle,System.String,System.Type)">
            <summary>
            Retrieves a delegate of an unmanaged function from the specified dynamic-link library (DLL).
            </summary>
            <param name="module">A handle to the loaded library module. The LoadLibrary, LoadLibraryEx, GetModuleHandle, or GetModuleHandleEx function returns this handle.</param>
            <param name="procName">The name of the function to retrieve.</param>
            <param name="t">The type of the delegate to be returned.</param>
            <returns>A delegate instance that can be cast to the appropriate delegate type.</returns>
            <exception cref="T:System.ArgumentNullException">The module parameter is null
            -or-
            The procName parameter is null
            -or-
            The t parameter is null.</exception>
            <exception cref="T:System.ComponentModel.Win32Exception">The native function GetProcAddress returned an error.</exception>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.GetProc``1(Microsoft.Win32.ModuleSafeHandle,System.String)">
            <summary>
            Retrieves a delegate of an unmanaged function from the specified dynamic-link library (DLL).
            </summary>
            <typeparam name="T">The type of the delegate to be returned.</typeparam>
            <param name="module">A handle to the loaded library module. The LoadLibrary, LoadLibraryEx, GetModuleHandle, or GetModuleHandleEx function returns this handle.</param>
            <param name="procName">The name of the function to retrieve.</param>
            <returns>A delegate instance of type t.</returns>
            <exception cref="T:System.ArgumentNullException">The module parameter is null.
            -or-
            The procName parameter is null.</exception>
            <exception cref="T:System.ComponentModel.Win32Exception">The native function GetProcAddress returned an error.</exception>
            <exception cref="T:System.InvalidCastException">The delegate returned by <see cref="M:System.Runtime.InteropServices.Marshal.GetDelegateForFunctionPointer(System.IntPtr,System.Type)"/> can not be cast to the type t specified.</exception>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.GetProcAddress(Microsoft.Win32.ModuleSafeHandle,System.String)">
            <summary>
            Retrieves the address of an exported function or variable from the specified dynamic-link library (DLL).
            </summary>
            <param name="module">A handle to the loaded library module. The LoadLibrary, LoadLibraryEx, GetModuleHandle, or GetModuleHandleEx function returns this handle.</param>
            <param name="procName">The name of the function to retrieve.</param>
            <returns>An <see cref="T:System.IntPtr"/> object that represents the address of function.</returns>
            <exception cref="T:System.ArgumentNullException">The module parameter is null.
            -or-
            The procName parameter is null.</exception>
            <exception cref="T:System.ComponentModel.Win32Exception">The native function function returned an error.</exception>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.LoadLibrary(System.String)">
             <summary>
             Loads the specified module into the address space of the calling process. The specified module may cause other modules to be loaded.
             </summary>
             <param name="path">The name of the module. This can be either a library module (a .dll file) or an executable module (an .exe file). The name specified is the file name of the module and is not related to the name stored in the library module itself, as specified by the LIBRARY keyword in the module-definition (.def) file.
             
             If the string specifies a full path, the method searches only that path for the module.
             
             If the string specifies a relative path or a module name without a path, the method uses a standard search strategy to find the module; for more information, see the Remarks.
             
             If the method cannot find the module, the method fails. When specifying a path, be sure to use backslashes (\), not forward slashes (/). For more information about paths, see Naming a File or Directory.
             
             If the string specifies a module name without a path and the file name extension is omitted, the method appends the default library extension .dll to the module name. To prevent the method from appending .dll to the module name, include a trailing point character (.) in the module name string.</param>
             <returns>A <see cref="T:Microsoft.Win32.ModuleSafeHandle"/> object containing a handle to the loaded module.</returns>
             <exception cref="T:System.ArgumentNullException">The path parameter is null.</exception>
             <exception cref="T:System.IO.FileNotFoundException">The specified path does not exist.</exception>
             <exception cref="T:System.ComponentModel.Win32Exception">The native function returned an error.</exception>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.LoadLibrary(System.String,Microsoft.Win32.LoadLibraryOptions)">
             <summary>
             Loads the specified module into the address space of the calling process using the specified options. The specified module may cause other modules to be loaded.
             </summary>
             <param name="path">The name of the module. This can be either a library module (a .dll file) or an executable module (an .exe file). The name specified is the file name of the module and is not related to the name stored in the library module itself, as specified by the LIBRARY keyword in the module-definition (.def) file.
             
             If the string specifies a full path, the method searches only that path for the module.
             
             If the string specifies a relative path or a module name without a path, the method uses a standard search strategy to find the module; for more information, see the Remarks.
             
             If the method cannot find the module, the method fails. When specifying a path, be sure to use backslashes (\), not forward slashes (/). For more information about paths, see Naming a File or Directory.
             
             If the string specifies a module name without a path and the file name extension is omitted, the method appends the default library extension .dll to the module name. To prevent the method from appending .dll to the module name, include a trailing point character (.) in the module name string.</param>
             <param name="options">A <see cref="T:Microsoft.Win32.LoadLibraryOptions"/> object indication what options to use when loading the module.</param>
             <returns>A <see cref="T:Microsoft.Win32.ModuleSafeHandle"/> object containing a handle to the loaded module.</returns>
             <exception cref="T:System.ArgumentNullException">The path parameter is null.</exception>
             <exception cref="T:System.IO.FileNotFoundException">The specified path does not exist.</exception>
             <exception cref="T:System.ComponentModel.Win32Exception">The native function returned an error.</exception>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.RemoveDllDirectory(System.IntPtr)">
            <summary>
            Removes a directory that was added to the process DLL search path by using AddDllDirectory.
            </summary>
            <param name="cookie">The cookie returned by AddDllDirectory when the directory was added to the search path.</param>
            <exception cref="T:System.ArgumentException">The cookie parameter is IntPtr.Zero.</exception>
            <exception cref="T:System.ComponentModel.Win32Exception">The native function failed.</exception>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.SetDllDirectory(System.String)">
            <summary>
            Adds a directory to the search path used to locate DLLs for the application.
            </summary>
            <param name="path">The directory to be added to the search path. If this parameter is an empty string (""), the call removes the current directory from the default DLL search order. If this parameter is NULL, the function restores the default search order.</param>
            <exception cref="T:System.ArgumentNullException">The path parameter is null.</exception>
            <exception cref="T:System.IO.DirectoryNotFoundException">The specified path does not exist.</exception>
            <exception cref="T:System.ComponentModel.Win32Exception">The native function failed.</exception>
        </member>
        <member name="T:Microsoft.Win32.Kernel32.CopyProgressRoutine">
            <summary>
            An application-defined callback function used with the CopyFileEx, MoveFileTransacted, and MoveFileWithProgress functions. It is called when a portion of a copy or move operation is completed. The LPPROGRESS_ROUTINE type defines a pointer to this callback function. CopyProgressRoutine is a placeholder for the application-defined function name.
            </summary>
            <param name="TotalFileSize">The total size of the file, in bytes.</param>
            <param name="TotalBytesTransferred">The total number of bytes transferred from the source file to the destination file since the copy operation began.</param>
            <param name="StreamSize">The total size of the current file stream, in bytes.</param>
            <param name="StreamBytesTransferred">The total number of bytes in the current stream that have been transferred from the source file to the destination file since the copy operation began.</param>
            <param name="dwStreamNumber">A handle to the current stream. The first time CopyProgressRoutine is called, the stream number is 1.</param>
            <param name="dwCallbackReason">The reason that CopyProgressRoutine was called.</param>
            <param name="hSourceFile">A handle to the source file.</param>
            <param name="hDestinationFile">A handle to the destination file.</param>
            <param name="lpData">Argument passed to CopyProgressRoutine by CopyFileEx, MoveFileTransacted, or MoveFileWithProgress.</param>
            <returns>The CopyProgressRoutine function should return one of the following values.
            PROGRESS_CANCEL - Cancel the copy operation and delete the destination file.
            PROGRESS_CONTINUE - Continue the copy operation.
            PROGRESS_QUIET - Continue the copy operation, but stop invoking CopyProgressRoutine to report progress.
            PROGRESS_STOP - Stop the copy operation. It can be restarted at a later time.
            </returns>
            http://msdn.microsoft.com/en-us/library/windows/desktop/aa363854(v=vs.85).aspx
        </member>
        <member name="T:Microsoft.Win32.Kernel32.NativeMethods">
            <summary>
            Represents a class that contains method stubs for native calls.
            </summary>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.NativeMethods.AddDllDirectory(System.String)">
             <summary>
             Adds a directory to the process DLL search path.
             </summary>
             <param name="NewDirectory">An absolute path to the directory to add to the search path. For example, to add the directory Dir2 to the process DLL search path, specify \Dir2.</param>
             <returns>If the function succeeds, the return value is an opaque pointer that can be passed to RemoveDllDirectory to remove the DLL from the process DLL search path.
             
             If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.NativeMethods.CloseHandle(System.IntPtr)">
             <summary>
             Closes an open object handle.
             </summary>
             <param name="hObject">A valid handle to an open object.</param>
             <returns>If the function succeeds, the return value is nonzero.
             
             If the function fails, the return value is zero. To get extended error information, call GetLastError.
             
             If the application is running under a debugger, the function will throw an exception if it receives either a handle value that is not valid or a pseudo-handle value. This can happen if you close a handle twice, or if you call CloseHandle on a handle returned by the FindFirstFile function instead of calling the FindClose function.</returns>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.NativeMethods.CopyFileEx(System.String,System.String,Microsoft.Win32.Kernel32.CopyProgressRoutine,System.IntPtr,System.Boolean@,System.UInt32)">
             <summary>
             Copies an existing file to a new file, notifying the application of its progress through a callback function.
             </summary>
             <param name="lpExistingFileName">The name of an existing file.</param>
             <param name="lpNewFileName">The name of the new file.</param>
             <param name="lpProgressRoutine">The address of a callback function of type LPPROGRESS_ROUTINE that is called each time another portion of the file has been copied. This parameter can be NULL.</param>
             <param name="lpData">The argument to be passed to the callback function.</param>
             <param name="pbCancel">If this flag is set to TRUE during the copy operation, the operation is canceled. Otherwise, the copy operation will continue to completion.</param>
             <param name="dwCopyFlags">Flags that specify how the file is to be copied.</param>
             <returns>If the function succeeds, the return value is nonzero.
             
             If the function fails, the return value is zero. To get extended error information call GetLastError.
             
             If lpProgressRoutine returns PROGRESS_CANCEL due to the user canceling the operation, CopyFileEx will return zero and GetLastError will return ERROR_REQUEST_ABORTED. In this case, the partially copied destination file is deleted.
             
             If lpProgressRoutine returns PROGRESS_STOP due to the user stopping the operation, CopyFileEx will return zero and GetLastError will return ERROR_REQUEST_ABORTED. In this case, the partially copied destination file is left intact.</returns>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.NativeMethods.CreateSymbolicLink(System.String,System.String,System.UInt32)">
             <summary>
             Creates a symbolic link.
             </summary>
             <param name="lpSymlinkFileName">The symbolic link to be created.</param>
             <param name="lpTargetFileName">The name of the target for the symbolic link to be created.</param>
             <param name="dwFlags">Indicates whether the link target, lpTargetFileName, is a directory.</param>
             <returns>If the function succeeds, the return value is nonzero.
             
             If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.NativeMethods.FindClose(Microsoft.Win32.FindSafeHandle)">
             <summary>
             Closes a file search handle opened by the FindFirstFile, FindFirstFileEx, FindFirstFileNameW, FindFirstFileNameTransactedW, FindFirstFileTransacted, FindFirstStreamTransactedW, or FindFirstStreamW functions.
             </summary>
             <param name="hFindFile">The file search handle.</param>
             <returns>If the function succeeds, the return value is nonzero.
             
             If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.NativeMethods.FindFirstFile(System.String,Microsoft.Win32.WIN32_FIND_DATA@)">
             <summary>
             Searches a directory for a file or subdirectory with a name that matches a specific name (or partial name if wild cards are used).
             
             To specify additional attributes to use in a search, use the FindFirstFileEx function.
             
             To perform this operation as a transacted operation, use the FindFirstFileTransacted function.
             </summary>
             <param name="lpFileName">The directory or path, and the file name, which can include wild card characters, for example, an asterisk (*) or a question mark (?).
             
             This parameter should not be NULL, an invalid string (for example, an empty string or a string that is missing the terminating null character), or end in a trailing backslash (\).
             
             If the string ends with a wild card, period (.), or directory name, the user must have access permissions to the root and all subdirectories on the path.
             
             In the ANSI version of this function, the name is limited to MAX_PATH characters. To extend this limit to 32,767 wide characters, call the Unicode version of the function and prepend "\\?\" to the path. For more information, see Naming a File.</param>
             <param name="lpFindFileData">A pointer to the WIN32_FIND_DATA structure that receives information about a found file or directory.</param>
             <returns>If the function succeeds, the return value is a search handle used in a subsequent call to FindNextFile or FindClose, and the lpFindFileData parameter contains information about the first file or directory found.
             
             If the function fails or fails to locate files from the search string in the lpFileName parameter, the return value is INVALID_HANDLE_VALUE and the contents of lpFindFileData are indeterminate. To get extended error information, call the GetLastError function.
             
             If the function fails because no matching files can be found, the GetLastError function returns ERROR_FILE_NOT_FOUND.</returns>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.NativeMethods.FindNextFile(Microsoft.Win32.FindSafeHandle,Microsoft.Win32.WIN32_FIND_DATA@)">
             <summary>
             Continues a file search from a previous call to the FindFirstFile, FindFirstFileEx, or FindFirstFileTransacted functions.
             </summary>
             <param name="hFindFile">The search handle returned by a previous call to the FindFirstFile or FindFirstFileEx function.</param>
             <param name="lpFindFileData">A pointer to the WIN32_FIND_DATA structure that receives information about the found file or subdirectory.</param>
             <returns>If the function succeeds, the return value is nonzero and the lpFindFileData parameter contains information about the next file or directory found.
             
             If the function fails, the return value is zero and the contents of lpFindFileData are indeterminate. To get extended error information, call the GetLastError function.
             
             If the function fails because no more matching files can be found, the GetLastError function returns ERROR_NO_MORE_FILES.</returns>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.NativeMethods.FreeLibrary(Microsoft.Win32.ModuleSafeHandle)">
            <summary>
            Frees the loaded dynamic-link library (DLL) module and, if necessary, decrements its reference count. When the reference count reaches zero, the module is unloaded from the address space of the calling process and the handle is no longer valid.
            </summary>
            <param name="handle">A handle to the loaded library module. The LoadLibrary, LoadLibraryEx, GetModuleHandle, or GetModuleHandleEx function returns this handle.</param>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.NativeMethods.GetDllDirectory(System.UInt32,System.IntPtr)">
             <summary>
             Retrieves the application-specific portion of the search path used to locate DLLs for the application.
             </summary>
             <param name="nBufferLength">The size of the output buffer, in characters.</param>
             <param name="lpBuffer">A pointer to a buffer that receives the application-specific portion of the search path.</param>
             <returns>If the function succeeds, the return value is the length of the string copied to lpBuffer, in characters, not including the terminating null character. If the return value is greater than nBufferLength, it specifies the size of the buffer required for the path.
             
             If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.NativeMethods.GetProcAddress(Microsoft.Win32.ModuleSafeHandle,System.String)">
             <summary>
             Retrieves the address of an exported function or variable from the specified dynamic-link library (DLL).
             </summary>
             <param name="hModule">A handle to the DLL module that contains the function or variable. The LoadLibrary, LoadLibraryEx, LoadPackagedLibrary, or GetModuleHandle function returns this handle.
             
             The GetProcAddress function does not retrieve addresses from modules that were loaded using the LOAD_LIBRARY_AS_DATAFILE flag. For more information, see LoadLibraryEx.</param>
             <param name="lpProcName">The function or variable name, or the function's ordinal value. If this parameter is an ordinal value, it must be in the low-order word; the high-order word must be zero.</param>
             <returns>If the function succeeds, the return value is the address of the exported function or variable.
             
             If the function fails, the return value is NULL. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.NativeMethods.LoadLibrary(System.String)">
             <summary>
             Loads the specified module into the address space of the calling process. The specified module may cause other modules to be loaded.
             </summary>
             <param name="lpFileName">The name of the module. This can be either a library module (a .dll file) or an executable module (an .exe file). The name specified is the file name of the module and is not related to the name stored in the library module itself, as specified by the LIBRARY keyword in the module-definition (.def) file.
             
             If the string specifies a full path, the function searches only that path for the module.
             
             If the string specifies a relative path or a module name without a path, the function uses a standard search strategy to find the module; for more information, see the Remarks.
             
             If the function cannot find the module, the function fails. When specifying a path, be sure to use backslashes (\), not forward slashes (/). For more information about paths, see Naming a File or Directory.
             
             If the string specifies a module name without a path and the file name extension is omitted, the function appends the default library extension .dll to the module name. To prevent the function from appending .dll to the module name, include a trailing point character (.) in the module name string.</param>
             <returns>If the function succeeds, the return value is a handle to the module.
             
             If the function fails, the return value is NULL. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.NativeMethods.LoadLibraryEx(System.String,System.IntPtr,System.UInt32)">
             <summary>
             Loads the specified module into the address space of the calling process. The specified module may cause other modules to be loaded.
             </summary>
             <param name="lpFileName">A string that specifies the file name of the module to load. This name is not related to the name stored in a library module itself, as specified by the LIBRARY keyword in the module-definition (.def) file.
             
             The module can be a library module (a .dll file) or an executable module (an .exe file). If the specified module is an executable module, static imports are not loaded; instead, the module is loaded as if DONT_RESOLVE_DLL_REFERENCES was specified. See the dwFlags parameter for more information.
             
             If the string specifies a module name without a path and the file name extension is omitted, the function appends the default library extension .dll to the module name. To prevent the function from appending .dll to the module name, include a trailing point character (.) in the module name string.
             
             If the string specifies a fully qualified path, the function searches only that path for the module. When specifying a path, be sure to use backslashes (\), not forward slashes (/). For more information about paths, see Naming Files, Paths, and Namespaces.
             
             If the string specifies a module name without a path and more than one loaded module has the same base name and extension, the function returns a handle to the module that was loaded first.
             
             If the string specifies a module name without a path and a module of the same name is not already loaded, or if the string specifies a module name with a relative path, the function searches for the specified module. The function also searches for modules if loading the specified module causes the system to load other associated modules (that is, if the module has dependencies). The directories that are searched and the order in which they are searched depend on the specified path and the dwFlags parameter. For more information, see Remarks.
             
             If the function cannot find the module or one of its dependencies, the function fails.</param>
             <param name="hFile">This parameter is reserved for future use. It must be NULL.</param>
             <param name="dwFlags">The action to be taken when loading the module. If no flags are specified, the behavior of this function is identical to that of the LoadLibrary function.</param>
             <returns>If the function succeeds, the return value is a handle to the loaded module.
             
             If the function fails, the return value is NULL. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.NativeMethods.RemoveDllDirectory(System.IntPtr)">
             <summary>
             Removes a directory that was added to the process DLL search path by using AddDllDirectory.
             </summary>
             <param name="Cookie">The cookie returned by AddDllDirectory when the directory was added to the search path.</param>
             <returns>If the function succeeds, the return value is nonzero.
             
             If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:Microsoft.Win32.Kernel32.NativeMethods.SetDllDirectory(System.String)">
             <summary>
             Adds a directory to the search path used to locate DLLs for the application.
             </summary>
             <param name="lpPathName">The directory to be added to the search path. If this parameter is an empty string (""), the call removes the current directory from the default DLL search order. If this parameter is NULL, the function restores the default search order.</param>
             <returns>If the function succeeds, the return value is nonzero.
             
             If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="T:Microsoft.Win32.CopyFileProgressCallback">
            <summary>
            Specifies a method to call during process of a file copy.
            </summary>
            <param name="progress">A <see cref="T:Microsoft.Win32.CopyFileProgress"/> containing the status of the file copy.</param>
            <param name="userData">User specified data that was passed to the original copy method.</param>
            <returns>A <see cref="T:Microsoft.Win32.CopyFileProgressAction"/> value indicating if the file copy should be canceled.</returns>
        </member>
        <member name="T:Microsoft.Win32.CopyFileOptions">
            <summary>
            Indicates options to use when copying a file with the <see cref="M:Microsoft.Win32.Kernel32.CopyFile(System.String,System.String,Microsoft.Win32.CopyFileOptions,Microsoft.Win32.CopyFileProgressCallback,System.Object)"/> method.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.CopyFileOptions.None">
             <summary>
             
             </summary>
        </member>
        <member name="F:Microsoft.Win32.CopyFileOptions.FailIfExists">
            <summary>
            The copy operation fails immediately if the target file already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.CopyFileOptions.NoBuffering">
             <summary>
             The copy operation is performed using unbuffered I/O, bypassing system I/O cache resources. Recommended for very large file transfers.
             
             ! This value is not supported in Windows XP and Windows Server 2003 !
             </summary>
        </member>
        <member name="F:Microsoft.Win32.CopyFileOptions.Restartable">
            <summary>
            Progress of the copy is tracked in the target file in case the copy fails. The failed copy can be restarted at a later time by specifying the same values for lpExistingFileName and lpNewFileName as those used in the call that failed. This can significantly slow down the copy operation as the new file may be flushed multiple times during the copy operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.CopyFileOptions.OpenSourceForWrite">
            <summary>
            The file is copied and the original file is opened for write access.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.CopyFileOptions.AllowDecryptedDestination">
            <summary>
            An attempt to copy an encrypted file will succeed even if the destination copy cannot be encrypted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.CopyFileOptions.CopySymbolicLink">
             <summary>
             If the source file is a symbolic link, the destination file is also a symbolic link pointing to the same file that the source symbolic link is pointing to.
             
             ! This value is not supported in Windows XP and Windows Server 2003 !
             </summary>
        </member>
        <member name="T:Microsoft.Win32.CopyFileProgressAction">
            <summary>
            Indicates the action to take during copy file progress.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.CopyFileProgressAction.Continue">
            <summary>
            Indicates that CopyFileEx should continue the copy operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.CopyFileProgressAction.Cancel">
            <summary>
            Indicates that CopyFileEx should cancel the copy operation and delete the destination file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.CopyFileProgressAction.Stop">
            <summary>
            Indicates that CopyFileEx should stop the copy operation. It can be restarted at a later time.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.CopyFileProgressAction.Quiet">
            <summary>
            Indicates that CopyFileEx should continue the copy operation, but stop invoking CopyProgressRoutine to report progress.
            </summary>
        </member>
        <member name="T:Microsoft.Win32.CreateSymbolicLinkOption">
            <summary>
            Represents options of the <see cref="M:Microsoft.Win32.Kernel32.CreateSymbolicLink(System.String,System.String,Microsoft.Win32.CreateSymbolicLinkOption)"/> method.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.CreateSymbolicLinkOption.File">
            <summary>
            Indicates the link target is a file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.CreateSymbolicLinkOption.Directory">
            <summary>
            Indicates the link target is a directory.
            </summary>
        </member>
        <member name="T:Microsoft.Win32.LoadLibraryOptions">
            <summary>
            Represents options of the <see cref="M:Microsoft.Win32.Kernel32.LoadLibrary(System.String,Microsoft.Win32.LoadLibraryOptions)"/> method.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.LoadLibraryOptions.DoNotResolveDllReferences">
             <summary>
             Indicates the system should not call DllMain for process and thread initialization and termination. Also, the system does not load additional executable modules that are referenced by the specified module.
             
             Note: Do not use this value; it is provided only for backward compatibility. If you are planning to access only data or resources in the DLL, use <see cref="F:Microsoft.Win32.LoadLibraryOptions.LoadAsDatafileExclusive"/> or LOAD_LIBRARY_AS_IMAGE_RESOURCE or both. Otherwise, load the library as a DLL or executable module using the LoadLibrary function.
             </summary>
        </member>
        <member name="F:Microsoft.Win32.LoadLibraryOptions.IgnoreCodeAuthorizationLevel">
            <summary>
            Indicates the system should not check AppLocker rules or apply Software Restriction Policies for the DLL. This action applies only to the DLL being loaded and not to its dependencies. This value is recommended for use in setup programs that must run extracted DLLs during installation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.LoadLibraryOptions.LoadAsDatafile">
             <summary>
             Indicates the system should map the file into the calling process's virtual address space as if it were a data file. Nothing is done to execute or prepare to execute the mapped file. Therefore, you cannot call functions like GetModuleFileName, GetModuleHandle or GetProcAddress with this DLL. Using this value causes writes to read-only memory to raise an access violation. Use this flag when you want to load a DLL only to extract messages or resources from it.
             
             This value can be used with <see cref="F:Microsoft.Win32.LoadLibraryOptions.LoadAsImageResource"/>.
             </summary>
        </member>
        <member name="F:Microsoft.Win32.LoadLibraryOptions.LoadAsDatafileExclusive">
             <summary>
             Similar to <see cref="F:Microsoft.Win32.LoadLibraryOptions.LoadAsDatafile"/>, except that the DLL file is opened with exclusive write access for the calling process. Other processes cannot open the DLL file for write access while it is in use. However, the DLL can still be opened by other processes.
             
             This value can be used with <see cref="F:Microsoft.Win32.LoadLibraryOptions.LoadAsImageResource"/>.
             </summary>
        </member>
        <member name="F:Microsoft.Win32.LoadLibraryOptions.LoadAsImageResource">
             <summary>
             Indicates that the system should map the file into the process's virtual address space as an image file. However, the loader does not load the static imports or perform the other usual initialization steps. Use this flag when you want to load a DLL only to extract messages or resources from it. If forced integrity checking is desired for the loaded file then LOAD_LIBRARY_AS_IMAGE is recommended instead.
             
             Unless the application depends on the image layout, this value should be used with either <see cref="F:Microsoft.Win32.LoadLibraryOptions.LoadAsDatafileExclusive"/> or <see cref="F:Microsoft.Win32.LoadLibraryOptions.LoadAsDatafile"/>.
             </summary>
        </member>
        <member name="F:Microsoft.Win32.LoadLibraryOptions.SearchApplicationDirectory">
            <summary>
            Indicates the application's installation directory is searched for the DLL and its dependencies. Directories in the standard search path are not searched. This value cannot be combined with LOAD_WITH_ALTERED_SEARCH_PATH.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.LoadLibraryOptions.SearchDefaultDirectories">
             <summary>
             This value is a combination of LOAD_LIBRARY_SEARCH_APPLICATION_DIR, LOAD_LIBRARY_SEARCH_SYSTEM32, and LOAD_LIBRARY_SEARCH_USER_DIRS. Directories in the standard search path are not searched. This value cannot be combined with LOAD_WITH_ALTERED_SEARCH_PATH.
             
             This value represents the recommended maximum number of directories an application should include in its DLL search path.
             </summary>
        </member>
        <member name="F:Microsoft.Win32.LoadLibraryOptions.SearchDllLoadDirectory">
             <summary>
             Indicates that the directory that contains the DLL is temporarily added to the beginning of the list of directories that are searched for the DLL's dependencies. Directories in the standard search path are not searched.
             
             The lpFileName parameter must specify a fully qualified path. This value cannot be combined with LOAD_WITH_ALTERED_SEARCH_PATH.
             
             For example, if Lib2.dll is a dependency of C:\Dir1\Lib1.dll, loading Lib1.dll with this value causes the system to search for Lib2.dll only in C:\Dir1. To search for Lib2.dll in C:\Dir1 and all of the directories in the DLL search path, combine this value with LOAD_LIBRARY_DEFAULT_DIRS.
             </summary>
        </member>
        <member name="F:Microsoft.Win32.LoadLibraryOptions.SearchSystem32Directory">
            <summary>
            Indicates that %windows%\system32 should be searched for the DLL and its dependencies. Directories in the standard search path are not searched. This value cannot be combined with LOAD_WITH_ALTERED_SEARCH_PATH.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.LoadLibraryOptions.SearchUserDirectories">
            <summary>
            Indicates that directories added using the AddDllDirectory or the SetDllDirectory function are searched for the DLL and its dependencies. If more than one directory has been added, the order in which the directories are searched is unspecified. Directories in the standard search path are not searched. This value cannot be combined with LOAD_WITH_ALTERED_SEARCH_PATH.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.LoadLibraryOptions.UseAlternateSearchPath">
             <summary>
             Indicates that the system should use the alternate file search strategy to find associated executable modules that the specified module causes to be loaded. If this value is used and lpFileName specifies a relative path, the behavior is undefined.
             
             If this value is not used, or if lpFileName does not specify a path, the system uses the standard search strategy discussed in the Remarks section to find associated executable modules that the specified module causes to be loaded.
             
             This value cannot be combined with any LOAD_LIBRARY_SEARCH flag.
             </summary>
        </member>
        <member name="T:Microsoft.Win32.CopyFileProgressCallbackReason">
            <summary>
            Indicates the reason CopyProgressRoutine was called.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.CopyFileProgressCallbackReason.ChunkFinished">
            <summary>
            Another part of the data file was copied.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.CopyFileProgressCallbackReason.StreamSwitch">
            <summary>
            Another stream was created and is about to be copied. This is the callback reason given when the callback routine is first invoked.
            </summary>
        </member>
        <member name="T:Microsoft.Win32.NetError">
            <summary>
            Provides access to Network error codes.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_Success">
            <summary>
            The operation completed successfully.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NetNotStarted">
            <summary>
            The workstation driver is not installed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_UnknownServer">
            <summary>
            The server could not be located.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ShareMem">
            <summary>
            An internal error occurred. The network cannot access a shared memory segment.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NoNetworkResource">
            <summary>
            A network resource shortage occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RemoteOnly">
            <summary>
            This operation is not supported on workstations.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DevNotRedirected">
            <summary>
            The device is not connected.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ServerNotStarted">
            <summary>
            The Server service is not started.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ItemNotFound">
            <summary>
            The queue is empty.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_UnknownDevDir">
            <summary>
            The device or directory does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RedirectedPath">
            <summary>
            The operation is invalid on a redirected resource.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DuplicateShare">
            <summary>
            The name has already been shared.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NoRoom">
            <summary>
            The server is currently out of the requested resource.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_TooManyItems">
            <summary>
            Requested addition of items exceeds the maximum allowed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_InvalidMaxUsers">
            <summary>
            The Peer service supports only two simultaneous users.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BufTooSmall">
            <summary>
            The API return buffer is too small.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RemoteErr">
            <summary>
            A remote API error occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_LanmanIniError">
            <summary>
            An error occurred when opening or reading the configuration file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NetworkError">
            <summary>
            A general network error occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_WkstaInconsistentState">
            <summary>
            The Workstation service is in an inconsistent state. Restart the computer before restarting the Workstation service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_WkstaNotStarted">
            <summary>
            The Workstation service has not been started.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BrowserNotStarted">
            <summary>
            The requested information is not available.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_InternalError">
            <summary>
            An internal error occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BadTransactConfig">
            <summary>
            The server is not configured for transactions.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_InvalidAPI">
            <summary>
            The requested API is not supported on the remote server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BadEventName">
            <summary>
            The event name is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DupNameReboot">
            <summary>
            The computer name already exists on the network. Change it and restart the computer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_CfgCompNotFound">
            <summary>
            The specified component could not be found in the configuration information.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_CfgParamNotFound">
            <summary>
            The specified parameter could not be found in the configuration information.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_LineTooLong">
            <summary>
            A line in the configuration file is too long.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_QNotFound">
            <summary>
            The printer does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_JobNotFound">
            <summary>
            The print job does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DestNotFound">
            <summary>
            The printer destination cannot be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DestExists">
            <summary>
            The printer destination already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_QExists">
            <summary>
            The printer queue already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_QNoRoom">
            <summary>
            No more printers can be added.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_JobNoRoom">
            <summary>
            No more print jobs can be added.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DestNoRoom">
            <summary>
            No more printer destinations can be added.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DestIdle">
            <summary>
            This printer destination is idle and cannot accept control operations.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DestInvalidOp">
            <summary>
            This printer destination request contains an invalid control function.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ProcNoRespond">
            <summary>
            The print processor is not responding.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_SpoolerNotLoaded">
            <summary>
            The spooler is not running.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DestInvalidState">
            <summary>
            This operation cannot be performed on the print destination in its current state.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_QinvalidState">
            <summary>
            This operation cannot be performed on the printer queue in its current state.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_JobInvalidState">
            <summary>
            This operation cannot be performed on the print job in its current state.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_SpoolNoMemory">
            <summary>
            A spooler memory allocation failure occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DriverNotFound">
            <summary>
            The device driver does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DataTypeInvalid">
            <summary>
            The data type is not supported by the print processor.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ProcNotFound">
            <summary>
            The print processor is not installed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ServiceTableLocked">
            <summary>
            The service database is locked.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ServiceTableFull">
            <summary>
            The service table is full.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ServiceInstalled">
            <summary>
            The requested service has already been started.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ServiceEntryLocked">
            <summary>
            The service does not respond to control actions.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ServiceNotInstalled">
            <summary>
            The service has not been started.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BadServiceName">
            <summary>
            The service name is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ServiceCtlTimeout">
            <summary>
            The service is not responding to the control function.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ServiceCtlBusy">
            <summary>
            The service control is busy.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BadServiceProgName">
            <summary>
            The configuration file contains an invalid service program name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ServiceNotCtrl">
            <summary>
            The service could not be controlled in its present state.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ServiceKillProc">
            <summary>
            The service ended abnormally.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ServiceCtlNotValid">
            <summary>
            The requested pause or stop is not valid for this service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NotInDispatchTbl">
            <summary>
            The service control dispatcher could not find the service name in the dispatch table.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BadControlRecv">
            <summary>
            The service control dispatcher pipe read failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ServiceNotStarting">
            <summary>
            A thread for the new service could not be created.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_AlreadyLoggedOn">
            <summary>
            This workstation is already logged on to the local-area network.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NotLoggedOn">
            <summary>
            The workstation is not logged on to the local-area network.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BadUsername">
            <summary>
            The user name or group name parameter is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BadPassword">
            <summary>
            The password parameter is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_UnableToAddName_W">
            <summary>
            @W The logon processor did not add the message alias.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_UnableToAddName_F">
            <summary>
            The logon processor did not add the message alias.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_UnableToDelName_W">
            <summary>
            @W The logoff processor did not delete the message alias.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_UnableToDelName_F">
            <summary>
            The logoff processor did not delete the message alias.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_LogonsPaused">
            <summary>
            Network logons are paused.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_LogonServerConflict">
            <summary>
            A centralized logon-server conflict occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_LogonNoUserPath">
            <summary>
            The server is configured without a valid user path.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_LogonScriptError">
            <summary>
            An error occurred while loading or running the logon script.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_StandaloneLogon">
            <summary>
            The logon server was not specified. Your computer will be logged on as STANDALONE.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_LogonServerNotFound">
            <summary>
            The logon server could not be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_LogonDomainExists">
            <summary>
            There is already a logon domain for this computer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NonValidatedLogon">
            <summary>
            The logon server could not validate the logon.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ACFNotFound">
            <summary>
            The security database could not be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_GroupNotFound">
            <summary>
            The group name could not be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_UserNotFound">
            <summary>
            The user name could not be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ResourceNotFound">
            <summary>
            The resource name could not be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_GroupExists">
            <summary>
            The group already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_UserExists">
            <summary>
            The user account already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ResourceExists">
            <summary>
            The resource permission list already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NotPrimary">
            <summary>
            This operation is only allowed on the primary domain controller of the domain.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ACFNotLoaded">
            <summary>
            The security database has not been started.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ACFNoRoom">
            <summary>
            There are too many names in the user accounts database.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ACFFileIOFail">
            <summary>
            A disk I/O failure occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ACFTooManyLists">
            <summary>
            The limit of 64 entries per resource was exceeded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_UserLogon">
            <summary>
            Deleting a user with a session is not allowed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ACFNoParent">
            <summary>
            The parent directory could not be located.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_CanNotGrowSegment">
            <summary>
            Unable to add to the security database session cache segment.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_SpeGroupOp">
            <summary>
            This operation is not allowed on this special group.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NotInCache">
            <summary>
            This user is not cached in user accounts database session cache.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_UserInGroup">
            <summary>
            The user already belongs to this group.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_UserNotInGroup">
            <summary>
            The user does not belong to this group.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_AccountUndefined">
            <summary>
            This user account is undefined.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_AccountExpired">
            <summary>
            This user account has expired.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_InvalidWorkstation">
            <summary>
            The user is not allowed to log on from this workstation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_InvalidLogonHours">
            <summary>
            The user is not allowed to log on at this time.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_PasswordExpired">
            <summary>
            The password of this user has expired.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_PasswordCantChange">
            <summary>
            The password of this user cannot change.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_PasswordHistConflict">
            <summary>
            This password cannot be used now.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_PasswordTooShort">
            <summary>
            The password does not meet the password policy requirements. Check the minimum password length, password complexity and password history requirements.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_PasswordTooRecent">
            <summary>
            The password of this user is too recent to change.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_InvalidDatabase">
            <summary>
            The security database is corrupted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DatabaseUpToDate">
            <summary>
            No updates are necessary to this replicant network/local security database.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_SyncRequired">
            <summary>
            This replicant database is outdated; synchronization is required.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_UseNotFound">
            <summary>
            The network connection could not be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BadAsgType">
            <summary>
            This asg_type is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DeviceIsShared">
            <summary>
            This device is currently being shared.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NoComputerName">
            <summary>
            The computer name could not be added as a message alias. The name may already exist on the network.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_MsgAlreadyStarted">
            <summary>
            The Messenger service is already started.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_MsgInitFailed">
            <summary>
            The Messenger service failed to start.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NameNotFound">
            <summary>
            The message alias could not be found on the network.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_AlreadyForwarded">
            <summary>
            This message alias has already been forwarded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_AddForwarded">
            <summary>
            This message alias has been added but is still forwarded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_AlreadyExists">
            <summary>
            This message alias already exists locally.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_TooManyNames">
            <summary>
            The maximum number of added message aliases has been exceeded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DelComputerName">
            <summary>
            The computer name could not be deleted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_LocalForward">
            <summary>
            Messages cannot be forwarded back to the same workstation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_GrpMsgProcessor">
            <summary>
            An error occurred in the domain message processor.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_PausedRemote">
            <summary>
            The message was sent, but the recipient has paused the Messenger service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BadReceive">
            <summary>
            The message was sent but not received.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NameInUse">
            <summary>
            The message alias is currently in use. Try again later.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_MsgNotStarted">
            <summary>
            The Messenger service has not been started.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NotLocalName">
            <summary>
            The name is not on the local computer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NoForwardName">
            <summary>
            The forwarded message alias could not be found on the network.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RemoteFull">
            <summary>
            The message alias table on the remote station is full.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NameNotForwarded">
            <summary>
            Messages for this alias are not currently being forwarded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_TruncatedBroadcast">
            <summary>
            The broadcast message was truncated.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_InvalidDevice">
            <summary>
            This is an invalid device name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_WriteFault">
            <summary>
            A write fault occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DuplicateName">
            <summary>
            A duplicate message alias exists on the network.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DeleteLater">
            <summary>
            @W This message alias will be deleted later.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_IncompleteDel">
            <summary>
            The message alias was not successfully deleted from all networks.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_MultipleNets">
            <summary>
            This operation is not supported on computers with multiple networks.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NetNameNotFound">
            <summary>
            This shared resource does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DeviceNotShared">
            <summary>
            This device is not shared.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ClientNameNotFound">
            <summary>
            A session does not exist with that computer name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_FileIdNotFound">
            <summary>
            There is not an open file with that identification number.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ExecFailure">
            <summary>
            A failure occurred when executing a remote administration command.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_TmpFile">
            <summary>
            A failure occurred when opening a remote temporary file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_TooMuchData">
            <summary>
            The data returned from a remote administration command has been truncated to 64K.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DeviceShareConflict">
            <summary>
            This device cannot be shared as both a spooled and a non-spooled resource.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BrowserTableIncomplete">
            <summary>
            The information in the list of servers may be incorrect.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NotLocalDomain">
            <summary>
            The computer is not active in this domain.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_IsDfsShare">
            <summary>
            The share must be removed from the Distributed File System before it can be deleted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DevInvalidOpCode">
            <summary>
            The operation is invalid for this device.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DevNotFound">
            <summary>
            This device cannot be shared.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DevNotOpen">
            <summary>
            This device was not open.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BadQueueDevString">
            <summary>
            This device name list is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BadQueuePriority">
            <summary>
            The queue priority is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NoCommDevs">
            <summary>
            There are no shared communication devices.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_QueueNotFound">
            <summary>
            The queue you specified does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BadDevString">
            <summary>
            This list of devices is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BadDev">
            <summary>
            The requested device is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_InUseBySpooler">
            <summary>
            This device is already in use by the spooler.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_CommDevInUse">
            <summary>
            This device is already in use as a communication device.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_InvalidComputer">
            <summary>
            This computer name is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_MaxLenExceeded">
            <summary>
            The string and prefix specified are too long.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BadComponent">
            <summary>
            This path component is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_CantType">
            <summary>
            Could not determine the type of input.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_TooManyEntries">
            <summary>
            The buffer for types is not big enough.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ProfileFileTooBig">
            <summary>
            Profile files cannot exceed 64K.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ProfileOffset">
            <summary>
            The start offset is out of range.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ProfileCleanup">
            <summary>
            The system cannot delete current connections to network resources.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ProfileUnknownCmd">
            <summary>
            The system was unable to parse the command line in this file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ProfileLoadErr">
            <summary>
            An error occurred while loading the profile file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ProfileSaveErr">
            <summary>
            @W Errors occurred while saving the profile file. The profile was partially saved.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_LogOverflow">
            <summary>
            Log file %1 is full.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_LogFileChanged">
            <summary>
            This log file has changed between reads.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_LogFileCorrupt">
            <summary>
            Log file %1 is corrupt.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_SourceIsDir">
            <summary>
            The source path cannot be a directory.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BadSource">
            <summary>
            The source path is illegal.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BadDest">
            <summary>
            The destination path is illegal.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DifferentServers">
            <summary>
            The source and destination paths are on different servers.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RunSrvPaused">
            <summary>
            The Run server you requested is paused.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ErrCommRunSrv">
            <summary>
            An error occurred when communicating with a Run server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ErrorExecingGhost">
            <summary>
            An error occurred when starting a background process.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ShareNotFound">
            <summary>
            The shared resource you are connected to could not be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_InvalidLana">
            <summary>
            The LAN adapter number is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_OpenFiles">
            <summary>
            There are open files on the connection.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ActiveConns">
            <summary>
            Active connections still exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BadPasswordCore">
            <summary>
            This share name or password is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DevInUse">
            <summary>
            The device is being accessed by an active process.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_LocalDrive">
            <summary>
            The drive letter is in use locally.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_AlertExists">
            <summary>
            The specified client is already registered for the specified event.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_TooManyAlerts">
            <summary>
            The alert table is full.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NoSuchAlert">
            <summary>
            An invalid or nonexistent alert name was raised.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BadRecipient">
            <summary>
            The alert recipient is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_AcctLimitExceeded">
            <summary>
            A user's session with this server has been deleted
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_InvalidLogSeek">
            <summary>
            The log file does not contain the requested record number.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BadUasConfig">
            <summary>
            The user accounts database is not configured correctly.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_InvalidUASOp">
            <summary>
            This operation is not permitted when the Netlogon service is running.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_LastAdmin">
            <summary>
            This operation is not allowed on the last administrative account.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DCNotFound">
            <summary>
            Could not find domain controller for this domain.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_LogonTrackingError">
            <summary>
            Could not set logon information for this user.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NetlogonNotStarted">
            <summary>
            The Netlogon service has not been started.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_CanNotGrowUASFile">
            <summary>
            Unable to add to the user accounts database.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_TimeDiffAtDC">
            <summary>
            This server's clock is not synchronized with the primary domain controller's clock.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_PasswordMismatch">
            <summary>
            A password mismatch has been detected.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NoSuchServer">
            <summary>
            The server identification does not specify a valid server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NoSuchSession">
            <summary>
            The session identification does not specify a valid session.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NoSuchConnection">
            <summary>
            The connection identification does not specify a valid connection.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_TooManyServers">
            <summary>
            There is no space for another entry in the table of available servers.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_TooManySessions">
            <summary>
            The server has reached the maximum number of sessions it supports.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_TooManyConnections">
            <summary>
            The server has reached the maximum number of connections it supports.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_TooManyFiles">
            <summary>
            The server cannot open more files because it has reached its maximum number.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NoAlternateServers">
            <summary>
            There are no alternate servers registered on this server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_TryDownLevel">
            <summary>
            Try down-level (remote admin protocol) version of API instead.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_UPSDriverNotStarted">
            <summary>
            The UPS driver could not be accessed by the UPS service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_UPSInvalidConfig">
            <summary>
            The UPS service is not configured correctly.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_UPSInvalidCommPort">
            <summary>
            The UPS service could not access the specified Comm Port.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_UPSSignalAsserted">
            <summary>
            The UPS indicated a line fail or low battery situation. Service not started.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_UPSShutdownFailed">
            <summary>
            The UPS service failed to perform a system shut down.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BadDosRetCode">
            <summary>
            The program below returned an MS-DOS error code:
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ProgNeedsExtraMem">
            <summary>
            The program below needs more memory:
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BadDosFunction">
            <summary>
            The program below called an unsupported MS-DOS function:
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RemoteBootFailed">
            <summary>
            The workstation failed to boot.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BadFileCheckSum">
            <summary>
            The file below is corrupt.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NoRplBootSystem">
            <summary>
            No loader is specified in the boot-block definition file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplLoadrNetBiosErr">
            <summary>
            NetBIOS returned an error: The NCB and SMB are dumped above.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplLoadrDiskErr">
            <summary>
            A disk I/O error occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ImageParamErr">
            <summary>
            Image parameter substitution failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_TooManyImageParams">
            <summary>
            Too many image parameters cross disk sector boundaries.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NonDosFloppyUsed">
            <summary>
            The image was not generated from an MS-DOS diskette formatted with /S.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplBootRestart">
            <summary>
            Remote boot will be restarted later.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplSrvrCallFailed">
            <summary>
            The call to the Remoteboot server failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_CantConnectRplSrvr">
            <summary>
            Cannot connect to the Remoteboot server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_CantOpenImageFile">
            <summary>
            Cannot open image file on the Remoteboot server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_CallingRplSrvr">
            <summary>
            Connecting to the Remoteboot server...
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_StartingRplBoot">
            <summary>
            Connecting to the Remoteboot server...
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplBootServiceTerm">
            <summary>
            Remote boot service was stopped; check the error log for the cause of the problem.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplBootStartFailed">
            <summary>
            Remote boot startup failed; check the error log for the cause of the problem.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RPL_CONNECTED">
            <summary>
            A second connection to a Remoteboot resource is not allowed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BrowserConfiguredToNotRun">
            <summary>
            The browser service was configured with MaintainServerList=No.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplNoAdaptersStarted">
            <summary>
            Service failed to start since none of the network adapters started with this service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplBadRegistry">
            <summary>
            Service failed to start due to bad startup information in the registry.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplBadDatabase">
            <summary>
            Service failed to start because its database is absent or corrupt.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplRplfilesShare">
            <summary>
            Service failed to start because RPLFILES share is absent.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplNotRplServer">
            <summary>
            Service failed to start because RPLUSER group is absent.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplCannotEnum">
            <summary>
            Cannot enumerate service records.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplWkstaInfoCorrupted">
            <summary>
            Workstation record information has been corrupted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplWkstaNotFound">
            <summary>
            Workstation record was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplWkstaNameUnavailable">
            <summary>
            Workstation name is in use by some other workstation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplProfileInfoCorrupted">
            <summary>
            Profile record information has been corrupted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplProfileNotFound">
            <summary>
            Profile record was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplProfileNameUnavailable">
            <summary>
            Profile name is in use by some other profile.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplProfileNotEmpty">
            <summary>
            There are workstations using this profile.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplConfigInfoCorrupted">
            <summary>
            Configuration record information has been corrupted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplConfigNotFound">
            <summary>
            Configuration record was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplAdapterInfoCorrupted">
            <summary>
            Adapter ID record information has been corrupted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplInternal">
            <summary>
            An internal service error has occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplVendorInfoCorrupted">
            <summary>
            Vendor ID record information has been corrupted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplBootInfoCorrupted">
            <summary>
            Boot block record information has been corrupted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplWkstaNeedsUserAcct">
            <summary>
            The user account for this workstation record is missing.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplNeedsRPLUSERAcct">
            <summary>
            The RPLUSER local group could not be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplBootNotFound">
            <summary>
            Boot block record was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplIncompatibleProfile">
            <summary>
            Chosen profile is incompatible with this workstation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplAdapterNameUnavailable">
            <summary>
            Chosen network adapter ID is in use by some other workstation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplConfigNotEmpty">
            <summary>
            There are profiles using this configuration.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplBootInUse">
            <summary>
            There are workstations, profiles, or configurations using this boot block.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplBackupDatabase">
            <summary>
            Service failed to backup Remoteboot database.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplAdapterNotFound">
            <summary>
            Adapter record was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplVendorNotFound">
            <summary>
            Vendor record was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplVendorNameUnavailable">
            <summary>
            Vendor name is in use by some other vendor record.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplBootNameUnavailable">
            <summary>
            (boot name, vendor ID) is in use by some other boot block record.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_RplConfigNameUnavailable">
            <summary>
            Configuration name is in use by some other configuration.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DfsInternalCorruption">
            <summary>
            The internal database maintained by the Dfs service is corrupt.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DfsVolumeDataCorrupt">
            <summary>
            One of the records in the internal Dfs database is corrupt.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DfsNoSuchVolume">
            <summary>
            There is no DFS name whose entry path matches the input Entry Path.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DfsVolumeAlreadyExists">
            <summary>
            A root or link with the given name already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DfsAlreadyShared">
            <summary>
            The server share specified is already shared in the Dfs.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DfsNoSuchShare">
            <summary>
            The indicated server share does not support the indicated DFS namespace.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DfsNotALeafVolume">
            <summary>
            The operation is not valid on this portion of the namespace.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DfsLeafVolume">
            <summary>
            The operation is not valid on this portion of the namespace.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DfsVolumeHasMultipleServers">
            <summary>
            The operation is ambiguous because the link has multiple servers.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DfsCantCreateJunctionPoint">
            <summary>
            Unable to create a link.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DfsServerNotDfsAware">
            <summary>
            The server is not Dfs Aware.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DfsBadRenamePath">
            <summary>
            The specified rename target path is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DfsVolumeIsOffline">
            <summary>
            The specified DFS link is offline.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DfsNoSuchServer">
            <summary>
            The specified server is not a server for this link.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DfsCyclicalName">
            <summary>
            A cycle in the Dfs name was detected.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DfsNotSupportedInServerDfs">
            <summary>
            The operation is not supported on a server-based Dfs.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DfsDuplicateService">
            <summary>
            This link is already supported by the specified server-share.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DfsCantRemoveLastServerShare">
            <summary>
            Can't remove the last server-share supporting this root or link.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DfsVolumeIsInterDfs">
            <summary>
            The operation is not supported for an Inter-DFS link.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DfsInconsistent">
            <summary>
            The internal state of the Dfs Service has become inconsistent.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DfsServerUpgraded">
            <summary>
            The Dfs Service has been installed on the specified server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DfsDataIsIdentical">
            <summary>
            The Dfs data being reconciled is identical.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DfsCantRemoveDfsRoot">
            <summary>
            The DFS root cannot be deleted. Uninstall DFS if required.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DfsChildOrParentInDfs">
            <summary>
            A child or parent directory of the share is already in a Dfs.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DfsInternalError">
            <summary>
            Dfs internal error.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_SetupAlreadyJoined">
            <summary>
            This computer is already joined to a domain.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_SetupNotJoined">
            <summary>
            This computer is not currently joined to a domain.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_SetupDomainController">
            <summary>
            This computer is a domain controller and cannot be unjoined from a domain.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_DefaultJoinRequired">
            <summary>
            The destination domain controller does not support creating machine accounts in OUs.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_InvalidWorkgroupName">
            <summary>
            The specified workgroup name is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NameUsesIncompatibleCodePage">
            <summary>
            The specified computer name is incompatible with the default language used on the domain controller.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ComputerAccountNotFound">
            <summary>
            The specified computer account could not be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_PersonalSku">
            <summary>
            This version of Windows cannot be joined to a domain.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_PasswordMustChange">
            <summary>
            The password must change at the next logon.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_AccountLockedOut">
            <summary>
            The account is locked out.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_PasswordTooLong">
            <summary>
            The password is too long.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_PasswordNotComplexEnough">
            <summary>
            The password does not meet the complexity policy.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_PasswordFilterError">
            <summary>
            The password does not meet the requirements of the password filter DLLs.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NoOfflineJoinInfo">
            <summary>
            The offline join completion information was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BadOfflineJoinInfo">
            <summary>
            The offline join completion information was bad.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_CantCreateJoinInfo">
            <summary>
            Unable to create offline join information. Please ensure you have access to the specified path location and permissions to modify its contents. Running as an elevated administrator may be required.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_BadDomainJoinInfo">
            <summary>
            The domain join info being saved was incomplete or bad.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_JoinPerformedMustRestart">
            <summary>
            Offline join operation successfully completed but a restart is needed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_NoJoinPending">
            <summary>
            There was no offline join operation pending.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ValuesNotSet">
            <summary>
            Unable to set one or more requested machine or domain name values on the local computer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_CantVerifyHostname">
            <summary>
            Could not verify the current machine's hostname against the saved value in the join completion information.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_CantLoadOfflineHive">
            <summary>
            Unable to load the specified offline registry hive. Please ensure you have access to the specified path location and permissions to modify its contents. Running as an elevated administrator may be required.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ConnectionInsecure">
            <summary>
            The minimum session security requirements for this operation were not met.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.NetError.NERR_ProvisioningBlobUnsupported">
            <summary>
            Computer account provisioning blob version is not supported.
            </summary>
        </member>
        <member name="T:Microsoft.Win32.ServiceConfig">
            <summary>
            Represents the configuration of a service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.ServiceConfig._dependencies">
            <summary>
            The parsed dependencies.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.ServiceConfig._serviceConfig">
            <summary>
            The native struct containing the information.
            </summary>
        </member>
        <member name="M:Microsoft.Win32.ServiceConfig.#ctor(Microsoft.Win32.AdvApi32.QUERY_SERVICE_CONFIG)">
            <summary>
            Initializes a new instance of the ServiceConfig class.
            </summary>
            <param name="serviceConfig">A native <see cref="T:Microsoft.Win32.AdvApi32.QUERY_SERVICE_CONFIG"/> struct containing the service configuration.</param>
        </member>
        <member name="P:Microsoft.Win32.ServiceConfig.BinaryPath">
            <summary>
            Gets the path to the binary that hosts the service.
            </summary>
        </member>
        <member name="P:Microsoft.Win32.ServiceConfig.Dependencies">
            <summary>
            Gets a list of dependencies the service has, if any.
            </summary>
        </member>
        <member name="P:Microsoft.Win32.ServiceConfig.DisplayName">
            <summary>
            Gets the display name of the service.
            </summary>
        </member>
        <member name="P:Microsoft.Win32.ServiceConfig.ErrorControl">
            <summary>
            Gets the severity of the error, and action taken, if this service fails to start.
            </summary>
        </member>
        <member name="P:Microsoft.Win32.ServiceConfig.LoadOrderGroup">
            <summary>
            Gets the load order group of the service.
            </summary>
        </member>
        <member name="P:Microsoft.Win32.ServiceConfig.ServiceType">
            <summary>
            Gets the type of the service.
            </summary>
        </member>
        <member name="P:Microsoft.Win32.ServiceConfig.StartMode">
            <summary>
            Gets a value indicating when the service starts.
            </summary>
        </member>
        <member name="P:Microsoft.Win32.ServiceConfig.StartName">
            <summary>
            Gets the name of the user the service runs as or the driver object name which the input and output (I/O) system uses to load the device driver.
            </summary>
        </member>
        <member name="P:Microsoft.Win32.ServiceConfig.TagId">
            <summary>
            Gets a unique tag for the service.
            </summary>
        </member>
        <member name="T:Microsoft.Win32.FILETIME">
            <summary>
            Contains a 64-bit value representing the number of 100-nanosecond intervals since January 1, 1601 (UTC).
            </summary>
        </member>
        <member name="F:Microsoft.Win32.FILETIME.dwLowDateTime">
            <summary>
            The low-order part of the file time.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.FILETIME.dwHighDateTime">
            <summary>
            The high-order part of the file time.
            </summary>
        </member>
        <member name="M:Microsoft.Win32.FILETIME.#ctor(System.DateTime)">
            <summary>
            Creates a new instance of the FILETIME struct.
            </summary>
            <param name="dateTime">A <see cref="T:System.DateTime"/> object to copy data from.</param>
        </member>
        <member name="M:Microsoft.Win32.FILETIME.op_Implicit(Microsoft.Win32.FILETIME)~System.DateTime">
            <summary>
            Converts a <see cref="T:Microsoft.Win32.FILETIME"/> to a <see cref="T:System.DateTime"/>
            </summary>
        </member>
        <member name="M:Microsoft.Win32.FILETIME.op_Implicit(System.DateTime)~Microsoft.Win32.FILETIME">
            <summary>
            Converts a <see cref="T:System.DateTime"/> to a <see cref="T:Microsoft.Win32.FILETIME"/>.
            </summary>
        </member>
        <member name="M:Microsoft.Win32.FILETIME.ToDateTime">
            <summary>
            Gets the current FILETIME as a <see cref="T:System.DateTime"/> object.
            </summary>
            <returns>A <see cref="T:System.DateTime"/> object that represents the FILETIME.</returns>
        </member>
        <member name="M:Microsoft.Win32.FILETIME.ToString">
            <summary>
            Converts the value of the current FILETIME object to its equivalent string representation.
            </summary>
            <returns>A string representation of value of the current FILETIME object</returns>
            <exception cref="T:System.ArgumentOutOfRangeException">The date and time is outside the range of dates supported by the calendar used by the current culture.</exception>
        </member>
        <member name="M:Microsoft.Win32.FILETIME.ToString(System.IFormatProvider)">
            <summary>
            Converts the value of the current FILETIME object to its equivalent string representation using the specified culture-specific format information.
            </summary>
            <param name="provider">An object that supplies culture-specific formatting information.</param>
            <returns>A string representation of value of the current FILETIME object as specified by provider.</returns>
            <exception cref="T:System.ArgumentOutOfRangeException">The date and time is outside the range of dates supported by the calendar used by provider.</exception>
        </member>
        <member name="M:Microsoft.Win32.FILETIME.ToString(System.String)">
            <summary>
            Converts the value of the current DateTime object to its equivalent string representation using the specified format.
            </summary>
            <param name="format">A standard or custom date and time format string.</param>
            <returns>A string representation of value of the current DateTime object as specified by format.</returns>
            <exception cref="T:System.FormatException">The length of format is 1, and it is not one of the format specifier characters defined for DateTimeFormatInfo.
            -or-
            format does not contain a valid custom format pattern.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">The date and time is outside the range of dates supported by the calendar used by the current culture.</exception>
        </member>
        <member name="M:Microsoft.Win32.FILETIME.ToString(System.String,System.IFormatProvider)">
            <summary>
            Converts the value of the current DateTime object to its equivalent string representation using the specified format and culture-specific format information.
            </summary>
            <param name="format">A standard or custom date and time format string.</param>
            <param name="provider">An object that supplies culture-specific formatting information.</param>
            <returns>A string representation of value of the current DateTime object as specified by format and provider.</returns>
            <exception cref="T:System.FormatException">The length of format is 1, and it is not one of the format specifier characters defined for DateTimeFormatInfo.
            -or-
            format does not contain a valid custom format pattern.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">The date and time is outside the range of dates supported by the calendar used by the current culture.</exception>
        </member>
        <member name="T:Microsoft.Win32.SECURITY_DESCRIPTOR">
            <summary>
            Represents a security descriptor.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.SECURITY_DESCRIPTOR.Revision">
            <summary>
             
            </summary>
        </member>
        <member name="F:Microsoft.Win32.SECURITY_DESCRIPTOR.Sbz1">
            <summary>
             
            </summary>
        </member>
        <member name="F:Microsoft.Win32.SECURITY_DESCRIPTOR.Control">
            <summary>
             
            </summary>
        </member>
        <member name="F:Microsoft.Win32.SECURITY_DESCRIPTOR.Owner">
            <summary>
             
            </summary>
        </member>
        <member name="F:Microsoft.Win32.SECURITY_DESCRIPTOR.Group">
            <summary>
             
            </summary>
        </member>
        <member name="F:Microsoft.Win32.SECURITY_DESCRIPTOR.Sacl">
            <summary>
             
            </summary>
        </member>
        <member name="F:Microsoft.Win32.SECURITY_DESCRIPTOR.Dacl">
            <summary>
             
            </summary>
        </member>
        <member name="T:Microsoft.Win32.SYSTEMTIME">
            <summary>
            Specifies a date and time, using individual members for the month, day, year, weekday, hour, minute, second, and millisecond. The time is either in coordinated universal time (UTC) or local time, depending on the function that is being called.
            </summary>
            <remarks>It is not recommended that you add and subtract values from the SYSTEMTIME structure to obtain relative times. Instead, you should
            <list type="bullet">
                <item><description>Convert the SYSTEMTIME structure to a FILETIME structure.</description></item>
                <item><description>Copy the resulting FILETIME structure to a ULARGE_INTEGER structure.</description></item>
                <item><description>Use normal 64-bit arithmetic on the ULARGE_INTEGER value.</description></item>
            </list>
            The system can periodically refresh the time by synchronizing with a time source. Because the system time can be adjusted either forward or backward, do not compare system time readings to determine elapsed time. Instead, use one of the methods described in Windows Time.</remarks>
            <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms724950(v=vs.85).aspx"/>
            <![CDATA[typedef struct _SYSTEMTIME {
            WORD wYear;
              WORD wMonth;
              WORD wDayOfWeek;
              WORD wDay;
              WORD wHour;
              WORD wMinute;
              WORD wSecond;
              WORD wMilliseconds;
            } SYSTEMTIME, *PSYSTEMTIME;]]>
        </member>
        <member name="F:Microsoft.Win32.SYSTEMTIME.wYear">
            <summary>
            The year. The valid values for this member are 1601 through 30827.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.SYSTEMTIME.wMonth">
            <summary>
            The month. January = 1 and December = 12
            </summary>
        </member>
        <member name="F:Microsoft.Win32.SYSTEMTIME.wDayOfWeek">
            <summary>
            The day of the week. Sunday = 0 and Saturday = 6
            </summary>
        </member>
        <member name="F:Microsoft.Win32.SYSTEMTIME.wDay">
            <summary>
            The day of the month. The valid values for this member are 1 through 31.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.SYSTEMTIME.wHour">
            <summary>
            The hour. The valid values for this member are 0 through 23.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.SYSTEMTIME.wMinute">
            <summary>
            The minute. The valid values for this member are 0 through 59.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.SYSTEMTIME.wSecond">
            <summary>
            The second. The valid values for this member are 0 through 59.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.SYSTEMTIME.wMilliseconds">
            <summary>
            The millisecond. The valid values for this member are 0 through 999.
            </summary>
        </member>
        <member name="M:Microsoft.Win32.SYSTEMTIME.#ctor(System.DateTime)">
            <summary>
            Initializes a new instance of the SYSTEMTIME class.
            </summary>
            <param name="dateTime">An existing DateTime object to copy data from.</param>
        </member>
        <member name="M:Microsoft.Win32.SYSTEMTIME.ToDateTime">
            <summary>
            Returns the SYSTEMTIME as a <see cref="T:System.DateTime"/> value.
            </summary>
            <returns>A <see cref="T:System.DateTime"/> value.</returns>
        </member>
        <member name="M:Microsoft.Win32.SYSTEMTIME.op_Implicit(System.DateTime)~Microsoft.Win32.SYSTEMTIME">
            <summary>
            Converts a <see cref="T:System.DateTime"/> to a <see cref="T:Microsoft.Win32.SYSTEMTIME"/>.
            </summary>
        </member>
        <member name="M:Microsoft.Win32.SYSTEMTIME.op_Implicit(Microsoft.Win32.SYSTEMTIME)~System.DateTime">
            <summary>
            Converts a <see cref="T:Microsoft.Win32.SYSTEMTIME"/> to a <see cref="T:System.DateTime"/>
            </summary>
        </member>
        <member name="T:Microsoft.Win32.WIN32_FIND_DATA">
            <summary>
            Contains information about the file that is found by the FindFirstFile, FindFirstFileEx, or FindNextFile function.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.WIN32_FIND_DATA.dwFileAttributes">
            <summary>
            The file attributes of a file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.WIN32_FIND_DATA.ftCreationTime">
             <summary>
             A <see cref="T:System.Runtime.InteropServices.ComTypes.FILETIME"/> structure that specifies when a file or directory was created.
             
             If the underlying file system does not support creation time, this member is zero.
             </summary>
        </member>
        <member name="F:Microsoft.Win32.WIN32_FIND_DATA.ftLastAccessTime">
             <summary>
             A <see cref="T:System.Runtime.InteropServices.ComTypes.FILETIME"/> structure.
             
             For a file, the structure specifies when the file was last read from, written to, or for executable files, run.
             
             For a directory, the structure specifies when the directory is created. If the underlying file system does not support last access time, this member is zero.
             
             On the FAT file system, the specified date for both files and directories is correct, but the time of day is always set to midnight.
             </summary>
        </member>
        <member name="F:Microsoft.Win32.WIN32_FIND_DATA.ftLastWriteTime">
             <summary>
             A <see cref="T:System.Runtime.InteropServices.ComTypes.FILETIME"/> structure.
             
             For a file, the structure specifies when the file was last written to, truncated, or overwritten, for example, when WriteFile or SetEndOfFile are used. The date and time are not updated when file attributes or security descriptors are changed.
             
             For a directory, the structure specifies when the directory is created. If the underlying file system does not support last write time, this member is zero.
             </summary>
        </member>
        <member name="F:Microsoft.Win32.WIN32_FIND_DATA.nFileSizeHigh">
             <summary>
             The high-order DWORD value of the file size, in bytes.
             
             This value is zero unless the file size is greater than MAXDWORD.
             
             The size of the file is equal to (nFileSizeHigh * (MAXDWORD+1)) + nFileSizeLow.
             </summary>
        </member>
        <member name="F:Microsoft.Win32.WIN32_FIND_DATA.nFileSizeLow">
            <summary>
            The low-order DWORD value of the file size, in bytes.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.WIN32_FIND_DATA.dwReserved0">
             <summary>
             If the dwFileAttributes member includes the FILE_ATTRIBUTE_REPARSE_POINT attribute, this member specifies the re-parse point tag.
             
             Otherwise, this value is undefined and should not be used.
             </summary>
        </member>
        <member name="F:Microsoft.Win32.WIN32_FIND_DATA.dwReserved1">
            <summary>
            Reserved for future use.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.WIN32_FIND_DATA.cFileName">
            <summary>
            The name of the file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.WIN32_FIND_DATA.cAlternateFileName">
             <summary>
             An alternative name for the file.
             
             This name is in the classic 8.3 file name format.
             </summary>
        </member>
        <member name="P:Microsoft.Win32.WIN32_FIND_DATA.FileSize">
            <summary>
            Gets the file size by combining nFileSizeLow and nFileSizeHigh.
            </summary>
        </member>
        <member name="T:Microsoft.Win32.Win32Api">
            <summary>
            Provides access to Win32Api.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Api.MAX_PATH">
            <summary>
            The maximum character count of a path.
            </summary>
        </member>
        <member name="T:Microsoft.Win32.Win32Error">
            <summary>
            Provides access to a list of Win32 error codes.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SUCCESS">
            <summary>
            The operation completed successfully.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_FUNCTION">
            <summary>
            Incorrect function.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FILE_NOT_FOUND">
            <summary>
            The system cannot find the file specified.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PATH_NOT_FOUND">
            <summary>
            The system cannot find the path specified.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TOO_MANY_OPEN_FILES">
            <summary>
            The system cannot open the file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ACCESS_DENIED">
            <summary>
            Access is denied.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_HANDLE">
            <summary>
            The handle is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ARENA_TRASHED">
            <summary>
            The storage control blocks were destroyed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_ENOUGH_MEMORY">
            <summary>
            Not enough storage is available to process this command.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_BLOCK">
            <summary>
            The storage control block address is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_ENVIRONMENT">
            <summary>
            The environment is incorrect.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_FORMAT">
            <summary>
            An attempt was made to load a program with an incorrect format.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_ACCESS">
            <summary>
            The access code is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_DATA">
            <summary>
            The data is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_OUTOFMEMORY">
            <summary>
            Not enough storage is available to complete this operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_DRIVE">
            <summary>
            The system cannot find the drive specified.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CURRENT_DIRECTORY">
            <summary>
            The directory cannot be removed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_SAME_DEVICE">
            <summary>
            The system cannot move the file to a different disk drive.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_MORE_FILES">
            <summary>
            There are no more files.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WRITE_PROTECT">
            <summary>
            The media is write protected.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_UNIT">
            <summary>
            The system cannot find the device specified.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_READY">
            <summary>
            The device is not ready.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_COMMAND">
            <summary>
            The device does not recognize the command.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CRC">
            <summary>
            Data error (cyclic redundancy check).
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_LENGTH">
            <summary>
            The program issued a command but the command length is incorrect.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SEEK">
            <summary>
            The drive cannot locate a specific area or track on the disk.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_DOS_DISK">
            <summary>
            The specified disk or diskette cannot be accessed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SECTOR_NOT_FOUND">
            <summary>
            The drive cannot find the sector requested.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_OUT_OF_PAPER">
            <summary>
            The printer is out of paper.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WRITE_FAULT">
            <summary>
            The system cannot write to the specified device.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_READ_FAULT">
            <summary>
            The system cannot read from the specified device.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_GEN_FAILURE">
            <summary>
            A device attached to the system is not functioning.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SHARING_VIOLATION">
            <summary>
            The process cannot access the file because it is being used by another process.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOCK_VIOLATION">
            <summary>
            The process cannot access the file because another process has locked a portion of the file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WRONG_DISK">
            <summary>
            The wrong diskette is in the drive. Insert %2 (Volume Serial Number: %3) into drive %1.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SHARING_BUFFER_EXCEEDED">
            <summary>
            Too many files opened for sharing.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_HANDLE_EOF">
            <summary>
            Reached the end of the file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_HANDLE_DISK_FULL">
            <summary>
            The disk is full.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_SUPPORTED">
            <summary>
            The request is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REM_NOT_LIST">
            <summary>
            Windows cannot find the network path. Verify that the network path is correct and the destination computer is not busy or turned off. If Windows still cannot find the network path, contact your network administrator.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DUP_NAME">
            <summary>
            You were not connected because a duplicate name exists on the network. If joining a domain, go to System in Control Panel to change the computer name and try again. If joining a workgroup, choose another workgroup name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_NETPATH">
            <summary>
            The network path was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NETWORK_BUSY">
            <summary>
            The network is busy.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEV_NOT_EXIST">
            <summary>
            The specified network resource or device is no longer available.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TOO_MANY_CMDS">
            <summary>
            The network BIOS command limit has been reached.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ADAP_HDW_ERR">
            <summary>
            A network adapter hardware error occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_NET_RESP">
            <summary>
            The specified server cannot perform the requested operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNEXP_NET_ERR">
            <summary>
            An unexpected network error occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_REM_ADAP">
            <summary>
            The remote adapter is not compatible.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PRINTQ_FULL">
            <summary>
            The printer queue is full.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_SPOOL_SPACE">
            <summary>
            Space to store the file waiting to be printed is not available on the server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PRINT_CANCELLED">
            <summary>
            Your file waiting to be printed was deleted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NETNAME_DELETED">
            <summary>
            The specified network name is no longer available.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NETWORK_ACCESS_DENIED">
            <summary>
            Network access is denied.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_DEV_TYPE">
            <summary>
            The network resource type is not correct.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_NET_NAME">
            <summary>
            The network name cannot be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TOO_MANY_NAMES">
            <summary>
            The name limit for the local computer network adapter card was exceeded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TOO_MANY_SESS">
            <summary>
            The network BIOS session limit was exceeded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SHARING_PAUSED">
            <summary>
            The remote server has been paused or is in the process of being started.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REQ_NOT_ACCEP">
            <summary>
            No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REDIR_PAUSED">
            <summary>
            The specified printer or disk device has been paused.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FILE_EXISTS">
            <summary>
            The file exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANNOT_MAKE">
            <summary>
            The directory or file cannot be created.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FAIL_I24">
            <summary>
            Fail on INT 24.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_OUT_OF_STRUCTURES">
            <summary>
            Storage to process this request is not available.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ALREADY_ASSIGNED">
            <summary>
            The local device name is already in use.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_PASSWORD">
            <summary>
            The specified network password is not correct.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_PARAMETER">
            <summary>
            The parameter is incorrect.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NET_WRITE_FAULT">
            <summary>
            A write fault occurred on the network.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_PROC_SLOTS">
            <summary>
            The system cannot start another process at this time.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TOO_MANY_SEMAPHORES">
            <summary>
            Cannot create another system semaphore.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EXCL_SEM_ALREADY_OWNED">
            <summary>
            The exclusive semaphore is owned by another process.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SEM_IS_SET">
            <summary>
            The semaphore is set and cannot be closed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TOO_MANY_SEM_REQUESTS">
            <summary>
            The semaphore cannot be set again.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_AT_INTERRUPT_TIME">
            <summary>
            Cannot request exclusive semaphores at interrupt time.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SEM_OWNER_DIED">
            <summary>
            The previous ownership of this semaphore has ended.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SEM_USER_LIMIT">
            <summary>
            Insert the diskette for drive %1.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DISK_CHANGE">
            <summary>
            The program stopped because an alternate diskette was not inserted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DRIVE_LOCKED">
            <summary>
            The disk is in use or locked by another process.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BROKEN_PIPE">
            <summary>
            The pipe has been ended.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_OPEN_FAILED">
            <summary>
            The system cannot open the device or file specified.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BUFFER_OVERFLOW">
            <summary>
            The file name is too long.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DISK_FULL">
            <summary>
            There is not enough space on the disk.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_MORE_SEARCH_HANDLES">
            <summary>
            No more internal file identifiers available.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_TARGET_HANDLE">
            <summary>
            The target internal file identifier is incorrect.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_CATEGORY">
            <summary>
            The IOCTL call made by the application program is not correct.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_VERIFY_SWITCH">
            <summary>
            The verify-on-write switch parameter value is not correct.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_DRIVER_LEVEL">
            <summary>
            The system does not support the command requested.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CALL_NOT_IMPLEMENTED">
            <summary>
            This function is not supported on this system.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SEM_TIMEOUT">
            <summary>
            The semaphore timeout period has expired.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSUFFICIENT_BUFFER">
            <summary>
            The data area passed to a system call is too small.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_NAME">
            <summary>
            The filename, directory name, or volume label syntax is incorrect.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_LEVEL">
            <summary>
            The system call level is not correct.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_VOLUME_LABEL">
            <summary>
            The disk has no volume label.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MOD_NOT_FOUND">
            <summary>
            The specified module could not be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PROC_NOT_FOUND">
            <summary>
            The specified procedure could not be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WAIT_NO_CHILDREN">
            <summary>
            There are no child processes to wait for.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CHILD_NOT_COMPLETE">
            <summary>
            The %1 application cannot be run in Win32 mode.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DIRECT_ACCESS_HANDLE">
            <summary>
            Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NEGATIVE_SEEK">
            <summary>
            An attempt was made to move the file pointer before the beginning of the file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SEEK_ON_DEVICE">
            <summary>
            The file pointer cannot be set on the specified device or file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IS_JOIN_TARGET">
            <summary>
            A JOIN or SUBST command cannot be used for a drive that contains previously joined drives.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IS_JOINED">
            <summary>
            An attempt was made to use a JOIN or SUBST command on a drive that has already been joined.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IS_SUBSTED">
            <summary>
            An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_JOINED">
            <summary>
            The system tried to delete the JOIN of a drive that is not joined.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_SUBSTED">
            <summary>
            The system tried to delete the substitution of a drive that is not substituted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_JOIN_TO_JOIN">
            <summary>
            The system tried to join a drive to a directory on a joined drive.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SUBST_TO_SUBST">
            <summary>
            The system tried to substitute a drive to a directory on a substituted drive.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_JOIN_TO_SUBST">
            <summary>
            The system tried to join a drive to a directory on a substituted drive.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SUBST_TO_JOIN">
            <summary>
            The system tried to SUBST a drive to a directory on a joined drive.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BUSY_DRIVE">
            <summary>
            The system cannot perform a JOIN or SUBST at this time.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SAME_DRIVE">
            <summary>
            The system cannot join or substitute a drive to or for a directory on the same drive.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DIR_NOT_ROOT">
            <summary>
            The directory is not a subdirectory of the root directory.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DIR_NOT_EMPTY">
            <summary>
            The directory is not empty.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IS_SUBST_PATH">
            <summary>
            The path specified is being used in a substitute.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IS_JOIN_PATH">
            <summary>
            Not enough resources are available to process this command.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PATH_BUSY">
            <summary>
            The path specified cannot be used at this time.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IS_SUBST_TARGET">
            <summary>
            An attempt was made to join or substitute a drive for which a directory on the drive is the target of a previous substitute.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SYSTEM_TRACE">
            <summary>
            System trace information was not specified in your CONFIG.SYS file, or tracing is disallowed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_EVENT_COUNT">
            <summary>
            The number of specified semaphore events for DosMuxSemWait is not correct.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TOO_MANY_MUXWAITERS">
            <summary>
            DosMuxSemWait did not execute; too many semaphores are already set.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_LIST_FORMAT">
            <summary>
            The DosMuxSemWait list is not correct.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LABEL_TOO_LONG">
            <summary>
            The volume label you entered exceeds the label character limit of the target file system.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TOO_MANY_TCBS">
            <summary>
            Cannot create another thread.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SIGNAL_REFUSED">
            <summary>
            The recipient process has refused the signal.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DISCARDED">
            <summary>
            The segment is already discarded and cannot be locked.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_LOCKED">
            <summary>
            The segment is already unlocked.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_THREADID_ADDR">
            <summary>
            The address for the thread ID is not correct.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_ARGUMENTS">
            <summary>
            One or more arguments are not correct.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_PATHNAME">
            <summary>
            The specified path is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SIGNAL_PENDING">
            <summary>
            A signal is already pending.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MAX_THRDS_REACHED">
            <summary>
            No more threads can be created in the system.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOCK_FAILED">
            <summary>
            Unable to lock a region of a file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BUSY">
            <summary>
            The requested resource is in use.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEVICE_SUPPORT_IN_PROGRESS">
            <summary>
            Device's command support detection is in progress.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANCEL_VIOLATION">
            <summary>
            A lock request was not outstanding for the supplied cancel region.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ATOMIC_LOCKS_NOT_SUPPORTED">
            <summary>
            The file system does not support atomic changes to the lock type.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_SEGMENT_NUMBER">
            <summary>
            The system detected a segment number that was not correct.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_ORDINAL">
            <summary>
            The operating system cannot run %1.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ALREADY_EXISTS">
            <summary>
            Cannot create a file when that file already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_FLAG_NUMBER">
            <summary>
            The flag passed is not correct.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SEM_NOT_FOUND">
            <summary>
            The specified system semaphore name was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_STARTING_CODESEG">
            <summary>
            The operating system cannot run %1.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_STACKSEG">
            <summary>
            The operating system cannot run %1.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_MODULETYPE">
            <summary>
            The operating system cannot run %1.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_EXE_SIGNATURE">
            <summary>
            Cannot run %1 in Win32 mode.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EXE_MARKED_INVALID">
            <summary>
            The operating system cannot run %1.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_EXE_FORMAT">
            <summary>
            %1 is not a valid Win32 application.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ITERATED_DATA_EXCEEDS_64k">
            <summary>
            The operating system cannot run %1.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_MINALLOCSIZE">
            <summary>
            The operating system cannot run %1.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DYNLINK_FROM_INVALID_RING">
            <summary>
            The operating system cannot run this application program.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IOPL_NOT_ENABLED">
            <summary>
            The operating system is not presently configured to run this application.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_SEGDPL">
            <summary>
            The operating system cannot run %1.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_AUTODATASEG_EXCEEDS_64k">
            <summary>
            The operating system cannot run this application program.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RING2SEG_MUST_BE_MOVABLE">
            <summary>
            The code segment cannot be greater than or equal to 64K.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RELOC_CHAIN_XEEDS_SEGLIM">
            <summary>
            The operating system cannot run %1.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INFLOOP_IN_RELOC_CHAIN">
            <summary>
            The operating system cannot run %1.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ENVVAR_NOT_FOUND">
            <summary>
            The system could not find the environment option that was entered.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_SIGNAL_SENT">
            <summary>
            No process in the command subtree has a signal handler.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FILENAME_EXCED_RANGE">
            <summary>
            The filename or extension is too long.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RING2_STACK_IN_USE">
            <summary>
            The ring 2 stack is in use.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_META_EXPANSION_TOO_LONG">
            <summary>
            The global filename characters, * or ?, are entered incorrectly or too many global filename characters are specified.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_SIGNAL_NUMBER">
            <summary>
            The signal being posted is not correct.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_THREAD_1_INACTIVE">
            <summary>
            The signal handler cannot be set.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOCKED">
            <summary>
            The segment is locked and cannot be reallocated.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TOO_MANY_MODULES">
            <summary>
            Too many dynamic-link modules are attached to this program or dynamic-link module.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NESTING_NOT_ALLOWED">
            <summary>
            Cannot nest calls to LoadModule.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EXE_MACHINE_TYPE_MISMATCH">
            <summary>
            This version of %1 is not compatible with the version of Windows you're running. Check your computer's system information and then contact the software publisher.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY">
            <summary>
            The image file %1 is signed, unable to modify.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY">
            <summary>
            The image file %1 is strong signed, unable to modify.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FILE_CHECKED_OUT">
            <summary>
            This file is checked out or locked for editing by another user.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CHECKOUT_REQUIRED">
            <summary>
            The file must be checked out before saving changes.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_FILE_TYPE">
            <summary>
            The file type being saved or retrieved has been blocked.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FILE_TOO_LARGE">
            <summary>
            The file size exceeds the limit allowed and cannot be saved.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FORMS_AUTH_REQUIRED">
            <summary>
            Access Denied. Before opening files in this location, you must first add the web site to your trusted sites list, browse to the web site, and select the option to login automatically.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_VIRUS_INFECTED">
            <summary>
            Operation did not complete successfully because the file contains a virus or potentially unwanted software.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_VIRUS_DELETED">
            <summary>
            This file contains a virus or potentially unwanted software and cannot be opened. Due to the nature of this virus or potentially unwanted software, the file has been removed from this location.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PIPE_LOCAL">
            <summary>
            The pipe is local.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_PIPE">
            <summary>
            The pipe state is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PIPE_BUSY">
            <summary>
            All pipe instances are busy.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_DATA">
            <summary>
            The pipe is being closed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PIPE_NOT_CONNECTED">
            <summary>
            No process is on the other end of the pipe.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MORE_DATA">
            <summary>
            More data is available.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_VC_DISCONNECTED">
            <summary>
            The session was canceled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_EA_NAME">
            <summary>
            The specified extended attribute name was invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EA_LIST_INCONSISTENT">
            <summary>
            The extended attributes are inconsistent.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WAIT_TIMEOUT">
            <summary>
            The wait operation timed out.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_MORE_ITEMS">
            <summary>
            No more data is available.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANNOT_COPY">
            <summary>
            The copy functions cannot be used.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DIRECTORY">
            <summary>
            The directory name is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EAS_DIDNT_FIT">
            <summary>
            The extended attributes did not fit in the buffer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EA_FILE_CORRUPT">
            <summary>
            The extended attribute file on the mounted file system is corrupt.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EA_TABLE_FULL">
            <summary>
            The extended attribute table file is full.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_EA_HANDLE">
            <summary>
            The specified extended attribute handle is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EAS_NOT_SUPPORTED">
            <summary>
            The mounted file system does not support extended attributes.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_OWNER">
            <summary>
            Attempt to release mutex not owned by caller.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TOO_MANY_POSTS">
            <summary>
            Too many posts were made to a semaphore.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PARTIAL_COPY">
            <summary>
            Only part of a ReadProcessMemory or WriteProcessMemory request was completed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_OPLOCK_NOT_GRANTED">
            <summary>
            The oplock request is denied.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_OPLOCK_PROTOCOL">
            <summary>
            An invalid oplock acknowledgment was received by the system.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DISK_TOO_FRAGMENTED">
            <summary>
            The volume is too fragmented to complete this operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DELETE_PENDING">
            <summary>
            The file cannot be opened because it is in the process of being deleted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING">
            <summary>
            Short name settings may not be changed on this volume due to the global registry setting.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SHORT_NAMES_NOT_ENABLED_ON_VOLUME">
            <summary>
            Short names are not enabled on this volume.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SECURITY_STREAM_IS_INCONSISTENT">
            <summary>
            The security stream for the given volume is in an inconsistent state. Please run CHKDSK on the volume.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_LOCK_RANGE">
            <summary>
            A requested file lock operation cannot be processed due to an invalid byte range.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IMAGE_SUBSYSTEM_NOT_PRESENT">
            <summary>
            The subsystem needed to support the image type is not present.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOTIFICATION_GUID_ALREADY_DEFINED">
            <summary>
            The specified file already has a notification GUID associated with it.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_EXCEPTION_HANDLER">
            <summary>
            An invalid exception handler routine has been detected.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DUPLICATE_PRIVILEGES">
            <summary>
            Duplicate privileges were specified for the token.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_RANGES_PROCESSED">
            <summary>
            No ranges for the specified operation were able to be processed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_ALLOWED_ON_SYSTEM_FILE">
            <summary>
            Operation is not allowed on a file system internal file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DISK_RESOURCES_EXHAUSTED">
            <summary>
            The physical resources of this disk have been exhausted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_TOKEN">
            <summary>
            The token representing the data is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEVICE_FEATURE_NOT_SUPPORTED">
            <summary>
            The device does not support the command feature.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MR_MID_NOT_FOUND">
            <summary>
            The system cannot find message text for message number 0x%1 in the message file for %2.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SCOPE_NOT_FOUND">
            <summary>
            The scope specified was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNDEFINED_SCOPE">
            <summary>
            The Central Access Policy specified is not defined on the target machine.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_CAP">
            <summary>
            The Central Access Policy obtained from Active Directory is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEVICE_UNREACHABLE">
            <summary>
            The device is unreachable.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEVICE_NO_RESOURCES">
            <summary>
            The target device has insufficient resources to complete the operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DATA_CHECKSUM_ERROR">
            <summary>
            A data integrity checksum error occurred. Data in the file stream is corrupt.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INTERMIXED_KERNEL_EA_OPERATION">
            <summary>
            An attempt was made to modify both a KERNEL and normal Extended Attribute (EA) in the same operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FILE_LEVEL_TRIM_NOT_SUPPORTED">
            <summary>
            Device does not support file-level TRIM.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_OFFSET_ALIGNMENT_VIOLATION">
            <summary>
            The command specified a data offset that does not align to the device's granularity/alignment.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_FIELD_IN_PARAMETER_LIST">
            <summary>
            The command specified an invalid field in its parameter list.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_OPERATION_IN_PROGRESS">
            <summary>
            An operation is currently in progress with the device.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_DEVICE_PATH">
            <summary>
            An attempt was made to send down the command via an invalid path to the target device.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TOO_MANY_DESCRIPTORS">
            <summary>
            The command specified a number of descriptors that exceeded the maximum supported by the device.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SCRUB_DATA_DISABLED">
            <summary>
            Scrub is disabled on the specified file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_REDUNDANT_STORAGE">
            <summary>
            The storage device does not provide redundancy.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESIDENT_FILE_NOT_SUPPORTED">
            <summary>
            An operation is not supported on a resident file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_COMPRESSED_FILE_NOT_SUPPORTED">
            <summary>
            An operation is not supported on a compressed file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DIRECTORY_NOT_SUPPORTED">
            <summary>
            An operation is not supported on a directory.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_READ_FROM_COPY">
            <summary>
            The specified copy of the requested data could not be read.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FAIL_NOACTION_REBOOT">
            <summary>
            No action was taken as a system reboot is required.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FAIL_SHUTDOWN">
            <summary>
            The shutdown operation failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FAIL_RESTART">
            <summary>
            The restart operation failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MAX_SESSIONS_REACHED">
            <summary>
            The maximum number of sessions has been reached.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_THREAD_MODE_ALREADY_BACKGROUND">
            <summary>
            The thread is already in background processing mode.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_THREAD_MODE_NOT_BACKGROUND">
            <summary>
            The thread is not in background processing mode.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PROCESS_MODE_ALREADY_BACKGROUND">
            <summary>
            The process is already in background processing mode.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PROCESS_MODE_NOT_BACKGROUND">
            <summary>
            The process is not in background processing mode.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_ADDRESS">
            <summary>
            Attempt to access invalid address.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_USER_PROFILE_LOAD">
            <summary>
            User profile cannot be loaded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ARITHMETIC_OVERFLOW">
            <summary>
            Arithmetic result exceeded 32 bits.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PIPE_CONNECTED">
            <summary>
            There is a process on other end of the pipe.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PIPE_LISTENING">
            <summary>
            Waiting for a process to open the other end of the pipe.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_VERIFIER_STOP">
            <summary>
            Application verifier has found an error in the current process.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ABIOS_ERROR">
            <summary>
            An error occurred in the ABIOS subsystem.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WX86_WARNING">
            <summary>
            A warning occurred in the WX86 subsystem.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WX86_ERROR">
            <summary>
            An error occurred in the WX86 subsystem.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TIMER_NOT_CANCELED">
            <summary>
            An attempt was made to cancel or set a timer that has an associated APC and the subject thread is not the thread that originally set the timer with an associated APC routine.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNWIND">
            <summary>
            Unwind exception code.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_STACK">
            <summary>
            An invalid or unaligned stack was encountered during an unwind operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_UNWIND_TARGET">
            <summary>
            An invalid unwind target was encountered during an unwind operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_PORT_ATTRIBUTES">
            <summary>
            Invalid Object Attributes specified to NtCreatePort or invalid Port Attributes specified to NtConnectPort
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PORT_MESSAGE_TOO_LONG">
            <summary>
            Length of message passed to NtRequestPort or NtRequestWaitReplyPort was longer than the maximum message allowed by the port.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_QUOTA_LOWER">
            <summary>
            An attempt was made to lower a quota limit below the current usage.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEVICE_ALREADY_ATTACHED">
            <summary>
            An attempt was made to attach to a device that was already attached to another device.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTRUCTION_MISALIGNMENT">
            <summary>
            An attempt was made to execute an instruction at an unaligned address and the host system does not support unaligned instruction references.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PROFILING_NOT_STARTED">
            <summary>
            Profiling not started.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PROFILING_NOT_STOPPED">
            <summary>
            Profiling not stopped.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_COULD_NOT_INTERPRET">
            <summary>
            The passed ACL did not contain the minimum required information.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PROFILING_AT_LIMIT">
            <summary>
            The number of active profiling objects is at the maximum and no more may be started.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANT_WAIT">
            <summary>
            Used to indicate that an operation cannot continue without blocking for I/O.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANT_TERMINATE_SELF">
            <summary>
            Indicates that a thread attempted to terminate itself by default (called NtTerminateThread with NULL) and it was the last thread in the current process.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNEXPECTED_MM_CREATE_ERR">
            <summary>
            If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNEXPECTED_MM_MAP_ERROR">
            <summary>
            If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNEXPECTED_MM_EXTEND_ERR">
            <summary>
            If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_FUNCTION_TABLE">
            <summary>
            A malformed function table was encountered during an unwind operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_GUID_TRANSLATION">
            <summary>
            Indicates that an attempt was made to assign protection to a file system file or directory and one of the SIDs in the security descriptor could not be translated into a GUID that could be stored by the file system. This causes the protection attempt to fail, which may cause a file creation attempt to fail.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_LDT_SIZE">
            <summary>
            Indicates that an attempt was made to grow an LDT by setting its size, or that the size was not an even number of selectors.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_LDT_OFFSET">
            <summary>
            Indicates that the starting value for the LDT information was not an integral multiple of the selector size.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_LDT_DESCRIPTOR">
            <summary>
            Indicates that the user supplied an invalid descriptor when trying to set up Ldt descriptors.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TOO_MANY_THREADS">
            <summary>
            Indicates a process has too many threads to perform the requested action. For example, assignment of a primary token may only be performed when a process has zero or one threads.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_THREAD_NOT_IN_PROCESS">
            <summary>
            An attempt was made to operate on a thread within a specific process, but the thread specified is not in the process specified.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PAGEFILE_QUOTA_EXCEEDED">
            <summary>
            Page file quota was exceeded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOGON_SERVER_CONFLICT">
            <summary>
            The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SYNCHRONIZATION_REQUIRED">
            <summary>
            The SAM database on a Windows Server is significantly out of synchronization with the copy on the Domain Controller. A complete synchronization is required.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NET_OPEN_FAILED">
            <summary>
            The NtCreateFile API failed. This error should never be returned to an application, it is a place holder for the Windows LAN Manager Redirector to use in its internal error mapping routines.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IO_PRIVILEGE_FAILED">
            <summary>
            {Privilege Failed} The I/O permissions for the process could not be changed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CONTROL_C_EXIT">
            <summary>
            {Application Exit by CTRL+C} The application terminated as a result of a CTRL+C.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MISSING_SYSTEMFILE">
            <summary>
            {Missing System File} The required system file %hs is bad or missing.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNHANDLED_EXCEPTION">
            <summary>
            {Application Error} The exception %s (0x%08lx) occurred in the application at location 0x%08lx.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_APP_INIT_FAILURE">
            <summary>
            {Application Error} The application was unable to start correctly (0x%lx). Click OK to close the application.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PAGEFILE_CREATE_FAILED">
            <summary>
            {Unable to Create Paging File} The creation of the paging file %hs failed (%lx). The requested size was %ld.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_IMAGE_HASH">
            <summary>
            Windows cannot verify the digital signature for this file. A recent hardware or software change might have installed a file that is signed incorrectly or damaged, or that might be malicious software from an unknown source.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_PAGEFILE">
            <summary>
            {No Paging File Specified} No paging file was specified in the system configuration.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ILLEGAL_FLOAT_CONTEXT">
            <summary>
            {EXCEPTION} A real-mode application issued a floating-point instruction and floating-point hardware is not present.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_EVENT_PAIR">
            <summary>
            An event pair synchronization operation was performed using the thread specific client/server event pair object, but no event pair object was associated with the thread.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DOMAIN_CTRLR_CONFIG_ERROR">
            <summary>
            A Windows Server has an incorrect configuration.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ILLEGAL_CHARACTER">
            <summary>
            An illegal character was encountered. For a multi-byte character set this includes a lead byte without a succeeding trail byte. For the Unicode character set this includes the characters 0xFFFF and 0xFFFE.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNDEFINED_CHARACTER">
            <summary>
            The Unicode character is not defined in the Unicode character set installed on the system.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FLOPPY_VOLUME">
            <summary>
            The paging file cannot be created on a floppy diskette.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT">
            <summary>
            The system BIOS failed to connect a system interrupt to the device or bus for which the device is connected.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BACKUP_CONTROLLER">
            <summary>
            This operation is only allowed for the Primary Domain Controller of the domain.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MUTANT_LIMIT_EXCEEDED">
            <summary>
            An attempt was made to acquire a mutant such that its maximum count would have been exceeded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FS_DRIVER_REQUIRED">
            <summary>
            A volume has been accessed for which a file system driver is required that has not yet been loaded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANNOT_LOAD_REGISTRY_FILE">
            <summary>
            {Registry File Failure} The registry cannot load the hive (file): %hs or its log or alternate. It is corrupt, absent, or not writable.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEBUG_ATTACH_FAILED">
            <summary>
            {Unexpected Failure in DebugActiveProcess} An unexpected failure occurred while processing a DebugActiveProcess API request. You may choose OK to terminate the process, or Cancel to ignore the error.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SYSTEM_PROCESS_TERMINATED">
            <summary>
            {Fatal System Error} The %hs system process terminated unexpectedly with a status of 0x%08x (0x%08x 0x%08x). The system has been shut down.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DATA_NOT_ACCEPTED">
            <summary>
            {Data Not Accepted} The TDI client could not handle the data received during an indication.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_VDM_HARD_ERROR">
            <summary>
            NTVDM encountered a hard error.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DRIVER_CANCEL_TIMEOUT">
            <summary>
            {Cancel Timeout} The driver %hs failed to complete a canceled I/O request in the allotted time.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REPLY_MESSAGE_MISMATCH">
            <summary>
            {Reply Message Mismatch} An attempt was made to reply to an LPC message, but the thread specified by the client ID in the message was not waiting on that message.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOST_WRITEBEHIND_DATA">
            <summary>
            {Delayed Write Failed} Windows was unable to save all the data for the file %hs. The data has been lost. This error may be caused by a failure of your computer hardware or network connection. Please try to save this file elsewhere.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLIENT_SERVER_PARAMETERS_INVALID">
            <summary>
            The parameter(s) passed to the server in the client/server shared memory window were invalid. Too much data may have been put in the shared memory window.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_TINY_STREAM">
            <summary>
            The stream is not a tiny stream.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STACK_OVERFLOW_READ">
            <summary>
            The request must be handled by the stack overflow code.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CONVERT_TO_LARGE">
            <summary>
            Internal OFS status codes indicating how an allocation operation is handled. Either it is retried after the containing node is moved or the extent stream is converted to a large stream.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FOUND_OUT_OF_SCOPE">
            <summary>
            The attempt to find the object found an object matching by ID on the volume but it is out of the scope of the handle used for the operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ALLOCATE_BUCKET">
            <summary>
            The bucket array must be grown. Retry transaction after doing so.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MARSHALL_OVERFLOW">
            <summary>
            The user/kernel marshaling buffer has overflowed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_VARIANT">
            <summary>
            The supplied variant structure contains invalid data.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_COMPRESSION_BUFFER">
            <summary>
            The specified buffer contains ill-formed data.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_AUDIT_FAILED">
            <summary>
            {Audit Failed} An attempt to generate a security audit failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TIMER_RESOLUTION_NOT_SET">
            <summary>
            The timer resolution was not previously set by the current process.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSUFFICIENT_LOGON_INFO">
            <summary>
            There is insufficient account information to log you on.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_DLL_ENTRYPOINT">
            <summary>
            {Invalid DLL Entrypoint} The dynamic link library %hs is not written correctly. The stack pointer has been left in an inconsistent state. The entrypoint should be declared as WINAPI or STDCALL. Select YES to fail the DLL load. Select NO to continue execution. Selecting NO may cause the application to operate incorrectly.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_SERVICE_ENTRYPOINT">
            <summary>
            {Invalid Service Callback Entrypoint} The %hs service is not written correctly. The stack pointer has been left in an inconsistent state. The callback entrypoint should be declared as WINAPI or STDCALL. Selecting OK will cause the service to continue operation. However, the service process may operate incorrectly.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IP_ADDRESS_CONFLICT1">
            <summary>
            There is an IP address conflict with another system on the network.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IP_ADDRESS_CONFLICT2">
            <summary>
            There is an IP address conflict with another system on the network.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REGISTRY_QUOTA_LIMIT">
            <summary>
            {Low On Registry Space} The system has reached the maximum size allowed for the system part of the registry. Additional storage requests will be ignored.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_CALLBACK_ACTIVE">
            <summary>
            A callback return system service cannot be executed when no callback is active.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PWD_TOO_SHORT">
            <summary>
            The password provided is too short to meet the policy of your user account. Please choose a longer password.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PWD_TOO_RECENT">
            <summary>
            The policy of your user account does not allow you to change passwords too frequently. This is done to prevent users from changing back to a familiar, but potentially discovered, password. If you feel your password has been compromised then please contact your administrator immediately to have a new one assigned.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PWD_HISTORY_CONFLICT">
            <summary>
            You have attempted to change your password to one that you have used in the past. The policy of your user account does not allow this. Please select a password that you have not previously used.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNSUPPORTED_COMPRESSION">
            <summary>
            The specified compression format is unsupported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_HW_PROFILE">
            <summary>
            The specified hardware profile configuration is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_PLUGPLAY_DEVICE_PATH">
            <summary>
            The specified Plug and Play registry device path is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_QUOTA_LIST_INCONSISTENT">
            <summary>
            The specified quota list is internally inconsistent with its descriptor.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVALUATION_EXPIRATION">
            <summary>
            {Windows Evaluation Notification} The evaluation period for this installation of Windows has expired. This system will shutdown in 1 hour. To restore access to this installation of Windows, please upgrade this installation using a licensed distribution of this product.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ILLEGAL_DLL_RELOCATION">
            <summary>
            {Illegal System DLL Relocation} The system DLL %hs was relocated in memory. The application will not run properly. The relocation occurred because the DLL %hs occupied an address range reserved for Windows system DLLs. The vendor supplying the DLL should be contacted for a new DLL.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DLL_INIT_FAILED_LOGOFF">
            <summary>
            {DLL Initialization Failed} The application failed to initialize because the window station is shutting down.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_VALIDATE_CONTINUE">
            <summary>
            The validation process needs to continue on to the next step.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_MORE_MATCHES">
            <summary>
            There are no more matches for the current index enumeration.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RANGE_LIST_CONFLICT">
            <summary>
            The range could not be added to the range list because of a conflict.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVER_SID_MISMATCH">
            <summary>
            The server process is running under a SID different than that required by client.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANT_ENABLE_DENY_ONLY">
            <summary>
            A group marked use for deny only cannot be enabled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FLOAT_MULTIPLE_FAULTS">
            <summary>
            {EXCEPTION} Multiple floating point faults.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FLOAT_MULTIPLE_TRAPS">
            <summary>
            {EXCEPTION} Multiple floating point traps.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOINTERFACE">
            <summary>
            The requested interface is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DRIVER_FAILED_SLEEP">
            <summary>
            {System Standby Failed} The driver %hs does not support standby mode. Updating this driver may allow the system to go to standby mode.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CORRUPT_SYSTEM_FILE">
            <summary>
            The system file %1 has become corrupt and has been replaced.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_COMMITMENT_MINIMUM">
            <summary>
            {Virtual Memory Minimum Too Low} Your system is low on virtual memory. Windows is increasing the size of your virtual memory paging file. During this process, memory requests for some applications may be denied. For more information, see Help.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PNP_RESTART_ENUMERATION">
            <summary>
            A device was removed so enumeration must be restarted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SYSTEM_IMAGE_BAD_SIGNATURE">
            <summary>
            {Fatal System Error} The system image %s is not properly signed. The file has been replaced with the signed file. The system has been shut down.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PNP_REBOOT_REQUIRED">
            <summary>
            Device will not start without a reboot.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSUFFICIENT_POWER">
            <summary>
            There is not enough power to complete the requested operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MULTIPLE_FAULT_VIOLATION">
            <summary>
            ERROR_MULTIPLE_FAULT_VIOLATION
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SYSTEM_SHUTDOWN">
            <summary>
            The system is in the process of shutting down.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PORT_NOT_SET">
            <summary>
            An attempt to remove a processes DebugPort was made, but a port was not already associated with the process.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_VERSION_CHECK_FAILURE">
            <summary>
            This version of Windows is not compatible with the behavior version of directory forest, domain or domain controller.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RANGE_NOT_FOUND">
            <summary>
            The specified range could not be found in the range list.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_SAFE_MODE_DRIVER">
            <summary>
            The driver was not loaded because the system is booting into safe mode.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FAILED_DRIVER_ENTRY">
            <summary>
            The driver was not loaded because it failed its initialization call.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEVICE_ENUMERATION_ERROR">
            <summary>
            The "%hs" encountered an error while applying power or reading the device configuration. This may be caused by a failure of your hardware or by a poor connection.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MOUNT_POINT_NOT_RESOLVED">
            <summary>
            The create operation failed because the name contained at least one mount point which resolves to a volume to which the specified device object is not attached.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_DEVICE_OBJECT_PARAMETER">
            <summary>
            The device object parameter is either not a valid device object or is not attached to the volume specified by the file name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MCA_OCCURED">
            <summary>
            A Machine Check Error has occurred. Please check the system event log for additional information.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DRIVER_DATABASE_ERROR">
            <summary>
            There was error [%2] processing the driver database.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SYSTEM_HIVE_TOO_LARGE">
            <summary>
            System hive size has exceeded its limit.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DRIVER_FAILED_PRIOR_UNLOAD">
            <summary>
            The driver could not be loaded because a previous version of the driver is still in memory.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_VOLSNAP_PREPARE_HIBERNATE">
            <summary>
            {Volume Shadow Copy Service} Please wait while the Volume Shadow Copy Service prepares volume %hs for hibernation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_HIBERNATION_FAILURE">
            <summary>
            The system has failed to hibernate (The error code is %hs). Hibernation will be disabled until the system is restarted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PWD_TOO_LONG">
            <summary>
            The password provided is too long to meet the policy of your user account. Please choose a shorter password.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FILE_SYSTEM_LIMITATION">
            <summary>
            The requested operation could not be completed due to a file system limitation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ASSERTION_FAILURE">
            <summary>
            An assertion failure has occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ACPI_ERROR">
            <summary>
            An error occurred in the ACPI subsystem.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WOW_ASSERTION">
            <summary>
            WOW Assertion Error.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PNP_BAD_MPS_TABLE">
            <summary>
            A device is missing in the system BIOS MPS table. This device will not be used. Please contact your system vendor for system BIOS update.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PNP_TRANSLATION_FAILED">
            <summary>
            A translator failed to translate resources.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PNP_IRQ_TRANSLATION_FAILED">
            <summary>
            A IRQ translator failed to translate resources.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PNP_INVALID_ID">
            <summary>
            Driver %2 returned invalid ID for a child device (%3).
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WAKE_SYSTEM_DEBUGGER">
            <summary>
            {Kernel Debugger Awakened} the system debugger was awakened by an interrupt.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_HANDLES_CLOSED">
            <summary>
            {Handles Closed} Handles to objects have been automatically closed as a result of the requested operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EXTRANEOUS_INFORMATION">
            <summary>
            {Too Much Information} The specified access control list (ACL) contained more information than was expected.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RXACT_COMMIT_NECESSARY">
            <summary>
            This warning level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted. The commit has NOT been completed, but has not been rolled back either (so it may still be committed if desired).
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MEDIA_CHECK">
            <summary>
            {Media Changed} The media may have changed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_GUID_SUBSTITUTION_MADE">
            <summary>
            {GUID Substitution} During the translation of a global identifier (GUID) to a Windows security ID (SID), no administratively-defined GUID prefix was found. A substitute prefix was used, which will not compromise system security. However, this may provide a more restrictive access than intended.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STOPPED_ON_SYMLINK">
            <summary>
            The create operation stopped after reaching a symbolic link.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LONGJUMP">
            <summary>
            A long jump has been executed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PLUGPLAY_QUERY_VETOED">
            <summary>
            The Plug and Play query operation was not successful.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNWIND_CONSOLIDATE">
            <summary>
            A frame consolidation has been executed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REGISTRY_HIVE_RECOVERED">
            <summary>
            {Registry Hive Recovered} Registry hive (file): %hs was corrupted and it has been recovered. Some data might have been lost.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DLL_MIGHT_BE_INSECURE">
            <summary>
            The application is attempting to run executable code from the module %hs. This may be insecure. An alternative, %hs, is available. Should the application use the secure module %hs?
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DLL_MIGHT_BE_INCOMPATIBLE">
            <summary>
            The application is loading executable code from the module %hs. This is secure, but may be incompatible with previous releases of the operating system. An alternative, %hs, is available. Should the application use the secure module %hs?
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DBG_EXCEPTION_NOT_HANDLED">
            <summary>
            Debugger did not handle the exception.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DBG_REPLY_LATER">
            <summary>
            Debugger will reply later.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE">
            <summary>
            Debugger cannot provide handle.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DBG_TERMINATE_THREAD">
            <summary>
            Debugger terminated thread.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DBG_TERMINATE_PROCESS">
            <summary>
            Debugger terminated process.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DBG_CONTROL_C">
            <summary>
            Debugger got control C.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DBG_PRINTEXCEPTION_C">
            <summary>
            Debugger printed exception on control C.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DBG_RIPEXCEPTION">
            <summary>
            Debugger received RIP exception.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DBG_CONTROL_BREAK">
            <summary>
            Debugger received control break.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DBG_COMMAND_EXCEPTION">
            <summary>
            Debugger command communication exception.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_OBJECT_NAME_EXISTS">
            <summary>
            {Object Exists} An attempt was made to create an object and the object name already existed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_THREAD_WAS_SUSPENDED">
            <summary>
            {Thread Suspended} A thread termination occurred while the thread was suspended. The thread was resumed, and termination proceeded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IMAGE_NOT_AT_BASE">
            <summary>
            {Image Relocated} An image file could not be mapped at the address specified in the image file. Local fixups must be performed on this image.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RXACT_STATE_CREATED">
            <summary>
            This informational level status indicates that a specified registry sub-tree transaction state did not yet exist and had to be created.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SEGMENT_NOTIFICATION">
            <summary>
            {Segment Load} A virtual DOS machine (VDM) is loading, unloading, or moving an MS-DOS or Win16 program segment image. An exception is raised so a debugger can load, unload or track symbols and breakpoints within these 16-bit segments.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_CURRENT_DIRECTORY">
            <summary>
            {Invalid Current Directory} The process cannot switch to the startup current directory %hs. Select OK to set current directory to %hs, or select CANCEL to exit.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FT_READ_RECOVERY_FROM_BACKUP">
            <summary>
            {Redundant Read} To satisfy a read request, the NT fault-tolerant file system successfully read the requested data from a redundant copy. This was done because the file system encountered a failure on a member of the fault-tolerant volume, but was unable to reassign the failing area of the device.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FT_WRITE_RECOVERY">
            <summary>
            {Redundant Write} To satisfy a write request, the NT fault-tolerant file system successfully wrote a redundant copy of the information. This was done because the file system encountered a failure on a member of the fault-tolerant volume, but was not able to reassign the failing area of the device.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IMAGE_MACHINE_TYPE_MISMATCH">
            <summary>
            {Machine Type Mismatch} The image file %hs is valid, but is for a machine type other than the current machine. Select OK to continue, or CANCEL to fail the DLL load.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RECEIVE_PARTIAL">
            <summary>
            {Partial Data Received} The network transport returned partial data to its client. The remaining data will be sent later.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RECEIVE_EXPEDITED">
            <summary>
            {Expedited Data Received} The network transport returned data to its client that was marked as expedited by the remote system.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RECEIVE_PARTIAL_EXPEDITED">
            <summary>
            {Partial Expedited Data Received} The network transport returned partial data to its client and this data was marked as expedited by the remote system. The remaining data will be sent later.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVENT_DONE">
            <summary>
            {TDI Event Done} The TDI indication has completed successfully.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVENT_PENDING">
            <summary>
            {TDI Event Pending} The TDI indication has entered the pending state.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CHECKING_FILE_SYSTEM">
            <summary>
            Checking file system on %wZ.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FATAL_APP_EXIT">
            <summary>
            {Fatal Application Exit} %hs.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PREDEFINED_HANDLE">
            <summary>
            The specified registry key is referenced by a predefined handle.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WAS_UNLOCKED">
            <summary>
            {Page Unlocked} The page protection of a locked page was changed to 'No Access' and the page was unlocked from memory and from the process.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVICE_NOTIFICATION">
            <summary>
            %hs
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WAS_LOCKED">
            <summary>
            {Page Locked} One of the pages to lock was already locked.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_HARD_ERROR">
            <summary>
            Application popup: %1 : %2
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ALREADY_WIN32">
            <summary>
            ERROR_ALREADY_WIN32
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE">
            <summary>
            {Machine Type Mismatch} The image file %hs is valid, but is for a machine type other than the current machine.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_YIELD_PERFORMED">
            <summary>
            A yield execution was performed and no thread was available to run.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TIMER_RESUME_IGNORED">
            <summary>
            The resumable flag to a timer API was ignored.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ARBITRATION_UNHANDLED">
            <summary>
            The arbiter has deferred arbitration of these resources to its parent.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CARDBUS_NOT_SUPPORTED">
            <summary>
            The inserted CardBus device cannot be started because of a configuration error on "%hs".
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MP_PROCESSOR_MISMATCH">
            <summary>
            The CPUs in this multiprocessor system are not all the same revision level. To use all processors the operating system restricts itself to the features of the least capable processor in the system. Should problems occur with this system, contact the CPU manufacturer to see if this mix of processors is supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_HIBERNATED">
            <summary>
            The system was put into hibernation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESUME_HIBERNATION">
            <summary>
            The system was resumed from hibernation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FIRMWARE_UPDATED">
            <summary>
            Windows has detected that the system firmware (BIOS) was updated [previous firmware date = %2, current firmware date %3].
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DRIVERS_LEAKING_LOCKED_PAGES">
            <summary>
            A device driver is leaking locked I/O pages causing system degradation. The system has automatically enabled tracking code in order to try and catch the culprit.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WAKE_SYSTEM">
            <summary>
            The system has awoken.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WAIT_1">
            <summary>
            ERROR_WAIT_1
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WAIT_2">
            <summary>
            ERROR_WAIT_2
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WAIT_3">
            <summary>
            ERROR_WAIT_3
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WAIT_63">
            <summary>
            ERROR_WAIT_63
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ABANDONED_WAIT_0">
            <summary>
            ERROR_ABANDONED_WAIT_0
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ABANDONED_WAIT_63">
            <summary>
            ERROR_ABANDONED_WAIT_63
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_USER_APC">
            <summary>
            ERROR_USER_APC
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_KERNEL_APC">
            <summary>
            ERROR_KERNEL_APC
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ALERTED">
            <summary>
            ERROR_ALERTED
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ELEVATION_REQUIRED">
            <summary>
            The requested operation requires elevation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REPARSE">
            <summary>
            A re parse should be performed by the Object Manager since the name of the file resulted in a symbolic link.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_OPLOCK_BREAK_IN_PROGRESS">
            <summary>
            An open/create operation completed while an oplock break is underway.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_VOLUME_MOUNTED">
            <summary>
            A new volume has been mounted by a file system.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RXACT_COMMITTED">
            <summary>
            This success level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted. The commit has now been completed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOTIFY_CLEANUP">
            <summary>
            This indicates that a notify change request has been completed due to closing the handle which made the notify change request.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED">
            <summary>
            {Connect Failure on Primary Transport} An attempt was made to connect to the remote server %hs on the primary transport, but the connection failed. The computer WAS able to connect on a secondary transport.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PAGE_FAULT_TRANSITION">
            <summary>
            Page fault was a transition fault.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PAGE_FAULT_DEMAND_ZERO">
            <summary>
            Page fault was a demand zero fault.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PAGE_FAULT_COPY_ON_WRITE">
            <summary>
            Page fault was a demand zero fault.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PAGE_FAULT_GUARD_PAGE">
            <summary>
            Page fault was a demand zero fault.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PAGE_FAULT_PAGING_FILE">
            <summary>
            Page fault was satisfied by reading from a secondary storage device.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CACHE_PAGE_LOCKED">
            <summary>
            Cached page was locked during operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CRASH_DUMP">
            <summary>
            Crash dump exists in paging file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BUFFER_ALL_ZEROS">
            <summary>
            Specified buffer contains all zeros.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REPARSE_OBJECT">
            <summary>
            A re parse should be performed by the Object Manager since the name of the file resulted in a symbolic link.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESOURCE_REQUIREMENTS_CHANGED">
            <summary>
            The device has succeeded a query-stop and its resource requirements have changed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSLATION_COMPLETE">
            <summary>
            The translator has translated these resources into the global space and no further translations should be performed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOTHING_TO_TERMINATE">
            <summary>
            A process being terminated has no threads to terminate.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PROCESS_NOT_IN_JOB">
            <summary>
            The specified process is not part of a job.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PROCESS_IN_JOB">
            <summary>
            The specified process is part of a job.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_VOLSNAP_HIBERNATE_READY">
            <summary>
            {Volume Shadow Copy Service} The system is now ready for hibernation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY">
            <summary>
            A file system or file system filter driver has successfully completed an FsFilter operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED">
            <summary>
            The specified interrupt vector was already connected.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INTERRUPT_STILL_CONNECTED">
            <summary>
            The specified interrupt vector is still connected.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WAIT_FOR_OPLOCK">
            <summary>
            An operation is blocked waiting for an oplock.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DBG_EXCEPTION_HANDLED">
            <summary>
            Debugger handled exception.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DBG_CONTINUE">
            <summary>
            Debugger continued.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CALLBACK_POP_STACK">
            <summary>
            An exception occurred in a user mode callback and the kernel callback frame should be removed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_COMPRESSION_DISABLED">
            <summary>
            Compression is disabled for this volume.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANTFETCHBACKWARDS">
            <summary>
            The data provider cannot fetch backwards through a result set.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANTSCROLLBACKWARDS">
            <summary>
            The data provider cannot scroll backwards through a result set.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ROWSNOTRELEASED">
            <summary>
            The data provider requires that previously fetched data is released before asking for more data.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_ACCESSOR_FLAGS">
            <summary>
            The data provider was not able to interpret the flags set for a column binding in an accessor.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ERRORS_ENCOUNTERED">
            <summary>
            One or more errors occurred while processing the request.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_CAPABLE">
            <summary>
            The implementation is not capable of performing the request.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REQUEST_OUT_OF_SEQUENCE">
            <summary>
            The client of a component requested an operation which is not valid given the state of the component instance.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_VERSION_PARSE_ERROR">
            <summary>
            A version number could not be parsed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BADSTARTPOSITION">
            <summary>
            The iterator's start position is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MEMORY_HARDWARE">
            <summary>
            The hardware has reported an uncorrectable memory error.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DISK_REPAIR_DISABLED">
            <summary>
            The attempted operation required self healing to be enabled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE">
            <summary>
            The Desktop heap encountered an error while allocating session memory. There is more information in the system event log.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SYSTEM_POWERSTATE_TRANSITION">
            <summary>
            The system power state is transitioning from %2 to %3.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SYSTEM_POWERSTATE_COMPLEX_TRANSITION">
            <summary>
            The system power state is transitioning from %2 to %3 but could enter %4.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MCA_EXCEPTION">
            <summary>
            A thread is getting dispatched with MCA EXCEPTION because of MCA.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ACCESS_AUDIT_BY_POLICY">
            <summary>
            Access to %1 is monitored by policy rule %2.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY">
            <summary>
            Access to %1 has been restricted by your Administrator by policy rule %2.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ABANDON_HIBERFILE">
            <summary>
            A valid hibernation file has been invalidated and should be abandoned.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED">
            <summary>
            {Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error may be caused by network connectivity issues. Please try to save this file elsewhere.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR">
            <summary>
            {Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error was returned by the server on which the file exists. Please try to save this file elsewhere.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR">
            <summary>
            {Delayed Write Failed} Windows was unable to save all the data for the file %hs; the data has been lost. This error may be caused if the device has been removed or the media is write-protected.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_MCFG_TABLE">
            <summary>
            The resources required for this device conflict with the MCFG table.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DISK_REPAIR_REDIRECTED">
            <summary>
            The volume repair could not be performed while it is online. Please schedule to take the volume offline so that it can be repaired.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DISK_REPAIR_UNSUCCESSFUL">
            <summary>
            The volume repair was not successful.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CORRUPT_LOG_OVERFULL">
            <summary>
            One of the volume corruption logs is full. Further corruptions that may be detected won't be logged.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CORRUPT_LOG_CORRUPTED">
            <summary>
            One of the volume corruption logs is internally corrupted and needs to be recreated. The volume may contain undetected corruptions and must be scanned.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CORRUPT_LOG_UNAVAILABLE">
            <summary>
            One of the volume corruption logs is unavailable for being operated on.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CORRUPT_LOG_DELETED_FULL">
            <summary>
            One of the volume corruption logs was deleted while still having corruption records in them. The volume contains detected corruptions and must be scanned.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CORRUPT_LOG_CLEARED">
            <summary>
            One of the volume corruption logs was cleared by chkdsk and no longer contains real corruptions.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ORPHAN_NAME_EXHAUSTED">
            <summary>
            Orphaned files exist on the volume but could not be recovered because no more new names could be created in the recovery directory. Files must be moved from the recovery directory.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_OPLOCK_SWITCHED_TO_NEW_HANDLE">
            <summary>
            The oplock that was associated with this handle is now associated with a different handle.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANNOT_GRANT_REQUESTED_OPLOCK">
            <summary>
            An oplock of the requested level cannot be granted. An oplock of a lower level may be available.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANNOT_BREAK_OPLOCK">
            <summary>
            The operation did not complete successfully because it would cause an oplock to be broken. The caller has requested that existing oplocks not be broken.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_OPLOCK_HANDLE_CLOSED">
            <summary>
            The handle with which this oplock was associated has been closed. The oplock is now broken.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_ACE_CONDITION">
            <summary>
            The specified access control entry (ACE) does not contain a condition.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_ACE_CONDITION">
            <summary>
            The specified access control entry (ACE) contains an invalid condition.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FILE_HANDLE_REVOKED">
            <summary>
            Access to the specified file handle has been revoked.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IMAGE_AT_DIFFERENT_BASE">
            <summary>
            An image file was mapped at a different address from the one specified in the image file but fixups will still be automatically performed on the image.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EA_ACCESS_DENIED">
            <summary>
            Access to the extended attribute was denied.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_OPERATION_ABORTED">
            <summary>
            The I/O operation has been aborted because of either a thread exit or an application request.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IO_INCOMPLETE">
            <summary>
            Overlapped I/O event is not in a signaled state.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IO_PENDING">
            <summary>
            Overlapped I/O operation is in progress.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOACCESS">
            <summary>
            Invalid access to memory location.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SWAPERROR">
            <summary>
            Error performing in page operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STACK_OVERFLOW">
            <summary>
            Recursion too deep; the stack overflowed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_MESSAGE">
            <summary>
            The window cannot act on the sent message.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CAN_NOT_COMPLETE">
            <summary>
            Cannot complete this function.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_FLAGS">
            <summary>
            Invalid flags.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNRECOGNIZED_VOLUME">
            <summary>
            The volume does not contain a recognized file system. Please make sure that all required file system drivers are loaded and that the volume is not corrupted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FILE_INVALID">
            <summary>
            The volume for a file has been externally altered so that the opened file is no longer valid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FULLSCREEN_MODE">
            <summary>
            The requested operation cannot be performed in full-screen mode.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_TOKEN">
            <summary>
            An attempt was made to reference a token that does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BADDB">
            <summary>
            The configuration registry database is corrupt.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BADKEY">
            <summary>
            The configuration registry key is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANTOPEN">
            <summary>
            The configuration registry key could not be opened.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANTREAD">
            <summary>
            The configuration registry key could not be read.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANTWRITE">
            <summary>
            The configuration registry key could not be written.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REGISTRY_RECOVERED">
            <summary>
            One of the files in the registry database had to be recovered by use of a log or alternate copy. The recovery was successful.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REGISTRY_CORRUPT">
            <summary>
            The registry is corrupted. The structure of one of the files containing registry data is corrupted, or the system's memory image of the file is corrupted, or the file could not be recovered because the alternate copy or log was absent or corrupted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REGISTRY_IO_FAILED">
            <summary>
            An I/O operation initiated by the registry failed irrecoverably. The registry could not read in, or write out, or flush, one of the files that contain the system's image of the registry.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_REGISTRY_FILE">
            <summary>
            The system has attempted to load or restore a file into the registry, but the specified file is not in a registry file format.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_KEY_DELETED">
            <summary>
            Illegal operation attempted on a registry key that has been marked for deletion.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_LOG_SPACE">
            <summary>
            System could not allocate the required space in a registry log.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_KEY_HAS_CHILDREN">
            <summary>
            Cannot create a symbolic link in a registry key that already has subkeys or values.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CHILD_MUST_BE_VOLATILE">
            <summary>
            Cannot create a stable subkey under a volatile parent key.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOTIFY_ENUM_DIR">
            <summary>
            A notify change request is being completed and the information is not being returned in the caller's buffer. The caller now needs to enumerate the files to find the changes.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEPENDENT_SERVICES_RUNNING">
            <summary>
            A stop control has been sent to a service that other running services are dependent on.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_SERVICE_CONTROL">
            <summary>
            The requested control is not valid for this service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVICE_REQUEST_TIMEOUT">
            <summary>
            The service did not respond to the start or control request in a timely fashion.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVICE_NO_THREAD">
            <summary>
            A thread could not be created for the service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVICE_DATABASE_LOCKED">
            <summary>
            The service database is locked.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVICE_ALREADY_RUNNING">
            <summary>
            An instance of the service is already running.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_SERVICE_ACCOUNT">
            <summary>
            The account name is invalid or does not exist, or the password is invalid for the account name specified.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVICE_DISABLED">
            <summary>
            The service cannot be started, either because it is disabled or because it has no enabled devices associated with it.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CIRCULAR_DEPENDENCY">
            <summary>
            Circular service dependency was specified.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVICE_DOES_NOT_EXIST">
            <summary>
            The specified service does not exist as an installed service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVICE_CANNOT_ACCEPT_CTRL">
            <summary>
            The service cannot accept control messages at this time.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVICE_NOT_ACTIVE">
            <summary>
            The service has not been started.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FAILED_SERVICE_CONTROLLER_CONNECT">
            <summary>
            The service process could not connect to the service controller.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EXCEPTION_IN_SERVICE">
            <summary>
            An exception occurred in the service when handling the control request.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DATABASE_DOES_NOT_EXIST">
            <summary>
            The database specified does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVICE_SPECIFIC_ERROR">
            <summary>
            The service has returned a service-specific error code.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PROCESS_ABORTED">
            <summary>
            The process terminated unexpectedly.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVICE_DEPENDENCY_FAIL">
            <summary>
            The dependency service or group failed to start.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVICE_LOGON_FAILED">
            <summary>
            The service did not start due to a logon failure.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVICE_START_HANG">
            <summary>
            After starting, the service hung in a start-pending state.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_SERVICE_LOCK">
            <summary>
            The specified service database lock is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVICE_MARKED_FOR_DELETE">
            <summary>
            The specified service has been marked for deletion.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVICE_EXISTS">
            <summary>
            The specified service already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ALREADY_RUNNING_LKG">
            <summary>
            The system is currently running with the last-known-good configuration.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVICE_DEPENDENCY_DELETED">
            <summary>
            The dependency service does not exist or has been marked for deletion.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BOOT_ALREADY_ACCEPTED">
            <summary>
            The current boot has already been accepted for use as the last-known-good control set.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVICE_NEVER_STARTED">
            <summary>
            No attempts to start the service have been made since the last boot.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DUPLICATE_SERVICE_NAME">
            <summary>
            The name is already in use as either a service name or a service display name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DIFFERENT_SERVICE_ACCOUNT">
            <summary>
            The account specified for this service is different from the account specified for other services running in the same process.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANNOT_DETECT_DRIVER_FAILURE">
            <summary>
            Failure actions can only be set for Win32 services, not for drivers.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANNOT_DETECT_PROCESS_ABORT">
            <summary>
            This service runs in the same process as the service control manager. Therefore, the service control manager cannot take action if this service's process terminates unexpectedly.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_RECOVERY_PROGRAM">
            <summary>
            No recovery program has been configured for this service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVICE_NOT_IN_EXE">
            <summary>
            The executable program that this service is configured to run in does not implement the service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_SAFEBOOT_SERVICE">
            <summary>
            This service cannot be started in Safe Mode.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_END_OF_MEDIA">
            <summary>
            The physical end of the tape has been reached.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FILEMARK_DETECTED">
            <summary>
            A tape access reached a filemark.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BEGINNING_OF_MEDIA">
            <summary>
            The beginning of the tape or a partition was encountered.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SETMARK_DETECTED">
            <summary>
            A tape access reached the end of a set of files.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_DATA_DETECTED">
            <summary>
            No more data is on the tape.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PARTITION_FAILURE">
            <summary>
            Tape could not be partitioned.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_BLOCK_LENGTH">
            <summary>
            When accessing a new tape of a multi-volume partition, the current block size is incorrect.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEVICE_NOT_PARTITIONED">
            <summary>
            Tape partition information could not be found when loading a tape.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNABLE_TO_LOCK_MEDIA">
            <summary>
            Unable to lock the media eject mechanism.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNABLE_TO_UNLOAD_MEDIA">
            <summary>
            Unable to unload the media.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MEDIA_CHANGED">
            <summary>
            The media in the drive may have changed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BUS_RESET">
            <summary>
            The I/O bus was reset.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_MEDIA_IN_DRIVE">
            <summary>
            No media in drive.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_UNICODE_TRANSLATION">
            <summary>
            No mapping for the Unicode character exists in the target multi-byte code page.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DLL_INIT_FAILED">
            <summary>
            A dynamic link library (DLL) initialization routine failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SHUTDOWN_IN_PROGRESS">
            <summary>
            A system shutdown is in progress.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_SHUTDOWN_IN_PROGRESS">
            <summary>
            Unable to abort the system shutdown because no shutdown was in progress.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IO_DEVICE">
            <summary>
            The request could not be performed because of an I/O device error.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERIAL_NO_DEVICE">
            <summary>
            No serial device was successfully initialized. The serial driver will unload.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IRQ_BUSY">
            <summary>
            Unable to open a device that was sharing an interrupt request (IRQ) with other devices. At least one other device that uses that IRQ was already opened.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MORE_WRITES">
            <summary>
            A serial I/O operation was completed by another write to the serial port. The IOCTL_SERIAL_XOFF_COUNTER reached zero.)
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_COUNTER_TIMEOUT">
            <summary>
            A serial I/O operation completed because the timeout period expired. The IOCTL_SERIAL_XOFF_COUNTER did not reach zero.)
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FLOPPY_ID_MARK_NOT_FOUND">
            <summary>
            No ID address mark was found on the floppy disk.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FLOPPY_WRONG_CYLINDER">
            <summary>
            Mismatch between the floppy disk sector ID field and the floppy disk controller track address.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FLOPPY_UNKNOWN_ERROR">
            <summary>
            The floppy disk controller reported an error that is not recognized by the floppy disk driver.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FLOPPY_BAD_REGISTERS">
            <summary>
            The floppy disk controller returned inconsistent results in its registers.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DISK_RECALIBRATE_FAILED">
            <summary>
            While accessing the hard disk, a recalibrate operation failed, even after retries.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DISK_OPERATION_FAILED">
            <summary>
            While accessing the hard disk, a disk operation failed even after retries.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DISK_RESET_FAILED">
            <summary>
            While accessing the hard disk, a disk controller reset was needed, but even that failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EOM_OVERFLOW">
            <summary>
            Physical end of tape encountered.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_ENOUGH_SERVER_MEMORY">
            <summary>
            Not enough server storage is available to process this command.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_POSSIBLE_DEADLOCK">
            <summary>
            A potential deadlock condition has been detected.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MAPPED_ALIGNMENT">
            <summary>
            The base address or the file offset specified does not have the proper alignment.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SET_POWER_STATE_VETOED">
            <summary>
            An attempt to change the system power state was vetoed by another application or driver.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SET_POWER_STATE_FAILED">
            <summary>
            The system BIOS failed an attempt to change the system power state.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TOO_MANY_LINKS">
            <summary>
            An attempt was made to create more links on a file than the file system supports.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_OLD_WIN_VERSION">
            <summary>
            The specified program requires a newer version of Windows.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_APP_WRONG_OS">
            <summary>
            The specified program is not a Windows or MS-DOS program.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SINGLE_INSTANCE_APP">
            <summary>
            Cannot start more than one instance of the specified program.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RMODE_APP">
            <summary>
            The specified program was written for an earlier version of Windows.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_DLL">
            <summary>
            One of the library files needed to run this application is damaged.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_ASSOCIATION">
            <summary>
            No application is associated with the specified file for this operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DDE_FAIL">
            <summary>
            An error occurred in sending the command to the application.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DLL_NOT_FOUND">
            <summary>
            One of the library files needed to run this application cannot be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_MORE_USER_HANDLES">
            <summary>
            The current process has used all of its system allowance of handles for Window Manager objects.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MESSAGE_SYNC_ONLY">
            <summary>
            The message can be used only with synchronous operations.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SOURCE_ELEMENT_EMPTY">
            <summary>
            The indicated source element has no media.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DESTINATION_ELEMENT_FULL">
            <summary>
            The indicated destination element already contains media.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ILLEGAL_ELEMENT_ADDRESS">
            <summary>
            The indicated element does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MAGAZINE_NOT_PRESENT">
            <summary>
            The indicated element is part of a magazine that is not present.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEVICE_REINITIALIZATION_NEEDED">
            <summary>
            The indicated device requires reinitialization due to hardware errors.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEVICE_REQUIRES_CLEANING">
            <summary>
            The device has indicated that cleaning is required before further operations are attempted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEVICE_DOOR_OPEN">
            <summary>
            The device has indicated that its door is open.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEVICE_NOT_CONNECTED">
            <summary>
            The device is not connected.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_FOUND">
            <summary>
            Element not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_MATCH">
            <summary>
            There was no match for the specified key in the index.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SET_NOT_FOUND">
            <summary>
            The property set specified does not exist on the object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_POINT_NOT_FOUND">
            <summary>
            The point passed to GetMouseMovePoints is not in the buffer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_TRACKING_SERVICE">
            <summary>
            The tracking (workstation) service is not running.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_VOLUME_ID">
            <summary>
            The Volume ID could not be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNABLE_TO_REMOVE_REPLACED">
            <summary>
            Unable to remove the file to be replaced.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNABLE_TO_MOVE_REPLACEMENT">
            <summary>
            Unable to move the replacement file to the file to be replaced. The file to be replaced has retained its original name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNABLE_TO_MOVE_REPLACEMENT_2">
            <summary>
            Unable to move the replacement file to the file to be replaced. The file to be replaced has been renamed using the backup name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_JOURNAL_DELETE_IN_PROGRESS">
            <summary>
            The volume change journal is being deleted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_JOURNAL_NOT_ACTIVE">
            <summary>
            The volume change journal is not active.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_POTENTIAL_FILE_FOUND">
            <summary>
            A file was found, but it may not be the correct file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_JOURNAL_ENTRY_DELETED">
            <summary>
            The journal entry has been deleted from the journal.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SHUTDOWN_IS_SCHEDULED">
            <summary>
            A system shutdown has already been scheduled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SHUTDOWN_USERS_LOGGED_ON">
            <summary>
            The system shutdown cannot be initiated because there are other users logged on to the computer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_DEVICE">
            <summary>
            The specified device name is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CONNECTION_UNAVAIL">
            <summary>
            The device is not currently connected but it is a remembered connection.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEVICE_ALREADY_REMEMBERED">
            <summary>
            The local device name has a remembered connection to another network resource.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_NET_OR_BAD_PATH">
            <summary>
            The network path was either typed incorrectly, does not exist, or the network provider is not currently available. Please try retyping the path or contact your network administrator.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_PROVIDER">
            <summary>
            The specified network provider name is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANNOT_OPEN_PROFILE">
            <summary>
            Unable to open the network connection profile.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_PROFILE">
            <summary>
            The network connection profile is corrupted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_CONTAINER">
            <summary>
            Cannot enumerate a non-container.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EXTENDED_ERROR">
            <summary>
            An extended error has occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_GROUPNAME">
            <summary>
            The format of the specified group name is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_COMPUTERNAME">
            <summary>
            The format of the specified computer name is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_EVENTNAME">
            <summary>
            The format of the specified event name is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_DOMAINNAME">
            <summary>
            The format of the specified domain name is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_SERVICENAME">
            <summary>
            The format of the specified service name is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_NETNAME">
            <summary>
            The format of the specified network name is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_SHARENAME">
            <summary>
            The format of the specified share name is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_PASSWORDNAME">
            <summary>
            The format of the specified password is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_MESSAGENAME">
            <summary>
            The format of the specified message name is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_MESSAGEDEST">
            <summary>
            The format of the specified message destination is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SESSION_CREDENTIAL_CONFLICT">
            <summary>
            Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed. Disconnect all previous connections to the server or shared resource and try again.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REMOTE_SESSION_LIMIT_EXCEEDED">
            <summary>
            An attempt was made to establish a session to a network server, but there are already too many sessions established to that server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DUP_DOMAINNAME">
            <summary>
            The workgroup or domain name is already in use by another computer on the network.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_NETWORK">
            <summary>
            The network is not present or not started.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANCELLED">
            <summary>
            The operation was canceled by the user.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_USER_MAPPED_FILE">
            <summary>
            The requested operation cannot be performed on a file with a user-mapped section open.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CONNECTION_REFUSED">
            <summary>
            The remote computer refused the network connection.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_GRACEFUL_DISCONNECT">
            <summary>
            The network connection was gracefully closed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ADDRESS_ALREADY_ASSOCIATED">
            <summary>
            The network transport endpoint already has an address associated with it.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ADDRESS_NOT_ASSOCIATED">
            <summary>
            An address has not yet been associated with the network endpoint.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CONNECTION_INVALID">
            <summary>
            An operation was attempted on a nonexistent network connection.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CONNECTION_ACTIVE">
            <summary>
            An invalid operation was attempted on an active network connection.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NETWORK_UNREACHABLE">
            <summary>
            The network location cannot be reached. For information about network troubleshooting, see Windows Help.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_HOST_UNREACHABLE">
            <summary>
            The network location cannot be reached. For information about network troubleshooting, see Windows Help.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PROTOCOL_UNREACHABLE">
            <summary>
            The network location cannot be reached. For information about network troubleshooting, see Windows Help.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PORT_UNREACHABLE">
            <summary>
            No service is operating at the destination network endpoint on the remote system.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REQUEST_ABORTED">
            <summary>
            The request was aborted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CONNECTION_ABORTED">
            <summary>
            The network connection was aborted by the local system.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RETRY">
            <summary>
            The operation could not be completed. A retry should be performed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CONNECTION_COUNT_LIMIT">
            <summary>
            A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOGIN_TIME_RESTRICTION">
            <summary>
            Attempting to log in during an unauthorized time of day for this account.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOGIN_WKSTA_RESTRICTION">
            <summary>
            The account is not authorized to log in from this station.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INCORRECT_ADDRESS">
            <summary>
            The network address could not be used for the operation requested.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ALREADY_REGISTERED">
            <summary>
            The service is already registered.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVICE_NOT_FOUND">
            <summary>
            The specified service does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_AUTHENTICATED">
            <summary>
            The operation being requested was not performed because the user has not been authenticated.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_LOGGED_ON">
            <summary>
            The operation being requested was not performed because the user has not logged on to the network. The specified service does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CONTINUE">
            <summary>
            Continue with work in progress.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ALREADY_INITIALIZED">
            <summary>
            An attempt was made to perform an initialization operation when initialization has already been completed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_MORE_DEVICES">
            <summary>
            No more local devices.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_SUCH_SITE">
            <summary>
            The specified site does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DOMAIN_CONTROLLER_EXISTS">
            <summary>
            A domain controller with the specified name already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ONLY_IF_CONNECTED">
            <summary>
            This operation is supported only when you are connected to the server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_OVERRIDE_NOCHANGES">
            <summary>
            The group policy framework should call the extension even if there are no changes.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_USER_PROFILE">
            <summary>
            The specified user does not have a valid profile.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_SUPPORTED_ON_SBS">
            <summary>
            This operation is not supported on a computer running Windows Server 2003 for Small Business Server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVER_SHUTDOWN_IN_PROGRESS">
            <summary>
            The server machine is shutting down.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_HOST_DOWN">
            <summary>
            The remote system is not available. For information about network troubleshooting, see Windows Help.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NON_ACCOUNT_SID">
            <summary>
            The security identifier provided is not from an account domain.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NON_DOMAIN_SID">
            <summary>
            The security identifier provided does not have a domain component.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_APPHELP_BLOCK">
            <summary>
            AppHelp dialog canceled thus preventing the application from starting.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ACCESS_DISABLED_BY_POLICY">
            <summary>
            This program is blocked by group policy. For more information, contact your system administrator.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REG_NAT_CONSUMPTION">
            <summary>
            A program attempt to use an invalid register value. Normally caused by an uninitialized register. This error is Itanium specific.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CSCSHARE_OFFLINE">
            <summary>
            The share is currently offline or does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PKINIT_FAILURE">
            <summary>
            The Kerberos protocol encountered an error while validating the KDC certificate during smart card logon. There is more information in the system event log.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SMARTCARD_SUBSYSTEM_FAILURE">
            <summary>
            The Kerberos protocol encountered an error while attempting to utilize the smart card subsystem.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DOWNGRADE_DETECTED">
            <summary>
            The system cannot contact a domain controller to service the authentication request. Please try again later.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MACHINE_LOCKED">
            <summary>
            The machine is locked and cannot be shut down without the force option.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CALLBACK_SUPPLIED_INVALID_DATA">
            <summary>
            An application-defined callback gave invalid data when called.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED">
            <summary>
            The group policy framework should call the extension in the synchronous foreground policy refresh.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DRIVER_BLOCKED">
            <summary>
            This driver has been blocked from loading.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_IMPORT_OF_NON_DLL">
            <summary>
            A dynamic link library (DLL) referenced a module that was neither a DLL nor the process's executable image.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ACCESS_DISABLED_WEBBLADE">
            <summary>
            Windows cannot open this program since it has been disabled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER">
            <summary>
            Windows cannot open this program because the license enforcement system has been tampered with or become corrupted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RECOVERY_FAILURE">
            <summary>
            A transaction recover failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ALREADY_FIBER">
            <summary>
            The current thread has already been converted to a fiber.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ALREADY_THREAD">
            <summary>
            The current thread has already been converted from a fiber.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STACK_BUFFER_OVERRUN">
            <summary>
            The system detected an overrun of a stack-based buffer in this application. This overrun could potentially allow a malicious user to gain control of this application.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PARAMETER_QUOTA_EXCEEDED">
            <summary>
            Data present in one of the parameters is more than the function can operate on.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEBUGGER_INACTIVE">
            <summary>
            An attempt to do an operation on a debug object failed because the object is in the process of being deleted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DELAY_LOAD_FAILED">
            <summary>
            An attempt to delay-load a .dll or get a function address in a delay-loaded .dll failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_VDM_DISALLOWED">
            <summary>
            %1 is a 16-bit application. You do not have permissions to execute 16-bit applications. Check your permissions with your system administrator.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNIDENTIFIED_ERROR">
            <summary>
            Insufficient information exists to identify the cause of failure.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_CRUNTIME_PARAMETER">
            <summary>
            The parameter passed to a C runtime function is incorrect.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BEYOND_VDL">
            <summary>
            The operation occurred beyond the valid data length of the file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INCOMPATIBLE_SERVICE_SID_TYPE">
            <summary>
            The service start failed since one or more services in the same process have an incompatible service SID type setting. A service with restricted service SID type can only coexist in the same process with other services with a restricted SID type. If the service SID type for this service was just configured, the hosting process must be restarted in order to start this service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DRIVER_PROCESS_TERMINATED">
            <summary>
            The process hosting the driver for this device has been terminated.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IMPLEMENTATION_LIMIT">
            <summary>
            An operation attempted to exceed an implementation-defined limit.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PROCESS_IS_PROTECTED">
            <summary>
            Either the target process, or the target thread's containing process, is a protected process.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVICE_NOTIFY_CLIENT_LAGGING">
            <summary>
            The service notification client is lagging too far behind the current state of services in the machine.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DISK_QUOTA_EXCEEDED">
            <summary>
            The requested file operation failed because the storage quota was exceeded. To free up disk space, move files to a different location or delete unnecessary files. For more information, contact your system administrator.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CONTENT_BLOCKED">
            <summary>
            The requested file operation failed because the storage policy blocks that type of file. For more information, contact your system administrator.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INCOMPATIBLE_SERVICE_PRIVILEGE">
            <summary>
            A privilege that the service requires to function properly does not exist in the service account configuration. You may use the Services Microsoft Management Console (MMC) snap-in (services.msc) and the Local Security Settings MMC snap-in (secpol.msc) to view the service configuration and the account configuration.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_APP_HANG">
            <summary>
            A thread involved in this operation appears to be unresponsive.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_LABEL">
            <summary>
            Indicates a particular Security ID may not be assigned as the label of an object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_ALL_ASSIGNED">
            <summary>
            Not all privileges or groups referenced are assigned to the caller.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SOME_NOT_MAPPED">
            <summary>
            Some mapping between account names and security IDs was not done.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_QUOTAS_FOR_ACCOUNT">
            <summary>
            No system quota limits are specifically set for this account.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOCAL_USER_SESSION_KEY">
            <summary>
            No encryption key is available. A well-known encryption key was returned.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NULL_LM_PASSWORD">
            <summary>
            The password is too complex to be converted to a LAN Manager password. The LAN Manager password returned is a NULL string.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNKNOWN_REVISION">
            <summary>
            The revision level is unknown.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REVISION_MISMATCH">
            <summary>
            Indicates two revision levels are incompatible.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_OWNER">
            <summary>
            This security ID may not be assigned as the owner of this object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_PRIMARY_GROUP">
            <summary>
            This security ID may not be assigned as the primary group of an object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_IMPERSONATION_TOKEN">
            <summary>
            An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANT_DISABLE_MANDATORY">
            <summary>
            The group may not be disabled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_LOGON_SERVERS">
            <summary>
            There are currently no logon servers available to service the logon request.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_SUCH_LOGON_SESSION">
            <summary>
            A specified logon session does not exist. It may already have been terminated.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_SUCH_PRIVILEGE">
            <summary>
            A specified privilege does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PRIVILEGE_NOT_HELD">
            <summary>
            A required privilege is not held by the client.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_ACCOUNT_NAME">
            <summary>
            The name provided is not a properly formed account name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_USER_EXISTS">
            <summary>
            The specified account already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_SUCH_USER">
            <summary>
            The specified account does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_GROUP_EXISTS">
            <summary>
            The specified group already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_SUCH_GROUP">
            <summary>
            The specified group does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MEMBER_IN_GROUP">
            <summary>
            Either the specified user account is already a member of the specified group, or the specified group cannot be deleted because it contains a member.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MEMBER_NOT_IN_GROUP">
            <summary>
            The specified user account is not a member of the specified group account.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LAST_ADMIN">
            <summary>
            This operation is disallowed as it could result in an administration account being disabled, deleted or unable to log on.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WRONG_PASSWORD">
            <summary>
            Unable to update the password. The value provided as the current password is incorrect.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ILL_FORMED_PASSWORD">
            <summary>
            Unable to update the password. The value provided for the new password contains values that are not allowed in passwords.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PASSWORD_RESTRICTION">
            <summary>
            Unable to update the password. The value provided for the new password does not meet the length, complexity, or history requirements of the domain.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOGON_FAILURE">
            <summary>
            The user name or password is incorrect.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ACCOUNT_RESTRICTION">
            <summary>
            Account restrictions are preventing this user from signing in. For example: blank passwords aren't allowed, sign-in times are limited, or a policy restriction has been enforced.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_LOGON_HOURS">
            <summary>
            Your account has time restrictions that keep you from signing in right now.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_WORKSTATION">
            <summary>
            This user isn't allowed to sign in to this computer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PASSWORD_EXPIRED">
            <summary>
            The password for this account has expired.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ACCOUNT_DISABLED">
            <summary>
            This user can't sign in because this account is currently disabled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NONE_MAPPED">
            <summary>
            No mapping between account names and security IDs was done.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TOO_MANY_LUIDS_REQUESTED">
            <summary>
            Too many local user identifiers (LUIDs) were requested at one time.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LUIDS_EXHAUSTED">
            <summary>
            No more local user identifiers (LUIDs) are available.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_SUB_AUTHORITY">
            <summary>
            The sub authority part of a security ID is invalid for this particular use.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_ACL">
            <summary>
            The access control list (ACL) structure is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_SID">
            <summary>
            The security ID structure is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_SECURITY_DESCR">
            <summary>
            The security descriptor structure is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_INHERITANCE_ACL">
            <summary>
            The inherited access control list (ACL) or access control entry (ACE) could not be built.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVER_DISABLED">
            <summary>
            The server is currently disabled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVER_NOT_DISABLED">
            <summary>
            The server is currently enabled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_ID_AUTHORITY">
            <summary>
            The value provided was an invalid value for an identifier authority.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ALLOTTED_SPACE_EXCEEDED">
            <summary>
            No more memory is available for security information updates.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_GROUP_ATTRIBUTES">
            <summary>
            The specified attributes are invalid, or incompatible with the attributes for the group as a whole.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_IMPERSONATION_LEVEL">
            <summary>
            Either a required impersonation level was not provided, or the provided impersonation level is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANT_OPEN_ANONYMOUS">
            <summary>
            Cannot open an anonymous level security token.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_VALIDATION_CLASS">
            <summary>
            The validation information class requested was invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_TOKEN_TYPE">
            <summary>
            The type of the token is inappropriate for its attempted use.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_SECURITY_ON_OBJECT">
            <summary>
            Unable to perform a security operation on an object that has no associated security.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANT_ACCESS_DOMAIN_INFO">
            <summary>
            Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_SERVER_STATE">
            <summary>
            The security account manager (SAM) or local security authority (LSA) server was in the wrong state to perform the security operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_DOMAIN_STATE">
            <summary>
            The domain was in the wrong state to perform the security operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_DOMAIN_ROLE">
            <summary>
            This operation is only allowed for the Primary Domain Controller of the domain.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_SUCH_DOMAIN">
            <summary>
            The specified domain either does not exist or could not be contacted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DOMAIN_EXISTS">
            <summary>
            The specified domain already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DOMAIN_LIMIT_EXCEEDED">
            <summary>
            An attempt was made to exceed the limit on the number of domains per server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INTERNAL_DB_CORRUPTION">
            <summary>
            Unable to complete the requested operation because of either a catastrophic media failure or a data structure corruption on the disk.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INTERNAL_ERROR">
            <summary>
            An internal error occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_GENERIC_NOT_MAPPED">
            <summary>
            Generic access types were contained in an access mask which should already be mapped to non-generic types.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_DESCRIPTOR_FORMAT">
            <summary>
            A security descriptor is not in the right format (absolute or self-relative).
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_LOGON_PROCESS">
            <summary>
            The requested action is restricted for use by logon processes only. The calling process has not registered as a logon process.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOGON_SESSION_EXISTS">
            <summary>
            Cannot start a new logon session with an ID that is already in use.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_SUCH_PACKAGE">
            <summary>
            A specified authentication package is unknown.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_LOGON_SESSION_STATE">
            <summary>
            The logon session is not in a state that is consistent with the requested operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOGON_SESSION_COLLISION">
            <summary>
            The logon session ID is already in use.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_LOGON_TYPE">
            <summary>
            A logon request contained an invalid logon type value.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANNOT_IMPERSONATE">
            <summary>
            Unable to impersonate using a named pipe until data has been read from that pipe.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RXACT_INVALID_STATE">
            <summary>
            The transaction state of a registry subtree is incompatible with the requested operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RXACT_COMMIT_FAILURE">
            <summary>
            An internal security database corruption has been encountered.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SPECIAL_ACCOUNT">
            <summary>
            Cannot perform this operation on built-in accounts.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SPECIAL_GROUP">
            <summary>
            Cannot perform this operation on this built-in special group.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SPECIAL_USER">
            <summary>
            Cannot perform this operation on this built-in special user.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MEMBERS_PRIMARY_GROUP">
            <summary>
            The user cannot be removed from a group because the group is currently the user's primary group.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TOKEN_ALREADY_IN_USE">
            <summary>
            The token is already in use as a primary token.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_SUCH_ALIAS">
            <summary>
            The specified local group does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MEMBER_NOT_IN_ALIAS">
            <summary>
            The specified account name is not a member of the group.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MEMBER_IN_ALIAS">
            <summary>
            The specified account name is already a member of the group.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ALIAS_EXISTS">
            <summary>
            The specified local group already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOGON_NOT_GRANTED">
            <summary>
            Logon failure: the user has not been granted the requested logon type at this computer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TOO_MANY_SECRETS">
            <summary>
            The maximum number of secrets that may be stored in a single system has been exceeded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SECRET_TOO_LONG">
            <summary>
            The length of a secret exceeds the maximum length allowed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INTERNAL_DB_ERROR">
            <summary>
            The local security authority database contains an internal inconsistency.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TOO_MANY_CONTEXT_IDS">
            <summary>
            During a logon attempt, the user's security context accumulated too many security IDs.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOGON_TYPE_NOT_GRANTED">
            <summary>
            Logon failure: the user has not been granted the requested logon type at this computer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NT_CROSS_ENCRYPTION_REQUIRED">
            <summary>
            A cross-encrypted password is necessary to change a user password.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_SUCH_MEMBER">
            <summary>
            A member could not be added to or removed from the local group because the member does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_MEMBER">
            <summary>
            A new member could not be added to a local group because the member has the wrong account type.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TOO_MANY_SIDS">
            <summary>
            Too many security IDs have been specified.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LM_CROSS_ENCRYPTION_REQUIRED">
            <summary>
            A cross-encrypted password is necessary to change this user password.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_INHERITANCE">
            <summary>
            Indicates an ACL contains no inheritable components.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FILE_CORRUPT">
            <summary>
            The file or directory is corrupted and unreadable.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DISK_CORRUPT">
            <summary>
            The disk structure is corrupted and unreadable.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_USER_SESSION_KEY">
            <summary>
            There is no user session key for the specified logon session.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LICENSE_QUOTA_EXCEEDED">
            <summary>
            The service being accessed is licensed for a particular number of connections. No more connections can be made to the service at this time because there are already as many connections as the service can accept.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WRONG_TARGET_NAME">
            <summary>
            The target account name is incorrect.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MUTUAL_AUTH_FAILED">
            <summary>
            Mutual Authentication failed. The server's password is out of date at the domain controller.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TIME_SKEW">
            <summary>
            There is a time and/or date difference between the client and server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CURRENT_DOMAIN_NOT_ALLOWED">
            <summary>
            This operation cannot be performed on the current domain.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_WINDOW_HANDLE">
            <summary>
            Invalid window handle.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_MENU_HANDLE">
            <summary>
            Invalid menu handle.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_CURSOR_HANDLE">
            <summary>
            Invalid cursor handle.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_ACCEL_HANDLE">
            <summary>
            Invalid accelerator table handle.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_HOOK_HANDLE">
            <summary>
            Invalid hook handle.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_DWP_HANDLE">
            <summary>
            Invalid handle to a multiple-window position structure.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TLW_WITH_WSCHILD">
            <summary>
            Cannot create a top-level child window.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANNOT_FIND_WND_CLASS">
            <summary>
            Cannot find window class.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WINDOW_OF_OTHER_THREAD">
            <summary>
            Invalid window; it belongs to other thread.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_HOTKEY_ALREADY_REGISTERED">
            <summary>
            Hot key is already registered.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLASS_ALREADY_EXISTS">
            <summary>
            Class already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLASS_DOES_NOT_EXIST">
            <summary>
            Class does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLASS_HAS_WINDOWS">
            <summary>
            Class still has open windows.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_INDEX">
            <summary>
            Invalid index.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_ICON_HANDLE">
            <summary>
            Invalid icon handle.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PRIVATE_DIALOG_INDEX">
            <summary>
            Using private DIALOG window words.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LISTBOX_ID_NOT_FOUND">
            <summary>
            The list box identifier was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_WILDCARD_CHARACTERS">
            <summary>
            No wild cards were found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLIPBOARD_NOT_OPEN">
            <summary>
            Thread does not have a clipboard open.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_HOTKEY_NOT_REGISTERED">
            <summary>
            Hot key is not registered.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WINDOW_NOT_DIALOG">
            <summary>
            The window is not a valid dialog window.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CONTROL_ID_NOT_FOUND">
            <summary>
            Control ID not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_COMBOBOX_MESSAGE">
            <summary>
            Invalid message for a combo box because it does not have an edit control.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WINDOW_NOT_COMBOBOX">
            <summary>
            The window is not a combo box.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_EDIT_HEIGHT">
            <summary>
            Height must be less than 256.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DC_NOT_FOUND">
            <summary>
            Invalid device context (DC) handle.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_HOOK_FILTER">
            <summary>
            Invalid hook procedure type.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_FILTER_PROC">
            <summary>
            Invalid hook procedure.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_HOOK_NEEDS_HMOD">
            <summary>
            Cannot set nonlocal hook without a module handle.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_GLOBAL_ONLY_HOOK">
            <summary>
            This hook procedure can only be set globally.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_JOURNAL_HOOK_SET">
            <summary>
            The journal hook procedure is already installed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_HOOK_NOT_INSTALLED">
            <summary>
            The hook procedure is not installed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_LB_MESSAGE">
            <summary>
            Invalid message for single-selection list box.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SETCOUNT_ON_BAD_LB">
            <summary>
            LB_SETCOUNT sent to non-lazy list box.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LB_WITHOUT_TABSTOPS">
            <summary>
            This list box does not support tab stops.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DESTROY_OBJECT_OF_OTHER_THREAD">
            <summary>
            Cannot destroy object created by another thread.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CHILD_WINDOW_MENU">
            <summary>
            Child windows cannot have menus.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_SYSTEM_MENU">
            <summary>
            The window does not have a system menu.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_MSGBOX_STYLE">
            <summary>
            Invalid message box style.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_SPI_VALUE">
            <summary>
            Invalid system-wide (SPI_*) parameter.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SCREEN_ALREADY_LOCKED">
            <summary>
            Screen already locked.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_HWNDS_HAVE_DIFF_PARENT">
            <summary>
            All handles to windows in a multiple-window position structure must have the same parent.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_CHILD_WINDOW">
            <summary>
            The window is not a child window.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_GW_COMMAND">
            <summary>
            Invalid GW_* command.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_THREAD_ID">
            <summary>
            Invalid thread identifier.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NON_MDICHILD_WINDOW">
            <summary>
            Cannot process a message from a window that is not a multiple document interface (MDI) window.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_POPUP_ALREADY_ACTIVE">
            <summary>
            Popup menu already active.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_SCROLLBARS">
            <summary>
            The window does not have scroll bars.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_SCROLLBAR_RANGE">
            <summary>
            Scroll bar range cannot be greater than MAXLONG.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_SHOWWIN_COMMAND">
            <summary>
            Cannot show or remove the window in the way specified.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_SYSTEM_RESOURCES">
            <summary>
            Insufficient system resources exist to complete the requested service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NONPAGED_SYSTEM_RESOURCES">
            <summary>
            Insufficient system resources exist to complete the requested service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PAGED_SYSTEM_RESOURCES">
            <summary>
            Insufficient system resources exist to complete the requested service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WORKING_SET_QUOTA">
            <summary>
            Insufficient quota to complete the requested service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PAGEFILE_QUOTA">
            <summary>
            Insufficient quota to complete the requested service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_COMMITMENT_LIMIT">
            <summary>
            The paging file is too small for this operation to complete.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MENU_ITEM_NOT_FOUND">
            <summary>
            A menu item was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_KEYBOARD_HANDLE">
            <summary>
            Invalid keyboard layout handle.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_HOOK_TYPE_NOT_ALLOWED">
            <summary>
            Hook type not allowed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION">
            <summary>
            This operation requires an interactive window station.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TIMEOUT">
            <summary>
            This operation returned because the timeout period expired.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_MONITOR_HANDLE">
            <summary>
            Invalid monitor handle.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INCORRECT_SIZE">
            <summary>
            Incorrect size argument.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SYMLINK_CLASS_DISABLED">
            <summary>
            The symbolic link cannot be followed because its type is disabled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SYMLINK_NOT_SUPPORTED">
            <summary>
            This application does not support the current operation on symbolic links.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_XML_PARSE_ERROR">
            <summary>
            Windows was unable to parse the requested XML data.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_XMLDSIG_ERROR">
            <summary>
            An error was encountered while processing an XML digital signature.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESTART_APPLICATION">
            <summary>
            This application must be restarted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WRONG_COMPARTMENT">
            <summary>
            The caller made the connection request in the wrong routing compartment.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_AUTHIP_FAILURE">
            <summary>
            There was an AuthIP failure when attempting to connect to the remote host.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_NVRAM_RESOURCES">
            <summary>
            Insufficient NVRAM resources exist to complete the requested service. A reboot might be required.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_GUI_PROCESS">
            <summary>
            Unable to finish the requested operation because the specified process is not a GUI process.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVENTLOG_FILE_CORRUPT">
            <summary>
            The event log file is corrupted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVENTLOG_CANT_START">
            <summary>
            No event log file could be opened, so the event logging service did not start.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_FILE_FULL">
            <summary>
            The event log file is full.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVENTLOG_FILE_CHANGED">
            <summary>
            The event log file has changed between read operations.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_TASK_NAME">
            <summary>
            The specified task name is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_TASK_INDEX">
            <summary>
            The specified task index is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_THREAD_ALREADY_IN_TASK">
            <summary>
            The specified thread is already joining a task.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_SERVICE_FAILURE">
            <summary>
            The Windows Installer Service could not be accessed. This can occur if the Windows Installer is not correctly installed. Contact your support personnel for assistance.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_USEREXIT">
            <summary>
            User canceled installation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_FAILURE">
            <summary>
            Fatal error during installation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_SUSPEND">
            <summary>
            Installation suspended, incomplete.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNKNOWN_PRODUCT">
            <summary>
            This action is only valid for products that are currently installed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNKNOWN_FEATURE">
            <summary>
            Feature ID not registered.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNKNOWN_COMPONENT">
            <summary>
            Component ID not registered.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNKNOWN_PROPERTY">
            <summary>
            Unknown property.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_HANDLE_STATE">
            <summary>
            Handle is in an invalid state.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_CONFIGURATION">
            <summary>
            The configuration data for this product is corrupt. Contact your support personnel.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INDEX_ABSENT">
            <summary>
            Component qualifier not present.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_SOURCE_ABSENT">
            <summary>
            The installation source for this product is not available. Verify that the source exists and that you can access it.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_PACKAGE_VERSION">
            <summary>
            This installation package cannot be installed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PRODUCT_UNINSTALLED">
            <summary>
            Product is uninstalled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_QUERY_SYNTAX">
            <summary>
            SQL query syntax invalid or unsupported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_FIELD">
            <summary>
            Record field does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEVICE_REMOVED">
            <summary>
            The device has been removed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_ALREADY_RUNNING">
            <summary>
            Another installation is already in progress. Complete that installation before proceeding with this install.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_PACKAGE_OPEN_FAILED">
            <summary>
            This installation package could not be opened. Verify that the package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer package.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_PACKAGE_INVALID">
            <summary>
            This installation package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer package.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_UI_FAILURE">
            <summary>
            There was an error starting the Windows Installer service user interface. Contact your support personnel.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_LOG_FAILURE">
            <summary>
            Error opening installation log file. Verify that the specified log file location exists and that you can write to it.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_LANGUAGE_UNSUPPORTED">
            <summary>
            The language of this installation package is not supported by your system.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_TRANSFORM_FAILURE">
            <summary>
            Error applying transforms. Verify that the specified transform paths are valid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_PACKAGE_REJECTED">
            <summary>
            This installation is forbidden by system policy. Contact your system administrator.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FUNCTION_NOT_CALLED">
            <summary>
            Function could not be executed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FUNCTION_FAILED">
            <summary>
            Function failed during execution.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_TABLE">
            <summary>
            Invalid or unknown table specified.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DATATYPE_MISMATCH">
            <summary>
            Data supplied is of wrong type.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNSUPPORTED_TYPE">
            <summary>
            Data of this type is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CREATE_FAILED">
            <summary>
            The Windows Installer service failed to start. Contact your support personnel.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_TEMP_UNWRITABLE">
            <summary>
            The Temp folder is on a drive that is full or is inaccessible. Free up space on the drive or verify that you have write permission on the Temp folder.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_PLATFORM_UNSUPPORTED">
            <summary>
            This installation package is not supported by this processor type. Contact your product vendor.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_NOTUSED">
            <summary>
            Component not used on this computer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PATCH_PACKAGE_OPEN_FAILED">
            <summary>
            This update package could not be opened. Verify that the update package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer update package.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PATCH_PACKAGE_INVALID">
            <summary>
            This update package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer update package.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PATCH_PACKAGE_UNSUPPORTED">
            <summary>
            This update package cannot be processed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PRODUCT_VERSION">
            <summary>
            Another version of this product is already installed. Installation of this version cannot continue. To configure or remove the existing version of this product, use Add/Remove Programs on the Control Panel.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_COMMAND_LINE">
            <summary>
            Invalid command line argument. Consult the Windows Installer SDK for detailed command line help.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_REMOTE_DISALLOWED">
            <summary>
            Only administrators have permission to add, remove, or configure server software during a Terminal services remote session. If you want to install or configure software on the server, contact your network administrator.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SUCCESS_REBOOT_INITIATED">
            <summary>
            The requested operation completed successfully. The system will be restarted so the changes can take effect.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PATCH_TARGET_NOT_FOUND">
            <summary>
            The upgrade cannot be installed by the Windows Installer service because the program to be upgraded may be missing, or the upgrade may update a different version of the program. Verify that the program to be upgraded exists on your computer and that you have the correct upgrade.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PATCH_PACKAGE_REJECTED">
            <summary>
            The update package is not permitted by software restriction policy.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_TRANSFORM_REJECTED">
            <summary>
            One or more customizations are not permitted by software restriction policy.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_REMOTE_PROHIBITED">
            <summary>
            The Windows Installer does not permit installation from a Remote Desktop Connection.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PATCH_REMOVAL_UNSUPPORTED">
            <summary>
            Uninstallation of the update package is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNKNOWN_PATCH">
            <summary>
            The update is not applied to this product.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PATCH_NO_SEQUENCE">
            <summary>
            No valid sequence could be found for the set of updates.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PATCH_REMOVAL_DISALLOWED">
            <summary>
            Update removal was disallowed by policy.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_PATCH_XML">
            <summary>
            The XML update data is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PATCH_MANAGED_ADVERTISED_PRODUCT">
            <summary>
            Windows Installer does not permit updating of managed advertised products. At least one feature of the product must be installed before applying the update.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_SERVICE_SAFEBOOT">
            <summary>
            The Windows Installer service is not accessible in Safe Mode. Please try again when your computer is not in Safe Mode or you can use System Restore to return your machine to a previous good state.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FAIL_FAST_EXCEPTION">
            <summary>
            A fail fast exception occurred. Exception handlers will not be invoked and the process will be terminated immediately.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_REJECTED">
            <summary>
            The app that you are trying to run is not supported on this version of Windows.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_INVALID_STRING_BINDING">
            <summary>
            The string binding is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_WRONG_KIND_OF_BINDING">
            <summary>
            The binding handle is not the correct type.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_INVALID_BINDING">
            <summary>
            The binding handle is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_PROTSEQ_NOT_SUPPORTED">
            <summary>
            The RPC protocol sequence is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_INVALID_RPC_PROTSEQ">
            <summary>
            The RPC protocol sequence is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_INVALID_STRING_UUID">
            <summary>
            The string universal unique identifier (UUID) is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_INVALID_ENDPOINT_FORMAT">
            <summary>
            The endpoint format is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_INVALID_NET_ADDR">
            <summary>
            The network address is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_NO_ENDPOINT_FOUND">
            <summary>
            No endpoint was found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_INVALID_TIMEOUT">
            <summary>
            The timeout value is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_OBJECT_NOT_FOUND">
            <summary>
            The object universal unique identifier (UUID) was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_ALREADY_REGISTERED">
            <summary>
            The object universal unique identifier (UUID) has already been registered.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_TYPE_ALREADY_REGISTERED">
            <summary>
            The type universal unique identifier (UUID) has already been registered.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_ALREADY_LISTENING">
            <summary>
            The RPC server is already listening.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_NO_PROTSEQS_REGISTERED">
            <summary>
            No protocol sequences have been registered.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_NOT_LISTENING">
            <summary>
            The RPC server is not listening.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_UNKNOWN_MGR_TYPE">
            <summary>
            The manager type is unknown.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_UNKNOWN_IF">
            <summary>
            The interface is unknown.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_NO_BINDINGS">
            <summary>
            There are no bindings.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_NO_PROTSEQS">
            <summary>
            There are no protocol sequences.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_CANT_CREATE_ENDPOINT">
            <summary>
            The endpoint cannot be created.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_OUT_OF_RESOURCES">
            <summary>
            Not enough resources are available to complete this operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_SERVER_UNAVAILABLE">
            <summary>
            The RPC server is unavailable.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_SERVER_TOO_BUSY">
            <summary>
            The RPC server is too busy to complete this operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_INVALID_NETWORK_OPTIONS">
            <summary>
            The network options are invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_NO_CALL_ACTIVE">
            <summary>
            There are no remote procedure calls active on this thread.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_CALL_FAILED">
            <summary>
            The remote procedure call failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_CALL_FAILED_DNE">
            <summary>
            The remote procedure call failed and did not execute.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_PROTOCOL_ERROR">
            <summary>
            A remote procedure call (RPC) protocol error occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_PROXY_ACCESS_DENIED">
            <summary>
            Access to the HTTP proxy is denied.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_UNSUPPORTED_TRANS_SYN">
            <summary>
            The transfer syntax is not supported by the RPC server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_UNSUPPORTED_TYPE">
            <summary>
            The universal unique identifier (UUID) type is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_INVALID_TAG">
            <summary>
            The tag is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_INVALID_BOUND">
            <summary>
            The array bounds are invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_NO_ENTRY_NAME">
            <summary>
            The binding does not contain an entry name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_INVALID_NAME_SYNTAX">
            <summary>
            The name syntax is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_UNSUPPORTED_NAME_SYNTAX">
            <summary>
            The name syntax is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_UUID_NO_ADDRESS">
            <summary>
            No network address is available to use to construct a universal unique identifier (UUID).
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_DUPLICATE_ENDPOINT">
            <summary>
            The endpoint is a duplicate.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_UNKNOWN_AUTHN_TYPE">
            <summary>
            The authentication type is unknown.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_MAX_CALLS_TOO_SMALL">
            <summary>
            The maximum number of calls is too small.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_STRING_TOO_LONG">
            <summary>
            The string is too long.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_PROTSEQ_NOT_FOUND">
            <summary>
            The RPC protocol sequence was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_PROCNUM_OUT_OF_RANGE">
            <summary>
            The procedure number is out of range.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_BINDING_HAS_NO_AUTH">
            <summary>
            The binding does not contain any authentication information.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_UNKNOWN_AUTHN_SERVICE">
            <summary>
            The authentication service is unknown.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_UNKNOWN_AUTHN_LEVEL">
            <summary>
            The authentication level is unknown.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_INVALID_AUTH_IDENTITY">
            <summary>
            The security context is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_UNKNOWN_AUTHZ_SERVICE">
            <summary>
            The authorization service is unknown.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.EPT_S_INVALID_ENTRY">
            <summary>
            The entry is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.EPT_S_CANT_PERFORM_OP">
            <summary>
            The server endpoint cannot perform the operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.EPT_S_NOT_REGISTERED">
            <summary>
            There are no more endpoints available from the endpoint mapper.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_NOTHING_TO_EXPORT">
            <summary>
            No interfaces have been exported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_INCOMPLETE_NAME">
            <summary>
            The entry name is incomplete.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_INVALID_VERS_OPTION">
            <summary>
            The version option is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_NO_MORE_MEMBERS">
            <summary>
            There are no more members.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_NOT_ALL_OBJS_UNEXPORTED">
            <summary>
            There is nothing to unexport.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_INTERFACE_NOT_FOUND">
            <summary>
            The interface was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_ENTRY_ALREADY_EXISTS">
            <summary>
            The entry already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_ENTRY_NOT_FOUND">
            <summary>
            The entry is not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_NAME_SERVICE_UNAVAILABLE">
            <summary>
            The name service is unavailable.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_INVALID_NAF_ID">
            <summary>
            The network address family is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_CANNOT_SUPPORT">
            <summary>
            The requested operation is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_NO_CONTEXT_AVAILABLE">
            <summary>
            No security context is available to allow impersonation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_INTERNAL_ERROR">
            <summary>
            An internal error occurred in a remote procedure call (RPC).
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_ZERO_DIVIDE">
            <summary>
            The RPC server attempted an integer division by zero.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_ADDRESS_ERROR">
            <summary>
            An addressing error occurred in the RPC server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_FP_DIV_ZERO">
            <summary>
            A floating-point operation at the RPC server caused a division by zero.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_FP_UNDERFLOW">
            <summary>
            A floating-point underflow occurred at the RPC server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_FP_OVERFLOW">
            <summary>
            A floating-point overflow occurred at the RPC server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_X_NO_MORE_ENTRIES">
            <summary>
            The list of RPC servers available for the binding of auto handles has been exhausted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_X_SS_CHAR_TRANS_OPEN_FAIL">
            <summary>
            Unable to open the character translation table file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_X_SS_CHAR_TRANS_SHORT_FILE">
            <summary>
            The file containing the character translation table has fewer than 512 bytes.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_X_SS_IN_NULL_CONTEXT">
            <summary>
            A null context handle was passed from the client to the host during a remote procedure call.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_X_SS_CONTEXT_DAMAGED">
            <summary>
            The context handle changed during a remote procedure call.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_X_SS_HANDLES_MISMATCH">
            <summary>
            The binding handles passed to a remote procedure call do not match.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_X_SS_CANNOT_GET_CALL_HANDLE">
            <summary>
            The stub is unable to get the remote procedure call handle.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_X_NULL_REF_POINTER">
            <summary>
            A null reference pointer was passed to the stub.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_X_ENUM_VALUE_OUT_OF_RANGE">
            <summary>
            The enumeration value is out of range.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_X_BYTE_COUNT_TOO_SMALL">
            <summary>
            The byte count is too small.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_X_BAD_STUB_DATA">
            <summary>
            The stub received bad data.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_USER_BUFFER">
            <summary>
            The supplied user buffer is not valid for the requested operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNRECOGNIZED_MEDIA">
            <summary>
            The disk media is not recognized. It may not be formatted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_TRUST_LSA_SECRET">
            <summary>
            The workstation does not have a trust secret.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_TRUST_SAM_ACCOUNT">
            <summary>
            The security database on the server does not have a computer account for this workstation trust relationship.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRUSTED_DOMAIN_FAILURE">
            <summary>
            The trust relationship between the primary domain and the trusted domain failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRUSTED_RELATIONSHIP_FAILURE">
            <summary>
            The trust relationship between this workstation and the primary domain failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRUST_FAILURE">
            <summary>
            The network logon failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_CALL_IN_PROGRESS">
            <summary>
            A remote procedure call is already in progress for this thread.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NETLOGON_NOT_STARTED">
            <summary>
            An attempt was made to logon, but the network logon service was not started.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ACCOUNT_EXPIRED">
            <summary>
            The user's account has expired.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REDIRECTOR_HAS_OPEN_HANDLES">
            <summary>
            The redirector is in use and cannot be unloaded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PRINTER_DRIVER_ALREADY_INSTALLED">
            <summary>
            The specified printer driver is already installed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNKNOWN_PORT">
            <summary>
            The specified port is unknown.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNKNOWN_PRINTER_DRIVER">
            <summary>
            The printer driver is unknown.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNKNOWN_PRINTPROCESSOR">
            <summary>
            The print processor is unknown.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_SEPARATOR_FILE">
            <summary>
            The specified separator file is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_PRIORITY">
            <summary>
            The specified priority is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_PRINTER_NAME">
            <summary>
            The printer name is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PRINTER_ALREADY_EXISTS">
            <summary>
            The printer already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_PRINTER_COMMAND">
            <summary>
            The printer command is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_DATATYPE">
            <summary>
            The specified datatype is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_ENVIRONMENT">
            <summary>
            The environment specified is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_NO_MORE_BINDINGS">
            <summary>
            There are no more bindings.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT">
            <summary>
            The account used is an interdomain trust account. Use your global user account or local user account to access this server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT">
            <summary>
            The account used is a computer account. Use your global user account or local user account to access this server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOLOGON_SERVER_TRUST_ACCOUNT">
            <summary>
            The account used is a server trust account. Use your global user account or local user account to access this server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DOMAIN_TRUST_INCONSISTENT">
            <summary>
            The name or security ID (SID) of the domain specified is inconsistent with the trust information for that domain.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVER_HAS_OPEN_HANDLES">
            <summary>
            The server is in use and cannot be unloaded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESOURCE_DATA_NOT_FOUND">
            <summary>
            The specified image file did not contain a resource section.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESOURCE_TYPE_NOT_FOUND">
            <summary>
            The specified resource type cannot be found in the image file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESOURCE_NAME_NOT_FOUND">
            <summary>
            The specified resource name cannot be found in the image file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESOURCE_LANG_NOT_FOUND">
            <summary>
            The specified resource language ID cannot be found in the image file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_ENOUGH_QUOTA">
            <summary>
            Not enough quota is available to process this command.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_NO_INTERFACES">
            <summary>
            No interfaces have been registered.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_CALL_CANCELLED">
            <summary>
            The remote procedure call was canceled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_BINDING_INCOMPLETE">
            <summary>
            The binding handle does not contain all required information.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_COMM_FAILURE">
            <summary>
            A communications failure occurred during a remote procedure call.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_UNSUPPORTED_AUTHN_LEVEL">
            <summary>
            The requested authentication level is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_NO_PRINC_NAME">
            <summary>
            No principal name registered.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_NOT_RPC_ERROR">
            <summary>
            The error specified is not a valid Windows RPC error code.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_UUID_LOCAL_ONLY">
            <summary>
            A UUID that is valid only on this computer has been allocated.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_SEC_PKG_ERROR">
            <summary>
            A security package specific error occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_NOT_CANCELLED">
            <summary>
            Thread is not canceled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_X_INVALID_ES_ACTION">
            <summary>
            Invalid operation on the encoding/decoding handle.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_X_WRONG_ES_VERSION">
            <summary>
            Incompatible version of the serializing package.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_X_WRONG_STUB_VERSION">
            <summary>
            Incompatible version of the RPC stub.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_X_INVALID_PIPE_OBJECT">
            <summary>
            The RPC pipe object is invalid or corrupted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_X_WRONG_PIPE_ORDER">
            <summary>
            An invalid operation was attempted on an RPC pipe object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_X_WRONG_PIPE_VERSION">
            <summary>
            Unsupported RPC pipe version.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_COOKIE_AUTH_FAILED">
            <summary>
            HTTP proxy server rejected the connection because the cookie authentication failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_GROUP_MEMBER_NOT_FOUND">
            <summary>
            The group member was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.EPT_S_CANT_CREATE">
            <summary>
            The endpoint mapper database entry could not be created.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_INVALID_OBJECT">
            <summary>
            The object universal unique identifier (UUID) is the nil UUID.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_TIME">
            <summary>
            The specified time is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_FORM_NAME">
            <summary>
            The specified form name is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_FORM_SIZE">
            <summary>
            The specified form size is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ALREADY_WAITING">
            <summary>
            The specified printer handle is already being waited on.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PRINTER_DELETED">
            <summary>
            The specified printer has been deleted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_PRINTER_STATE">
            <summary>
            The state of the printer is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PASSWORD_MUST_CHANGE">
            <summary>
            The user's password must be changed before signing in.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DOMAIN_CONTROLLER_NOT_FOUND">
            <summary>
            Could not find the domain controller for this domain.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ACCOUNT_LOCKED_OUT">
            <summary>
            The referenced account is currently locked out and may not be logged on to.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.OR_INVALID_OXID">
            <summary>
            The object exporter specified was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.OR_INVALID_OID">
            <summary>
            The object specified was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.OR_INVALID_SET">
            <summary>
            The object resolver set specified was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_SEND_INCOMPLETE">
            <summary>
            Some data remains to be sent in the request buffer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_INVALID_ASYNC_HANDLE">
            <summary>
            Invalid asynchronous remote procedure call handle.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_INVALID_ASYNC_CALL">
            <summary>
            Invalid asynchronous RPC call handle for this operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_X_PIPE_CLOSED">
            <summary>
            The RPC pipe object has already been closed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_X_PIPE_DISCIPLINE_ERROR">
            <summary>
            The RPC call completed before all pipes were processed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_X_PIPE_EMPTY">
            <summary>
            No more data is available from the RPC pipe.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_SITENAME">
            <summary>
            No site name is available for this machine.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANT_ACCESS_FILE">
            <summary>
            The file cannot be accessed by the system.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANT_RESOLVE_FILENAME">
            <summary>
            The name of the file cannot be resolved by the system.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_ENTRY_TYPE_MISMATCH">
            <summary>
            The entry is not of the expected type.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_NOT_ALL_OBJS_EXPORTED">
            <summary>
            Not all object UUIDs could be exported to the specified entry.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_INTERFACE_NOT_EXPORTED">
            <summary>
            Interface could not be exported to the specified entry.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_PROFILE_NOT_ADDED">
            <summary>
            The specified profile entry could not be added.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_PRF_ELT_NOT_ADDED">
            <summary>
            The specified profile element could not be added.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_PRF_ELT_NOT_REMOVED">
            <summary>
            The specified profile element could not be removed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_GRP_ELT_NOT_ADDED">
            <summary>
            The group element could not be added.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.RPC_S_GRP_ELT_NOT_REMOVED">
            <summary>
            The group element could not be removed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_KM_DRIVER_BLOCKED">
            <summary>
            The printer driver is not compatible with a policy enabled on your computer that blocks NT 4.0 drivers.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CONTEXT_EXPIRED">
            <summary>
            The context has expired and can no longer be used.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PER_USER_TRUST_QUOTA_EXCEEDED">
            <summary>
            The current user's delegated trust creation quota has been exceeded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED">
            <summary>
            The total delegated trust creation quota has been exceeded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED">
            <summary>
            The current user's delegated trust deletion quota has been exceeded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_AUTHENTICATION_FIREWALL_FAILED">
            <summary>
            The computer you are signing into is protected by an authentication firewall. The specified account is not allowed to authenticate to the computer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED">
            <summary>
            Remote connections to the Print Spooler are blocked by a policy set on your machine.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NTLM_BLOCKED">
            <summary>
            Authentication failed because NTLM authentication has been disabled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PASSWORD_CHANGE_REQUIRED">
            <summary>
            Logon Failure: EAS policy requires that the user change their password before this operation can be performed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_PIXEL_FORMAT">
            <summary>
            The pixel format is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_DRIVER">
            <summary>
            The specified driver is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_WINDOW_STYLE">
            <summary>
            The window style or class attribute is invalid for this operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_METAFILE_NOT_SUPPORTED">
            <summary>
            The requested metafile operation is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSFORM_NOT_SUPPORTED">
            <summary>
            The requested transformation operation is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLIPPING_NOT_SUPPORTED">
            <summary>
            The requested clipping operation is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_CMM">
            <summary>
            The specified color management module is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_PROFILE">
            <summary>
            The specified color profile is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TAG_NOT_FOUND">
            <summary>
            The specified tag was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TAG_NOT_PRESENT">
            <summary>
            A required tag is not present.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DUPLICATE_TAG">
            <summary>
            The specified tag is already present.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE">
            <summary>
            The specified color profile is not associated with the specified device.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PROFILE_NOT_FOUND">
            <summary>
            The specified color profile was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_COLORSPACE">
            <summary>
            The specified color space is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ICM_NOT_ENABLED">
            <summary>
            Image Color Management is not enabled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DELETING_ICM_XFORM">
            <summary>
            There was an error while deleting the color transform.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_TRANSFORM">
            <summary>
            The specified color transform is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_COLORSPACE_MISMATCH">
            <summary>
            The specified transform does not match the bitmap's color space.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_COLORINDEX">
            <summary>
            The specified named color index is not present in the profile.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PROFILE_DOES_NOT_MATCH_DEVICE">
            <summary>
            The specified profile is intended for a device of a different type than the specified device.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CONNECTED_OTHER_PASSWORD">
            <summary>
            The network connection was made successfully, but the user had to be prompted for a password other than the one originally specified.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT">
            <summary>
            The network connection was made successfully using default credentials.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_USERNAME">
            <summary>
            The specified username is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_CONNECTED">
            <summary>
            This network connection does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_OPEN_FILES">
            <summary>
            This network connection has files open or requests pending.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ACTIVE_CONNECTIONS">
            <summary>
            Active connections still exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEVICE_IN_USE">
            <summary>
            The device is in use by an active process and cannot be disconnected.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNKNOWN_PRINT_MONITOR">
            <summary>
            The specified print monitor is unknown.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PRINTER_DRIVER_IN_USE">
            <summary>
            The specified printer driver is currently in use.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SPOOL_FILE_NOT_FOUND">
            <summary>
            The spool file was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SPL_NO_STARTDOC">
            <summary>
            A StartDocPrinter call was not issued.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SPL_NO_ADDJOB">
            <summary>
            An AddJob call was not issued.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED">
            <summary>
            The specified print processor has already been installed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PRINT_MONITOR_ALREADY_INSTALLED">
            <summary>
            The specified print monitor has already been installed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_PRINT_MONITOR">
            <summary>
            The specified print monitor does not have the required functions.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PRINT_MONITOR_IN_USE">
            <summary>
            The specified print monitor is currently in use.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PRINTER_HAS_JOBS_QUEUED">
            <summary>
            The requested operation is not allowed when there are jobs queued to the printer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SUCCESS_REBOOT_REQUIRED">
            <summary>
            The requested operation is successful. Changes will not be effective until the system is rebooted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SUCCESS_RESTART_REQUIRED">
            <summary>
            The requested operation is successful. Changes will not be effective until the service is restarted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PRINTER_NOT_FOUND">
            <summary>
            No printers were found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PRINTER_DRIVER_WARNED">
            <summary>
            The printer driver is known to be unreliable.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PRINTER_DRIVER_BLOCKED">
            <summary>
            The printer driver is known to harm the system.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PRINTER_DRIVER_PACKAGE_IN_USE">
            <summary>
            The specified printer driver package is currently in use.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CORE_DRIVER_PACKAGE_NOT_FOUND">
            <summary>
            Unable to find a core driver package that is required by the printer driver package.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FAIL_REBOOT_REQUIRED">
            <summary>
            The requested operation failed. A system reboot is required to roll back changes made.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FAIL_REBOOT_INITIATED">
            <summary>
            The requested operation failed. A system reboot has been initiated to roll back changes made.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PRINTER_DRIVER_DOWNLOAD_NEEDED">
            <summary>
            The specified printer driver was not found on the system and needs to be downloaded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PRINT_JOB_RESTART_REQUIRED">
            <summary>
            The requested print job has failed to print. A print system update requires the job to be resubmitted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_PRINTER_DRIVER_MANIFEST">
            <summary>
            The printer driver does not contain a valid manifest, or contains too many manifests.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PRINTER_NOT_SHAREABLE">
            <summary>
            The specified printer cannot be shared.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REQUEST_PAUSED">
            <summary>
            The operation was paused.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IO_REISSUE_AS_CACHED">
            <summary>
            Reissue the given operation as a cached IO operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WINS_INTERNAL">
            <summary>
            WINS encountered an error while processing the command.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CAN_NOT_DEL_LOCAL_WINS">
            <summary>
            The local WINS cannot be deleted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STATIC_INIT">
            <summary>
            The importation from the file failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INC_BACKUP">
            <summary>
            The backup failed. Was a full backup done before?
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FULL_BACKUP">
            <summary>
            The backup failed. Check the directory to which you are backing the database.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REC_NON_EXISTENT">
            <summary>
            The name does not exist in the WINS database.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RPL_NOT_ALLOWED">
            <summary>
            Replication with a non-configured partner is not allowed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.PEERDIST_ERROR_CONTENTINFO_VERSION_UNSUPPORTED">
            <summary>
            The version of the supplied content information is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.PEERDIST_ERROR_CANNOT_PARSE_CONTENTINFO">
            <summary>
            The supplied content information is malformed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.PEERDIST_ERROR_MISSING_DATA">
            <summary>
            The requested data cannot be found in local or peer caches.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.PEERDIST_ERROR_NO_MORE">
            <summary>
            No more data is available or required.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.PEERDIST_ERROR_NOT_INITIALIZED">
            <summary>
            The supplied object has not been initialized.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.PEERDIST_ERROR_ALREADY_INITIALIZED">
            <summary>
            The supplied object has already been initialized.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.PEERDIST_ERROR_SHUTDOWN_IN_PROGRESS">
            <summary>
            A shutdown operation is already in progress.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.PEERDIST_ERROR_INVALIDATED">
            <summary>
            The supplied object has already been invalidated.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.PEERDIST_ERROR_ALREADY_EXISTS">
            <summary>
            An element already exists and was not replaced.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.PEERDIST_ERROR_OPERATION_NOTFOUND">
            <summary>
            Can not cancel the requested operation as it has already been completed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.PEERDIST_ERROR_ALREADY_COMPLETED">
            <summary>
            Can not perform the requested operation because it has already been carried out.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.PEERDIST_ERROR_OUT_OF_BOUNDS">
            <summary>
            An operation accessed data beyond the bounds of valid data.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.PEERDIST_ERROR_VERSION_UNSUPPORTED">
            <summary>
            The requested version is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.PEERDIST_ERROR_INVALID_CONFIGURATION">
            <summary>
            A configuration value is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.PEERDIST_ERROR_NOT_LICENSED">
            <summary>
            The SKU is not licensed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.PEERDIST_ERROR_SERVICE_UNAVAILABLE">
            <summary>
            PeerDist Service is still initializing and will be available shortly.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.PEERDIST_ERROR_TRUST_FAILURE">
            <summary>
            Communication with one or more computers will be temporarily blocked due to recent errors.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DHCP_ADDRESS_CONFLICT">
            <summary>
            The DHCP client has obtained an IP address that is already in use on the network. The local interface will be disabled until the DHCP client can obtain a new address.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WMI_GUID_NOT_FOUND">
            <summary>
            The GUID passed was not recognized as valid by a WMI data provider.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WMI_INSTANCE_NOT_FOUND">
            <summary>
            The instance name passed was not recognized as valid by a WMI data provider.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WMI_ITEMID_NOT_FOUND">
            <summary>
            The data item ID passed was not recognized as valid by a WMI data provider.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WMI_TRY_AGAIN">
            <summary>
            The WMI request could not be completed and should be retried.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WMI_DP_NOT_FOUND">
            <summary>
            The WMI data provider could not be located.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WMI_UNRESOLVED_INSTANCE_REF">
            <summary>
            The WMI data provider references an instance set that has not been registered.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WMI_ALREADY_ENABLED">
            <summary>
            The WMI data block or event notification has already been enabled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WMI_GUID_DISCONNECTED">
            <summary>
            The WMI data block is no longer available.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WMI_SERVER_UNAVAILABLE">
            <summary>
            The WMI data service is not available.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WMI_DP_FAILED">
            <summary>
            The WMI data provider failed to carry out the request.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WMI_INVALID_MOF">
            <summary>
            The WMI MOF information is not valid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WMI_INVALID_REGINFO">
            <summary>
            The WMI registration information is not valid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WMI_ALREADY_DISABLED">
            <summary>
            The WMI data block or event notification has already been disabled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WMI_READ_ONLY">
            <summary>
            The WMI data item or data block is read only.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WMI_SET_FAILURE">
            <summary>
            The WMI data item or data block could not be changed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_APPCONTAINER">
            <summary>
            This operation is only valid in the context of an app container.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_APPCONTAINER_REQUIRED">
            <summary>
            This application can only run in the context of an app container.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_SUPPORTED_IN_APPCONTAINER">
            <summary>
            This functionality is not supported in the context of an app container.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_PACKAGE_SID_LENGTH">
            <summary>
            The length of the SID supplied is not a valid length for app container SIDs.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_MEDIA">
            <summary>
            The media identifier does not represent a valid medium.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_LIBRARY">
            <summary>
            The library identifier does not represent a valid library.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_MEDIA_POOL">
            <summary>
            The media pool identifier does not represent a valid media pool.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DRIVE_MEDIA_MISMATCH">
            <summary>
            The drive and medium are not compatible or exist in different libraries.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MEDIA_OFFLINE">
            <summary>
            The medium currently exists in an offline library and must be online to perform this operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LIBRARY_OFFLINE">
            <summary>
            The operation cannot be performed on an offline library.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EMPTY">
            <summary>
            The library, drive, or media pool is empty.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_EMPTY">
            <summary>
            The library, drive, or media pool must be empty to perform this operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MEDIA_UNAVAILABLE">
            <summary>
            No media is currently available in this media pool or library.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESOURCE_DISABLED">
            <summary>
            A resource required for this operation is disabled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_CLEANER">
            <summary>
            The media identifier does not represent a valid cleaner.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNABLE_TO_CLEAN">
            <summary>
            The drive cannot be cleaned or does not support cleaning.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_OBJECT_NOT_FOUND">
            <summary>
            The object identifier does not represent a valid object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DATABASE_FAILURE">
            <summary>
            Unable to read from or write to the database.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DATABASE_FULL">
            <summary>
            The database is full.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MEDIA_INCOMPATIBLE">
            <summary>
            The medium is not compatible with the device or media pool.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESOURCE_NOT_PRESENT">
            <summary>
            The resource required for this operation does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_OPERATION">
            <summary>
            The operation identifier is not valid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MEDIA_NOT_AVAILABLE">
            <summary>
            The media is not mounted or ready for use.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEVICE_NOT_AVAILABLE">
            <summary>
            The device is not ready for use.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REQUEST_REFUSED">
            <summary>
            The operator or administrator has refused the request.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_DRIVE_OBJECT">
            <summary>
            The drive identifier does not represent a valid drive.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LIBRARY_FULL">
            <summary>
            Library is full. No slot is available for use.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MEDIUM_NOT_ACCESSIBLE">
            <summary>
            The transport cannot access the medium.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNABLE_TO_LOAD_MEDIUM">
            <summary>
            Unable to load the medium into the drive.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNABLE_TO_INVENTORY_DRIVE">
            <summary>
            Unable to retrieve the drive status.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNABLE_TO_INVENTORY_SLOT">
            <summary>
            Unable to retrieve the slot status.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNABLE_TO_INVENTORY_TRANSPORT">
            <summary>
            Unable to retrieve status about the transport.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSPORT_FULL">
            <summary>
            Cannot use the transport because it is already in use.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CONTROLLING_IEPORT">
            <summary>
            Unable to open or close the inject/eject port.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA">
            <summary>
            Unable to eject the medium because it is in a drive.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLEANER_SLOT_SET">
            <summary>
            A cleaner slot is already reserved.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLEANER_SLOT_NOT_SET">
            <summary>
            A cleaner slot is not reserved.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLEANER_CARTRIDGE_SPENT">
            <summary>
            The cleaner cartridge has performed the maximum number of drive cleanings.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNEXPECTED_OMID">
            <summary>
            Unexpected on-medium identifier.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANT_DELETE_LAST_ITEM">
            <summary>
            The last remaining item in this group or resource cannot be deleted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MESSAGE_EXCEEDS_MAX_SIZE">
            <summary>
            The message provided exceeds the maximum size allowed for this parameter.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_VOLUME_CONTAINS_SYS_FILES">
            <summary>
            The volume contains system or paging files.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INDIGENOUS_TYPE">
            <summary>
            The media type cannot be removed from this library since at least one drive in the library reports it can support this media type.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_SUPPORTING_DRIVES">
            <summary>
            This offline media cannot be mounted on this system since no enabled drives are present which can be used.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLEANER_CARTRIDGE_INSTALLED">
            <summary>
            A cleaner cartridge is present in the tape library.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IEPORT_FULL">
            <summary>
            Cannot use the inject/eject port because it is not empty.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FILE_OFFLINE">
            <summary>
            This file is currently not available for use on this computer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REMOTE_STORAGE_NOT_ACTIVE">
            <summary>
            The remote storage service is not operational at this time.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REMOTE_STORAGE_MEDIA_ERROR">
            <summary>
            The remote storage service encountered a media error.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_A_REPARSE_POINT">
            <summary>
            The file or directory is not a re parse point.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REPARSE_ATTRIBUTE_CONFLICT">
            <summary>
            The re parse point attribute cannot be set because it conflicts with an existing attribute.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_REPARSE_DATA">
            <summary>
            The data present in the re parse point buffer is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REPARSE_TAG_INVALID">
            <summary>
            The tag present in the re parse point buffer is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REPARSE_TAG_MISMATCH">
            <summary>
            There is a mismatch between the tag specified in the request and the tag present in the re parse point.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_APP_DATA_NOT_FOUND">
            <summary>
            Fast Cache data not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_APP_DATA_EXPIRED">
            <summary>
            Fast Cache data expired.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_APP_DATA_CORRUPT">
            <summary>
            Fast Cache data corrupt.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_APP_DATA_LIMIT_EXCEEDED">
            <summary>
            Fast Cache data has exceeded its max size and cannot be updated.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_APP_DATA_REBOOT_REQUIRED">
            <summary>
            Fast Cache has been ReArmed and requires a reboot until it can be updated.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SECUREBOOT_ROLLBACK_DETECTED">
            <summary>
            Secure Boot detected that rollback of protected data has been attempted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SECUREBOOT_POLICY_VIOLATION">
            <summary>
            The value is protected by Secure Boot policy and cannot be modified or deleted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SECUREBOOT_INVALID_POLICY">
            <summary>
            The Secure Boot policy is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND">
            <summary>
            A new Secure Boot policy did not contain the current publisher on its update list.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SECUREBOOT_POLICY_NOT_SIGNED">
            <summary>
            The Secure Boot policy is either not signed or is signed by a non-trusted signer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SECUREBOOT_NOT_ENABLED">
            <summary>
            Secure Boot is not enabled on this machine.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SECUREBOOT_FILE_REPLACED">
            <summary>
            Secure Boot requires that certain files and drivers are not replaced by other files or drivers.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_OFFLOAD_READ_FLT_NOT_SUPPORTED">
            <summary>
            The copy offload read operation is not supported by a filter.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_OFFLOAD_WRITE_FLT_NOT_SUPPORTED">
            <summary>
            The copy offload write operation is not supported by a filter.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_OFFLOAD_READ_FILE_NOT_SUPPORTED">
            <summary>
            The copy offload read operation is not supported for the file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_OFFLOAD_WRITE_FILE_NOT_SUPPORTED">
            <summary>
            The copy offload write operation is not supported for the file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_VOLUME_NOT_SIS_ENABLED">
            <summary>
            Single Instance Storage is not available on this volume.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEPENDENT_RESOURCE_EXISTS">
            <summary>
            The operation cannot be completed because other resources are dependent on this resource.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEPENDENCY_NOT_FOUND">
            <summary>
            The cluster resource dependency cannot be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEPENDENCY_ALREADY_EXISTS">
            <summary>
            The cluster resource cannot be made dependent on the specified resource because it is already dependent.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESOURCE_NOT_ONLINE">
            <summary>
            The cluster resource is not online.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_HOST_NODE_NOT_AVAILABLE">
            <summary>
            A cluster node is not available for this operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESOURCE_NOT_AVAILABLE">
            <summary>
            The cluster resource is not available.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESOURCE_NOT_FOUND">
            <summary>
            The cluster resource could not be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SHUTDOWN_CLUSTER">
            <summary>
            The cluster is being shut down.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANT_EVICT_ACTIVE_NODE">
            <summary>
            A cluster node cannot be evicted from the cluster unless the node is down or it is the last node.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_OBJECT_ALREADY_EXISTS">
            <summary>
            The object already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_OBJECT_IN_LIST">
            <summary>
            The object is already in the list.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_GROUP_NOT_AVAILABLE">
            <summary>
            The cluster group is not available for any new requests.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_GROUP_NOT_FOUND">
            <summary>
            The cluster group could not be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_GROUP_NOT_ONLINE">
            <summary>
            The operation could not be completed because the cluster group is not online.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_HOST_NODE_NOT_RESOURCE_OWNER">
            <summary>
            The operation failed because either the specified cluster node is not the owner of the resource, or the node is not a possible owner of the resource.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_HOST_NODE_NOT_GROUP_OWNER">
            <summary>
            The operation failed because either the specified cluster node is not the owner of the group, or the node is not a possible owner of the group.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESMON_CREATE_FAILED">
            <summary>
            The cluster resource could not be created in the specified resource monitor.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESMON_ONLINE_FAILED">
            <summary>
            The cluster resource could not be brought online by the resource monitor.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESOURCE_ONLINE">
            <summary>
            The operation could not be completed because the cluster resource is online.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_QUORUM_RESOURCE">
            <summary>
            The cluster resource could not be deleted or brought offline because it is the quorum resource.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_QUORUM_CAPABLE">
            <summary>
            The cluster could not make the specified resource a quorum resource because it is not capable of being a quorum resource.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_SHUTTING_DOWN">
            <summary>
            The cluster software is shutting down.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_STATE">
            <summary>
            The group or resource is not in the correct state to perform the requested operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESOURCE_PROPERTIES_STORED">
            <summary>
            The properties were stored but not all changes will take effect until the next time the resource is brought online.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_QUORUM_CLASS">
            <summary>
            The cluster could not make the specified resource a quorum resource because it does not belong to a shared storage class.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CORE_RESOURCE">
            <summary>
            The cluster resource could not be deleted since it is a core resource.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_QUORUM_RESOURCE_ONLINE_FAILED">
            <summary>
            The quorum resource failed to come online.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_QUORUMLOG_OPEN_FAILED">
            <summary>
            The quorum log could not be created or mounted successfully.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTERLOG_CORRUPT">
            <summary>
            The cluster log is corrupt.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE">
            <summary>
            The record could not be written to the cluster log since it exceeds the maximum size.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE">
            <summary>
            The cluster log exceeds its maximum size.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND">
            <summary>
            No checkpoint record was found in the cluster log.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE">
            <summary>
            The minimum required disk space needed for logging is not available.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_QUORUM_OWNER_ALIVE">
            <summary>
            The cluster node failed to take control of the quorum resource because the resource is owned by another active node.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NETWORK_NOT_AVAILABLE">
            <summary>
            A cluster network is not available for this operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NODE_NOT_AVAILABLE">
            <summary>
            A cluster node is not available for this operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ALL_NODES_NOT_AVAILABLE">
            <summary>
            All cluster nodes must be running to perform this operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESOURCE_FAILED">
            <summary>
            A cluster resource failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_INVALID_NODE">
            <summary>
            The cluster node is not valid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NODE_EXISTS">
            <summary>
            The cluster node already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_JOIN_IN_PROGRESS">
            <summary>
            A node is in the process of joining the cluster.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NODE_NOT_FOUND">
            <summary>
            The cluster node was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND">
            <summary>
            The cluster local node information was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NETWORK_EXISTS">
            <summary>
            The cluster network already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NETWORK_NOT_FOUND">
            <summary>
            The cluster network was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NETINTERFACE_EXISTS">
            <summary>
            The cluster network interface already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NETINTERFACE_NOT_FOUND">
            <summary>
            The cluster network interface was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_INVALID_REQUEST">
            <summary>
            The cluster request is not valid for this object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_INVALID_NETWORK_PROVIDER">
            <summary>
            The cluster network provider is not valid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NODE_DOWN">
            <summary>
            The cluster node is down.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NODE_UNREACHABLE">
            <summary>
            The cluster node is not reachable.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NODE_NOT_MEMBER">
            <summary>
            The cluster node is not a member of the cluster.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS">
            <summary>
            A cluster join operation is not in progress.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_INVALID_NETWORK">
            <summary>
            The cluster network is not valid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NODE_UP">
            <summary>
            The cluster node is up.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_IPADDR_IN_USE">
            <summary>
            The cluster IP address is already in use.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NODE_NOT_PAUSED">
            <summary>
            The cluster node is not paused.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NO_SECURITY_CONTEXT">
            <summary>
            No cluster security context is available.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NETWORK_NOT_INTERNAL">
            <summary>
            The cluster network is not configured for internal cluster communication.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NODE_ALREADY_UP">
            <summary>
            The cluster node is already up.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NODE_ALREADY_DOWN">
            <summary>
            The cluster node is already down.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NETWORK_ALREADY_ONLINE">
            <summary>
            The cluster network is already online.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE">
            <summary>
            The cluster network is already offline.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NODE_ALREADY_MEMBER">
            <summary>
            The cluster node is already a member of the cluster.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_LAST_INTERNAL_NETWORK">
            <summary>
            The cluster network is the only one configured for internal cluster communication between two or more active cluster nodes. The internal communication capability cannot be removed from the network.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS">
            <summary>
            One or more cluster resources depend on the network to provide service to clients. The client access capability cannot be removed from the network.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_OPERATION_ON_QUORUM">
            <summary>
            This operation cannot be performed on the cluster resource as it the quorum resource. You may not bring the quorum resource offline or modify its possible owners list.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEPENDENCY_NOT_ALLOWED">
            <summary>
            The cluster quorum resource is not allowed to have any dependencies.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NODE_PAUSED">
            <summary>
            The cluster node is paused.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NODE_CANT_HOST_RESOURCE">
            <summary>
            The cluster resource cannot be brought online. The owner node cannot run this resource.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NODE_NOT_READY">
            <summary>
            The cluster node is not ready to perform the requested operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NODE_SHUTTING_DOWN">
            <summary>
            The cluster node is shutting down.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_JOIN_ABORTED">
            <summary>
            The cluster join operation was aborted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_INCOMPATIBLE_VERSIONS">
            <summary>
            The cluster join operation failed due to incompatible software versions between the joining node and its sponsor.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED">
            <summary>
            This resource cannot be created because the cluster has reached the limit on the number of resources it can monitor.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED">
            <summary>
            The system configuration changed during the cluster join or form operation. The join or form operation was aborted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND">
            <summary>
            The specified resource type was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED">
            <summary>
            The specified node does not support a resource of this type. This may be due to version inconsistencies or due to the absence of the resource DLL on this node.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_RESNAME_NOT_FOUND">
            <summary>
            The specified resource name is not supported by this resource DLL. This may be due to a bad (or changed) name supplied to the resource DLL.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED">
            <summary>
            No authentication package could be registered with the RPC server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST">
            <summary>
            You cannot bring the group online because the owner of the group is not in the preferred list for the group. To change the owner node for the group, move the group.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_DATABASE_SEQMISMATCH">
            <summary>
            The join operation failed because the cluster database sequence number has changed or is incompatible with the locker node. This may happen during a join operation if the cluster database was changing during the join.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESMON_INVALID_STATE">
            <summary>
            The resource monitor will not allow the fail operation to be performed while the resource is in its current state. This may happen if the resource is in a pending state.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_GUM_NOT_LOCKER">
            <summary>
            A non locker code got a request to reserve the lock for making global updates.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_QUORUM_DISK_NOT_FOUND">
            <summary>
            The quorum disk could not be located by the cluster service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DATABASE_BACKUP_CORRUPT">
            <summary>
            The backed up cluster database is possibly corrupt.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT">
            <summary>
            A DFS root already exists in this cluster node.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESOURCE_PROPERTY_UNCHANGEABLE">
            <summary>
            An attempt to modify a resource property failed because it conflicts with another existing property.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE">
            <summary>
            An operation was attempted that is incompatible with the current membership state of the node.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_QUORUMLOG_NOT_FOUND">
            <summary>
            The quorum resource does not contain the quorum log.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_MEMBERSHIP_HALT">
            <summary>
            The membership engine requested shutdown of the cluster service on this node.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_INSTANCE_ID_MISMATCH">
            <summary>
            The join operation failed because the cluster instance ID of the joining node does not match the cluster instance ID of the sponsor node.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP">
            <summary>
            A matching cluster network for the specified IP address could not be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH">
            <summary>
            The actual data type of the property did not match the expected data type of the property.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP">
            <summary>
            The cluster node was evicted from the cluster successfully, but the node was not cleaned up. To determine what cleanup steps failed and how to recover, see the Failover Clustering application event log using Event Viewer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_PARAMETER_MISMATCH">
            <summary>
            Two or more parameter values specified for a resource's properties are in conflict.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NODE_CANNOT_BE_CLUSTERED">
            <summary>
            This computer cannot be made a member of a cluster.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_WRONG_OS_VERSION">
            <summary>
            This computer cannot be made a member of a cluster because it does not have the correct version of Windows installed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME">
            <summary>
            A cluster cannot be created with the specified cluster name because that cluster name is already in use. Specify a different name for the cluster.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSCFG_ALREADY_COMMITTED">
            <summary>
            The cluster configuration action has already been committed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSCFG_ROLLBACK_FAILED">
            <summary>
            The cluster configuration action could not be rolled back.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT">
            <summary>
            The drive letter assigned to a system disk on one node conflicted with the drive letter assigned to a disk on another node.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_OLD_VERSION">
            <summary>
            One or more nodes in the cluster are running a version of Windows that does not support this operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME">
            <summary>
            The name of the corresponding computer account doesn't match the Network Name for this resource.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NO_NET_ADAPTERS">
            <summary>
            No network adapters are available.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_POISONED">
            <summary>
            The cluster node has been poisoned.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_GROUP_MOVING">
            <summary>
            The group is unable to accept the request since it is moving to another node.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_RESOURCE_TYPE_BUSY">
            <summary>
            The resource type cannot accept the request since is too busy performing another operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESOURCE_CALL_TIMED_OUT">
            <summary>
            The call to the cluster resource DLL timed out.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_CLUSTER_IPV6_ADDRESS">
            <summary>
            The address is not valid for an IPv6 Address resource. A global IPv6 address is required, and it must match a cluster network. Compatibility addresses are not permitted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_INTERNAL_INVALID_FUNCTION">
            <summary>
            An internal cluster error occurred. A call to an invalid function was attempted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_PARAMETER_OUT_OF_BOUNDS">
            <summary>
            A parameter value is out of acceptable range.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_PARTIAL_SEND">
            <summary>
            A network error occurred while sending data to another node in the cluster. The number of bytes transmitted was less than required.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_REGISTRY_INVALID_FUNCTION">
            <summary>
            An invalid cluster registry operation was attempted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_INVALID_STRING_TERMINATION">
            <summary>
            An input string of characters is not properly terminated.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_INVALID_STRING_FORMAT">
            <summary>
            An input string of characters is not in a valid format for the data it represents.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS">
            <summary>
            An internal cluster error occurred. A cluster database transaction was attempted while a transaction was already in progress.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS">
            <summary>
            An internal cluster error occurred. There was an attempt to commit a cluster database transaction while no transaction was in progress.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NULL_DATA">
            <summary>
            An internal cluster error occurred. Data was not properly initialized.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_PARTIAL_READ">
            <summary>
            An error occurred while reading from a stream of data. An unexpected number of bytes was returned.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_PARTIAL_WRITE">
            <summary>
            An error occurred while writing to a stream of data. The required number of bytes could not be written.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_CANT_DESERIALIZE_DATA">
            <summary>
            An error occurred while deserializing a stream of cluster data.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEPENDENT_RESOURCE_PROPERTY_CONFLICT">
            <summary>
            One or more property values for this resource are in conflict with one or more property values associated with its dependent resource(s).
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NO_QUORUM">
            <summary>
            A quorum of cluster nodes was not present to form a cluster.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_INVALID_IPV6_NETWORK">
            <summary>
            The cluster network is not valid for an IPv6 Address resource, or it does not match the configured address.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_INVALID_IPV6_TUNNEL_NETWORK">
            <summary>
            The cluster network is not valid for an IPv6 Tunnel resource. Check the configuration of the IP Address resource on which the IPv6 Tunnel resource depends.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_QUORUM_NOT_ALLOWED_IN_THIS_GROUP">
            <summary>
            Quorum resource cannot reside in the Available Storage group.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEPENDENCY_TREE_TOO_COMPLEX">
            <summary>
            The dependencies for this resource are nested too deeply.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EXCEPTION_IN_RESOURCE_CALL">
            <summary>
            The call into the resource DLL raised an unhandled exception.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_RHS_FAILED_INITIALIZATION">
            <summary>
            The RHS process failed to initialize.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NOT_INSTALLED">
            <summary>
            The Failover Clustering feature is not installed on this node.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_RESOURCES_MUST_BE_ONLINE_ON_THE_SAME_NODE">
            <summary>
            The resources must be online on the same node for this operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_MAX_NODES_IN_CLUSTER">
            <summary>
            A new node can not be added since this cluster is already at its maximum number of nodes.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_TOO_MANY_NODES">
            <summary>
            This cluster can not be created since the specified number of nodes exceeds the maximum allowed limit.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_OBJECT_ALREADY_USED">
            <summary>
            An attempt to use the specified cluster name failed because an enabled computer object with the given name already exists in the domain.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NONCORE_GROUPS_FOUND">
            <summary>
            This cluster cannot be destroyed. It has non-core application groups which must be deleted before the cluster can be destroyed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FILE_SHARE_RESOURCE_CONFLICT">
            <summary>
            File share associated with file share witness resource cannot be hosted by this cluster or any of its nodes.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_EVICT_INVALID_REQUEST">
            <summary>
            Eviction of this node is invalid at this time. Due to quorum requirements node eviction will result in cluster shutdown. If it is the last node in the cluster, destroy cluster command should be used.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_SINGLETON_RESOURCE">
            <summary>
            Only one instance of this resource type is allowed in the cluster.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_GROUP_SINGLETON_RESOURCE">
            <summary>
            Only one instance of this resource type is allowed per resource group.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_RESOURCE_PROVIDER_FAILED">
            <summary>
            The resource failed to come online due to the failure of one or more provider resources.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_RESOURCE_CONFIGURATION_ERROR">
            <summary>
            The resource has indicated that it cannot come online on any node.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_GROUP_BUSY">
            <summary>
            The current operation cannot be performed on this group at this time.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NOT_SHARED_VOLUME">
            <summary>
            The directory or file is not located on a cluster shared volume.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_INVALID_SECURITY_DESCRIPTOR">
            <summary>
            The Security Descriptor does not meet the requirements for a cluster.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_SHARED_VOLUMES_IN_USE">
            <summary>
            There is one or more shared volumes resources configured in the cluster. Those resources must be moved to available storage in order for operation to succeed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_USE_SHARED_VOLUMES_API">
            <summary>
            This group or resource cannot be directly manipulated. Use shared volume APIs to perform desired operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_BACKUP_IN_PROGRESS">
            <summary>
            Back up is in progress. Please wait for backup completion before trying this operation again.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NON_CSV_PATH">
            <summary>
            The path does not belong to a cluster shared volume.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CSV_VOLUME_NOT_LOCAL">
            <summary>
            The cluster shared volume is not locally mounted on this node.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_WATCHDOG_TERMINATING">
            <summary>
            The cluster watchdog is terminating.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_RESOURCE_VETOED_MOVE_INCOMPATIBLE_NODES">
            <summary>
            A resource vetoed a move between two nodes because they are incompatible.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_INVALID_NODE_WEIGHT">
            <summary>
            The request is invalid either because node weight cannot be changed while the cluster is in disk-only quorum mode, or because changing the node weight would violate the minimum cluster quorum requirements.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_RESOURCE_VETOED_CALL">
            <summary>
            The resource vetoed the call.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESMON_SYSTEM_RESOURCES_LACKING">
            <summary>
            Resource could not start or run because it could not reserve sufficient system resources.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_DESTINATION">
            <summary>
            A resource vetoed a move between two nodes because the destination currently does not have enough resources to complete the operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_RESOURCE_VETOED_MOVE_NOT_ENOUGH_RESOURCES_ON_SOURCE">
            <summary>
            A resource vetoed a move between two nodes because the source currently does not have enough resources to complete the operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_GROUP_QUEUED">
            <summary>
            The requested operation can not be completed because the group is queued for an operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_RESOURCE_LOCKED_STATUS">
            <summary>
            The requested operation can not be completed because a resource has locked status.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_SHARED_VOLUME_FAILOVER_NOT_ALLOWED">
            <summary>
            The resource cannot move to another node because a cluster shared volume vetoed the operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_NODE_DRAIN_IN_PROGRESS">
            <summary>
            A node drain is already in progress.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_DISK_NOT_CONNECTED">
            <summary>
            Clustered storage is not connected to the node.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DISK_NOT_CSV_CAPABLE">
            <summary>
            The disk is not configured in a way to be used with CSV. CSV disks must have at least one partition that is formatted with NTFS.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESOURCE_NOT_IN_AVAILABLE_STORAGE">
            <summary>
            The resource must be part of the Available Storage group to complete this action.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_SHARED_VOLUME_REDIRECTED">
            <summary>
            CSVFS failed operation as volume is in redirected mode.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_SHARED_VOLUME_NOT_REDIRECTED">
            <summary>
            CSVFS failed operation as volume is not in redirected mode.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_CANNOT_RETURN_PROPERTIES">
            <summary>
            Cluster properties cannot be returned at this time.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_RESOURCE_CONTAINS_UNSUPPORTED_DIFF_AREA_FOR_SHARED_VOLUMES">
            <summary>
            The clustered disk resource contains software snapshot diff area that are not supported for Cluster Shared Volumes.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_RESOURCE_IS_IN_MAINTENANCE_MODE">
            <summary>
            The operation cannot be completed because the resource is in maintenance mode.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_AFFINITY_CONFLICT">
            <summary>
            The operation cannot be completed because of cluster affinity conflicts.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CLUSTER_RESOURCE_IS_REPLICA_VIRTUAL_MACHINE">
            <summary>
            The operation cannot be completed because the resource is a replica virtual machine.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ENCRYPTION_FAILED">
            <summary>
            The specified file could not be encrypted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DECRYPTION_FAILED">
            <summary>
            The specified file could not be decrypted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FILE_ENCRYPTED">
            <summary>
            The specified file is encrypted and the user does not have the ability to decrypt it.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_RECOVERY_POLICY">
            <summary>
            There is no valid encryption recovery policy configured for this system.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_EFS">
            <summary>
            The required encryption driver is not loaded for this system.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_WRONG_EFS">
            <summary>
            The file was encrypted with a different encryption driver than is currently loaded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_USER_KEYS">
            <summary>
            There are no EFS keys defined for the user.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FILE_NOT_ENCRYPTED">
            <summary>
            The specified file is not encrypted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_EXPORT_FORMAT">
            <summary>
            The specified file is not in the defined EFS export format.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FILE_READ_ONLY">
            <summary>
            The specified file is read only.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DIR_EFS_DISALLOWED">
            <summary>
            The directory has been disabled for encryption.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EFS_SERVER_NOT_TRUSTED">
            <summary>
            The server is not trusted for remote encryption operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_RECOVERY_POLICY">
            <summary>
            Recovery policy configured for this system contains invalid recovery certificate.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EFS_ALG_BLOB_TOO_BIG">
            <summary>
            The encryption algorithm used on the source file needs a bigger key buffer than the one on the destination file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_VOLUME_NOT_SUPPORT_EFS">
            <summary>
            The disk partition does not support file encryption.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EFS_DISABLED">
            <summary>
            This machine is disabled for file encryption.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EFS_VERSION_NOT_SUPPORT">
            <summary>
            A newer system is required to decrypt this encrypted file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CS_ENCRYPTION_INVALID_SERVER_RESPONSE">
            <summary>
            The remote server sent an invalid response for a file being opened with Client Side Encryption.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CS_ENCRYPTION_UNSUPPORTED_SERVER">
            <summary>
            Client Side Encryption is not supported by the remote server even though it claims to support it.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE">
            <summary>
            File is encrypted and should be opened in Client Side Encryption mode.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CS_ENCRYPTION_NEW_ENCRYPTED_FILE">
            <summary>
            A new encrypted file is being created and a $EFS needs to be provided.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CS_ENCRYPTION_FILE_NOT_CSE">
            <summary>
            The SMB client requested a CSE FSCTL on a non-CSE file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ENCRYPTION_POLICY_DENIES_OPERATION">
            <summary>
            The requested operation was blocked by policy. For more information, contact your system administrator.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_BROWSER_SERVERS_FOUND">
            <summary>
            The list of servers for this workgroup is not currently available.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.SCHED_E_SERVICE_NOT_LOCALSYSTEM">
            <summary>
            The Task Scheduler service must be configured to run in the System account to function properly. Individual tasks may be configured to run in other accounts.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_SECTOR_INVALID">
            <summary>
            Log service encountered an invalid log sector.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_SECTOR_PARITY_INVALID">
            <summary>
            Log service encountered a log sector with invalid block parity.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_SECTOR_REMAPPED">
            <summary>
            Log service encountered a remapped log sector.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_BLOCK_INCOMPLETE">
            <summary>
            Log service encountered a partial or incomplete log block.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_INVALID_RANGE">
            <summary>
            Log service encountered an attempt access data outside the active log range.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_BLOCKS_EXHAUSTED">
            <summary>
            Log service user marshaling buffers are exhausted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_READ_CONTEXT_INVALID">
            <summary>
            Log service encountered an attempt read from a marshalling area with an invalid read context.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_RESTART_INVALID">
            <summary>
            Log service encountered an invalid log restart area.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_BLOCK_VERSION">
            <summary>
            Log service encountered an invalid log block version.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_BLOCK_INVALID">
            <summary>
            Log service encountered an invalid log block.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_READ_MODE_INVALID">
            <summary>
            Log service encountered an attempt to read the log with an invalid read mode.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_NO_RESTART">
            <summary>
            Log service encountered a log stream with no restart area.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_METADATA_CORRUPT">
            <summary>
            Log service encountered a corrupted metadata file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_METADATA_INVALID">
            <summary>
            Log service encountered a metadata file that could not be created by the log file system.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_METADATA_INCONSISTENT">
            <summary>
            Log service encountered a metadata file with inconsistent data.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_RESERVATION_INVALID">
            <summary>
            Log service encountered an attempt to erroneous allocate or dispose reservation space.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_CANT_DELETE">
            <summary>
            Log service cannot delete log file or file system container.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_CONTAINER_LIMIT_EXCEEDED">
            <summary>
            Log service has reached the maximum allowable containers allocated to a log file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_START_OF_LOG">
            <summary>
            Log service has attempted to read or write backward past the start of the log.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_POLICY_ALREADY_INSTALLED">
            <summary>
            Log policy could not be installed because a policy of the same type is already present.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_POLICY_NOT_INSTALLED">
            <summary>
            Log policy in question was not installed at the time of the request.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_POLICY_INVALID">
            <summary>
            The installed set of policies on the log is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_POLICY_CONFLICT">
            <summary>
            A policy on the log in question prevented the operation from completing.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_PINNED_ARCHIVE_TAIL">
            <summary>
            Log space cannot be reclaimed because the log is pinned by the archive tail.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_RECORD_NONEXISTENT">
            <summary>
            Log record is not a record in the log file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_RECORDS_RESERVED_INVALID">
            <summary>
            Number of reserved log records or the adjustment of the number of reserved log records is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_SPACE_RESERVED_INVALID">
            <summary>
            Reserved log space or the adjustment of the log space is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_TAIL_INVALID">
            <summary>
            An new or existing archive tail or base of the active log is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_FULL">
            <summary>
            Log space is exhausted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_COULD_NOT_RESIZE_LOG">
            <summary>
            The log could not be set to the requested size.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_MULTIPLEXED">
            <summary>
            Log is multiplexed, no direct writes to the physical log is allowed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_DEDICATED">
            <summary>
            The operation failed because the log is a dedicated log.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_ARCHIVE_NOT_IN_PROGRESS">
            <summary>
            The operation requires an archive context.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_ARCHIVE_IN_PROGRESS">
            <summary>
            Log archival is in progress.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_EPHEMERAL">
            <summary>
            The operation requires a non-ephemeral log, but the log is ephemeral.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_NOT_ENOUGH_CONTAINERS">
            <summary>
            The log must have at least two containers before it can be read from or written to.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_CLIENT_ALREADY_REGISTERED">
            <summary>
            A log client has already registered on the stream.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_CLIENT_NOT_REGISTERED">
            <summary>
            A log client has not been registered on the stream.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_FULL_HANDLER_IN_PROGRESS">
            <summary>
            A request has already been made to handle the log full condition.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_CONTAINER_READ_FAILED">
            <summary>
            Log service encountered an error when attempting to read from a log container.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_CONTAINER_WRITE_FAILED">
            <summary>
            Log service encountered an error when attempting to write to a log container.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_CONTAINER_OPEN_FAILED">
            <summary>
            Log service encountered an error when attempting open a log container.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_CONTAINER_STATE_INVALID">
            <summary>
            Log service encountered an invalid container state when attempting a requested action.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_STATE_INVALID">
            <summary>
            Log service is not in the correct state to perform a requested action.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_PINNED">
            <summary>
            Log space cannot be reclaimed because the log is pinned.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_METADATA_FLUSH_FAILED">
            <summary>
            Log metadata flush failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_INCONSISTENT_SECURITY">
            <summary>
            Security on the log and its containers is inconsistent.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_APPENDED_FLUSH_FAILED">
            <summary>
            Records were appended to the log or reservation changes were made, but the log could not be flushed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_PINNED_RESERVATION">
            <summary>
            The log is pinned due to reservation consuming most of the log space. Free some reserved records to make space available.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_TRANSACTION">
            <summary>
            The transaction handle associated with this operation is not valid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTION_NOT_ACTIVE">
            <summary>
            The requested operation was made in the context of a transaction that is no longer active.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTION_REQUEST_NOT_VALID">
            <summary>
            The requested operation is not valid on the Transaction object in its current state.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTION_NOT_REQUESTED">
            <summary>
            The caller has called a response API, but the response is not expected because the TM did not issue the corresponding request to the caller.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTION_ALREADY_ABORTED">
            <summary>
            It is too late to perform the requested operation, since the Transaction has already been aborted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTION_ALREADY_COMMITTED">
            <summary>
            It is too late to perform the requested operation, since the Transaction has already been committed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TM_INITIALIZATION_FAILED">
            <summary>
            The Transaction Manager was unable to be successfully initialized. Transacted operations are not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESOURCEMANAGER_READ_ONLY">
            <summary>
            The specified ResourceManager made no changes or updates to the resource under this transaction.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTION_NOT_JOINED">
            <summary>
            The resource manager has attempted to prepare a transaction that it has not successfully joined.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTION_SUPERIOR_EXISTS">
            <summary>
            The Transaction object already has a superior enlistment, and the caller attempted an operation that would have created a new superior. Only a single superior enlistment is allow.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CRM_PROTOCOL_ALREADY_EXISTS">
            <summary>
            The RM tried to register a protocol that already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTION_PROPAGATION_FAILED">
            <summary>
            The attempt to propagate the Transaction failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CRM_PROTOCOL_NOT_FOUND">
            <summary>
            The requested propagation protocol was not registered as a CRM.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTION_INVALID_MARSHALL_BUFFER">
            <summary>
            The buffer passed in to PushTransaction or PullTransaction is not in a valid format.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CURRENT_TRANSACTION_NOT_VALID">
            <summary>
            The current transaction context associated with the thread is not a valid handle to a transaction object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTION_NOT_FOUND">
            <summary>
            The specified Transaction object could not be opened, because it was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESOURCEMANAGER_NOT_FOUND">
            <summary>
            The specified ResourceManager object could not be opened, because it was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ENLISTMENT_NOT_FOUND">
            <summary>
            The specified Enlistment object could not be opened, because it was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTIONMANAGER_NOT_FOUND">
            <summary>
            The specified TransactionManager object could not be opened, because it was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTIONMANAGER_NOT_ONLINE">
            <summary>
            The object specified could not be created or opened, because its associated TransactionManager is not online. The TransactionManager must be brought fully Online by calling RecoverTransactionManager to recover to the end of its LogFile before objects in its Transaction or ResourceManager namespaces can be opened. In addition, errors in writing records to its LogFile can cause a TransactionManager to go offline.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION">
            <summary>
            The specified TransactionManager was unable to create the objects contained in its logfile in the Ob namespace. Therefore, the TransactionManager was unable to recover.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTION_NOT_ROOT">
            <summary>
            The call to create a superior Enlistment on this Transaction object could not be completed, because the Transaction object specified for the enlistment is a subordinate branch of the Transaction. Only the root of the Transaction can be enlisted on as a superior.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTION_OBJECT_EXPIRED">
            <summary>
            Because the associated transaction manager or resource manager has been closed, the handle is no longer valid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTION_RESPONSE_NOT_ENLISTED">
            <summary>
            The specified operation could not be performed on this Superior enlistment, because the enlistment was not created with the corresponding completion response in the NotificationMask.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTION_RECORD_TOO_LONG">
            <summary>
            The specified operation could not be performed, because the record that would be logged was too long. This can occur because of two conditions: either there are too many Enlistments on this Transaction, or the combined RecoveryInformation being logged on behalf of those Enlistments is too long.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IMPLICIT_TRANSACTION_NOT_SUPPORTED">
            <summary>
            Implicit transaction are not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTION_INTEGRITY_VIOLATED">
            <summary>
            The kernel transaction manager had to abort or forget the transaction because it blocked forward progress.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTIONMANAGER_IDENTITY_MISMATCH">
            <summary>
            The TransactionManager identity that was supplied did not match the one recorded in the TransactionManager's log file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT">
            <summary>
            This snapshot operation cannot continue because a transactional resource manager cannot be frozen in its current state. Please try again.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTION_MUST_WRITETHROUGH">
            <summary>
            The transaction cannot be enlisted on with the specified EnlistmentMask, because the transaction has already completed the PrePrepare phase. In order to ensure correctness, the ResourceManager must switch to a write- through mode and cease caching data within this transaction. Enlisting for only subsequent transaction phases may still succeed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTION_NO_SUPERIOR">
            <summary>
            The transaction does not have a superior enlistment.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_HEURISTIC_DAMAGE_POSSIBLE">
            <summary>
            The attempt to commit the Transaction completed, but it is possible that some portion of the transaction tree did not commit successfully due to heuristics. Therefore it is possible that some data modified in the transaction may not have committed, resulting in transactional inconsistency. If possible, check the consistency of the associated data.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTIONAL_CONFLICT">
            <summary>
            The function attempted to use a name that is reserved for use by another transaction.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RM_NOT_ACTIVE">
            <summary>
            Transaction support within the specified resource manager is not started or was shut down due to an error.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RM_METADATA_CORRUPT">
            <summary>
            The metadata of the RM has been corrupted. The RM will not function.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DIRECTORY_NOT_RM">
            <summary>
            The specified directory does not contain a resource manager.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTIONS_UNSUPPORTED_REMOTE">
            <summary>
            The remote server or share does not support transacted file operations.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_RESIZE_INVALID_SIZE">
            <summary>
            The requested log size is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_OBJECT_NO_LONGER_EXISTS">
            <summary>
            The object (file, stream, link) corresponding to the handle has been deleted by a Transaction Savepoint Rollback.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STREAM_MINIVERSION_NOT_FOUND">
            <summary>
            The specified file miniversion was not found for this transacted file open.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STREAM_MINIVERSION_NOT_VALID">
            <summary>
            The specified file miniversion was found but has been invalidated. Most likely cause is a transaction savepoint rollback.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION">
            <summary>
            A miniversion may only be opened in the context of the transaction that created it.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT">
            <summary>
            It is not possible to open a miniversion with modify access.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANT_CREATE_MORE_STREAM_MINIVERSIONS">
            <summary>
            It is not possible to create any more miniversions for this stream.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REMOTE_FILE_VERSION_MISMATCH">
            <summary>
            The remote server sent mismatching version number or Fid for a file opened with transactions.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_HANDLE_NO_LONGER_VALID">
            <summary>
            The handle has been invalidated by a transaction. The most likely cause is the presence of memory mapping on a file or an open handle when the transaction ended or rolled back to savepoint.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_TXF_METADATA">
            <summary>
            There is no transaction metadata on the file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_CORRUPTION_DETECTED">
            <summary>
            The log data is corrupt.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANT_RECOVER_WITH_HANDLE_OPEN">
            <summary>
            The file can't be recovered because there is a handle still open on it.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RM_DISCONNECTED">
            <summary>
            The transaction outcome is unavailable because the resource manager responsible for it has disconnected.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ENLISTMENT_NOT_SUPERIOR">
            <summary>
            The request was rejected because the enlistment in question is not a superior enlistment.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RECOVERY_NOT_NEEDED">
            <summary>
            The transactional resource manager is already consistent. Recovery is not needed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RM_ALREADY_STARTED">
            <summary>
            The transactional resource manager has already been started.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FILE_IDENTITY_NOT_PERSISTENT">
            <summary>
            The file cannot be opened transactionally, because its identity depends on the outcome of an unresolved transaction.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANT_BREAK_TRANSACTIONAL_DEPENDENCY">
            <summary>
            The operation cannot be performed because another transaction is depending on the fact that this property will not change.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANT_CROSS_RM_BOUNDARY">
            <summary>
            The operation would involve a single file with two transactional resource managers and is therefore not allowed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TXF_DIR_NOT_EMPTY">
            <summary>
            The $Txf directory must be empty for this operation to succeed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INDOUBT_TRANSACTIONS_EXIST">
            <summary>
            The operation would leave a transactional resource manager in an inconsistent state and is therefore not allowed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TM_VOLATILE">
            <summary>
            The operation could not be completed because the transaction manager does not have a log.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ROLLBACK_TIMER_EXPIRED">
            <summary>
            A rollback could not be scheduled because a previously scheduled rollback has already executed or been queued for execution.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TXF_ATTRIBUTE_CORRUPT">
            <summary>
            The transactional metadata attribute on the file or directory is corrupt and unreadable.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EFS_NOT_ALLOWED_IN_TRANSACTION">
            <summary>
            The encryption operation could not be completed because a transaction is active.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTIONAL_OPEN_NOT_ALLOWED">
            <summary>
            This object is not allowed to be opened in a transaction.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_LOG_GROWTH_FAILED">
            <summary>
            An attempt to create space in the transactional resource manager's log failed. The failure status has been recorded in the event log.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE">
            <summary>
            Memory mapping (creating a mapped section) a remote file under a transaction is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TXF_METADATA_ALREADY_PRESENT">
            <summary>
            Transaction metadata is already present on this file and cannot be superseded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTION_SCOPE_CALLBACKS_NOT_SET">
            <summary>
            A transaction scope could not be entered because the scope handler has not been initialized.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTION_REQUIRED_PROMOTION">
            <summary>
            Promotion was required in order to allow the resource manager to enlist, but the transaction was set to disallow it.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANNOT_EXECUTE_FILE_IN_TRANSACTION">
            <summary>
            This file is open for modification in an unresolved transaction and may be opened for execute only by a transacted reader.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTIONS_NOT_FROZEN">
            <summary>
            The request to thaw frozen transactions was ignored because transactions had not previously been frozen.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTION_FREEZE_IN_PROGRESS">
            <summary>
            Transactions cannot be frozen because a freeze is already in progress.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_SNAPSHOT_VOLUME">
            <summary>
            The target volume is not a snapshot volume. This operation is only valid on a volume mounted as a snapshot.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_SAVEPOINT_WITH_OPEN_FILES">
            <summary>
            The savepoint operation failed because files are open on the transaction. This is not permitted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DATA_LOST_REPAIR">
            <summary>
            Windows has discovered corruption in a file, and that file has since been repaired. Data loss may have occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SPARSE_NOT_ALLOWED_IN_TRANSACTION">
            <summary>
            The sparse operation could not be completed because a transaction is active on the file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TM_IDENTITY_MISMATCH">
            <summary>
            The call to create a TransactionManager object failed because the Tm Identity stored in the logfile does not match the Tm Identity that was passed in as an argument.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_FLOATED_SECTION">
            <summary>
            I/O was attempted on a section object that has been floated as a result of a transaction ending. There is no valid data.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANNOT_ACCEPT_TRANSACTED_WORK">
            <summary>
            The transactional resource manager cannot currently accept transacted work due to a transient condition such as low resources.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANNOT_ABORT_TRANSACTIONS">
            <summary>
            The transactional resource manager had too many tranactions outstanding that could not be aborted. The transactional resource manger has been shut down.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_BAD_CLUSTERS">
            <summary>
            The operation could not be completed due to bad clusters on disk.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION">
            <summary>
            The compression operation could not be completed because a transaction is active on the file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_VOLUME_DIRTY">
            <summary>
            The operation could not be completed because the volume is dirty. Please run chkdsk and try again.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_LINK_TRACKING_IN_TRANSACTION">
            <summary>
            The link tracking operation could not be completed because a transaction is active.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_OPERATION_NOT_SUPPORTED_IN_TRANSACTION">
            <summary>
            This operation cannot be performed in a transaction.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EXPIRED_HANDLE">
            <summary>
            The handle is no longer properly associated with its transaction. It may have been opened in a transactional resource manager that was subsequently forced to restart. Please close the handle and open a new one.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TRANSACTION_NOT_ENLISTED">
            <summary>
            The specified operation could not be performed because the resource manager is not enlisted in the transaction.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_WINSTATION_NAME_INVALID">
            <summary>
            The specified session name is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_INVALID_PD">
            <summary>
            The specified protocol driver is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_PD_NOT_FOUND">
            <summary>
            The specified protocol driver was not found in the system path.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_WD_NOT_FOUND">
            <summary>
            The specified terminal connection driver was not found in the system path.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY">
            <summary>
            A registry key for event logging could not be created for this session.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_SERVICE_NAME_COLLISION">
            <summary>
            A service with the same name already exists on the system.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_CLOSE_PENDING">
            <summary>
            A close operation is pending on the session.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_NO_OUTBUF">
            <summary>
            There are no free output buffers available.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_MODEM_INF_NOT_FOUND">
            <summary>
            The MODEM.INF file was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_INVALID_MODEMNAME">
            <summary>
            The modem name was not found in MODEM.INF.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_MODEM_RESPONSE_ERROR">
            <summary>
            The modem did not accept the command sent to it. Verify that the configured modem name matches the attached modem.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_MODEM_RESPONSE_TIMEOUT">
            <summary>
            The modem did not respond to the command sent to it. Verify that the modem is properly cabled and powered on.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_MODEM_RESPONSE_NO_CARRIER">
            <summary>
            Carrier detect has failed or carrier has been dropped due to disconnect.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE">
            <summary>
            Dial tone not detected within the required time. Verify that the phone cable is properly attached and functional.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_MODEM_RESPONSE_BUSY">
            <summary>
            Busy signal detected at remote site on callback.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_MODEM_RESPONSE_VOICE">
            <summary>
            Voice detected at remote site on callback.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_TD_ERROR">
            <summary>
            Transport driver error.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_WINSTATION_NOT_FOUND">
            <summary>
            The specified session cannot be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_WINSTATION_ALREADY_EXISTS">
            <summary>
            The specified session name is already in use.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_WINSTATION_BUSY">
            <summary>
            The task you are trying to do can't be completed because Remote Desktop Services is currently busy. Please try again in a few minutes. Other users should still be able to log on.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_BAD_VIDEO_MODE">
            <summary>
            An attempt has been made to connect to a session whose video mode is not supported by the current client.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_GRAPHICS_INVALID">
            <summary>
            The application attempted to enable DOS graphics mode. DOS graphics mode is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_LOGON_DISABLED">
            <summary>
            Your interactive logon privilege has been disabled. Please contact your administrator.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_NOT_CONSOLE">
            <summary>
            The requested operation can be performed only on the system console. This is most often the result of a driver or system DLL requiring direct console access.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_CLIENT_QUERY_TIMEOUT">
            <summary>
            The client failed to respond to the server connect message.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_CONSOLE_DISCONNECT">
            <summary>
            Disconnecting the console session is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_CONSOLE_CONNECT">
            <summary>
            Reconnecting a disconnected session to the console is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_SHADOW_DENIED">
            <summary>
            The request to control another session remotely was denied.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_WINSTATION_ACCESS_DENIED">
            <summary>
            The requested session access is denied.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_INVALID_WD">
            <summary>
            The specified terminal connection driver is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_SHADOW_INVALID">
            <summary>
            The requested session cannot be controlled remotely. This may be because the session is disconnected or does not currently have a user logged on.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_SHADOW_DISABLED">
            <summary>
            The requested session is not configured to allow remote control.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_CLIENT_LICENSE_IN_USE">
            <summary>
            Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number is currently being used by another user. Please call your system administrator to obtain a unique license number.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_CLIENT_LICENSE_NOT_SET">
            <summary>
            Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number has not been entered for this copy of the Terminal Server client. Please contact your system administrator.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_LICENSE_NOT_AVAILABLE">
            <summary>
            The number of connections to this computer is limited and all connections are in use right now. Try connecting later or contact your system administrator.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_LICENSE_CLIENT_INVALID">
            <summary>
            The client you are using is not licensed to use this system. Your logon request is denied.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_LICENSE_EXPIRED">
            <summary>
            The system license has expired. Your logon request is denied.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_SHADOW_NOT_RUNNING">
            <summary>
            Remote control could not be terminated because the specified session is not currently being remotely controlled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE">
            <summary>
            The remote control of the console was terminated because the display mode was changed. Changing the display mode in a remote control session is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ACTIVATION_COUNT_EXCEEDED">
            <summary>
            Activation has already been reset the maximum number of times for this installation. Your activation timer will not be cleared.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_WINSTATIONS_DISABLED">
            <summary>
            Remote logins are currently disabled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_ENCRYPTION_LEVEL_REQUIRED">
            <summary>
            You do not have the proper encryption level to access this Session.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_SESSION_IN_USE">
            <summary>
            The user %s\\%s is currently logged on to this computer. Only the current user or an administrator can log on to this computer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_NO_FORCE_LOGOFF">
            <summary>
            The user %s\\%s is already logged on to the console of this computer. You do not have permission to log in at this time. To resolve this issue, contact %s\\%s and have them log off.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_ACCOUNT_RESTRICTION">
            <summary>
            Unable to log you on because of an account restriction.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RDP_PROTOCOL_ERROR">
            <summary>
            The RDP protocol component %2 detected an error in the protocol stream and has disconnected the client.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_CDM_CONNECT">
            <summary>
            The Client Drive Mapping Service Has Connected on Terminal Connection.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_CDM_DISCONNECT">
            <summary>
            The Client Drive Mapping Service Has Disconnected on Terminal Connection.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CTX_SECURITY_LAYER_ERROR">
            <summary>
            The Terminal Server security layer detected an error in the protocol stream and has disconnected the client.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TS_INCOMPATIBLE_SESSIONS">
            <summary>
            The target session is incompatible with the current session.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_TS_VIDEO_SUBSYSTEM_ERROR">
            <summary>
            Windows can't connect to your session because a problem occurred in the Windows video subsystem. Try connecting again later, or contact the server administrator for assistance.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.FRS_ERR_INVALID_API_SEQUENCE">
            <summary>
            The file replication service API was called incorrectly.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.FRS_ERR_STARTING_SERVICE">
            <summary>
            The file replication service cannot be started.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.FRS_ERR_STOPPING_SERVICE">
            <summary>
            The file replication service cannot be stopped.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.FRS_ERR_INTERNAL_API">
            <summary>
            The file replication service API terminated the request. The event log may have more information.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.FRS_ERR_INTERNAL">
            <summary>
            The file replication service terminated the request. The event log may have more information.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.FRS_ERR_SERVICE_COMM">
            <summary>
            The file replication service cannot be contacted. The event log may have more information.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.FRS_ERR_INSUFFICIENT_PRIV">
            <summary>
            The file replication service cannot satisfy the request because the user has insufficient privileges. The event log may have more information.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.FRS_ERR_AUTHENTICATION">
            <summary>
            The file replication service cannot satisfy the request because authenticated RPC is not available. The event log may have more information.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.FRS_ERR_PARENT_INSUFFICIENT_PRIV">
            <summary>
            The file replication service cannot satisfy the request because the user has insufficient privileges on the domain controller. The event log may have more information.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.FRS_ERR_PARENT_AUTHENTICATION">
            <summary>
            The file replication service cannot satisfy the request because authenticated RPC is not available on the domain controller. The event log may have more information.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.FRS_ERR_CHILD_TO_PARENT_COMM">
            <summary>
            The file replication service cannot communicate with the file replication service on the domain controller. The event log may have more information.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.FRS_ERR_PARENT_TO_CHILD_COMM">
            <summary>
            The file replication service on the domain controller cannot communicate with the file replication service on this computer. The event log may have more information.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.FRS_ERR_SYSVOL_POPULATE">
            <summary>
            The file replication service cannot populate the system volume because of an internal error. The event log may have more information.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.FRS_ERR_SYSVOL_POPULATE_TIMEOUT">
            <summary>
            The file replication service cannot populate the system volume because of an internal timeout. The event log may have more information.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.FRS_ERR_SYSVOL_IS_BUSY">
            <summary>
            The file replication service cannot process the request. The system volume is busy with a previous request.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.FRS_ERR_SYSVOL_DEMOTE">
            <summary>
            The file replication service cannot stop replicating the system volume because of an internal error. The event log may have more information.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.FRS_ERR_INVALID_SERVICE_PARAMETER">
            <summary>
            The file replication service detected an invalid parameter.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NOT_INSTALLED">
            <summary>
            An error occurred while installing the directory service. For more information, see the event log.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY">
            <summary>
            The directory service evaluated group memberships locally.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NO_ATTRIBUTE_OR_VALUE">
            <summary>
            The specified directory service attribute or value does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_INVALID_ATTRIBUTE_SYNTAX">
            <summary>
            The attribute syntax specified to the directory service is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED">
            <summary>
            The attribute type specified to the directory service is not defined.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS">
            <summary>
            The specified directory service attribute or value already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_BUSY">
            <summary>
            The directory service is busy.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_UNAVAILABLE">
            <summary>
            The directory service is unavailable.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NO_RIDS_ALLOCATED">
            <summary>
            The directory service was unable to allocate a relative identifier.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NO_MORE_RIDS">
            <summary>
            The directory service has exhausted the pool of relative identifiers.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_INCORRECT_ROLE_OWNER">
            <summary>
            The requested operation could not be performed because the directory service is not the master for that type of operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_RIDMGR_INIT_ERROR">
            <summary>
            The directory service was unable to initialize the subsystem that allocates relative identifiers.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_OBJ_CLASS_VIOLATION">
            <summary>
            The requested operation did not satisfy one or more constraints associated with the class of the object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_ON_NON_LEAF">
            <summary>
            The directory service can perform the requested operation only on a leaf object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_ON_RDN">
            <summary>
            The directory service cannot perform the requested operation on the RDN attribute of an object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_MOD_OBJ_CLASS">
            <summary>
            The directory service detected an attempt to modify the object class of an object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CROSS_DOM_MOVE_ERROR">
            <summary>
            The requested cross-domain move operation could not be performed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_GC_NOT_AVAILABLE">
            <summary>
            Unable to contact the global catalog server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SHARED_POLICY">
            <summary>
            The policy object is shared and can only be modified at the root.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_POLICY_OBJECT_NOT_FOUND">
            <summary>
            The policy object does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_POLICY_ONLY_IN_DS">
            <summary>
            The requested policy information is only in the directory service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PROMOTION_ACTIVE">
            <summary>
            A domain controller promotion is currently active.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_PROMOTION_ACTIVE">
            <summary>
            A domain controller promotion is not currently active.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_OPERATIONS_ERROR">
            <summary>
            An operations error occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_PROTOCOL_ERROR">
            <summary>
            A protocol error occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_TIMELIMIT_EXCEEDED">
            <summary>
            The time limit for this request was exceeded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SIZELIMIT_EXCEEDED">
            <summary>
            The size limit for this request was exceeded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_ADMIN_LIMIT_EXCEEDED">
            <summary>
            The administrative limit for this request was exceeded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_COMPARE_FALSE">
            <summary>
            The compare response was false.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_COMPARE_TRUE">
            <summary>
            The compare response was true.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_AUTH_METHOD_NOT_SUPPORTED">
            <summary>
            The requested authentication method is not supported by the server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_STRONG_AUTH_REQUIRED">
            <summary>
            A more secure authentication method is required for this server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_INAPPROPRIATE_AUTH">
            <summary>
            Inappropriate authentication.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_AUTH_UNKNOWN">
            <summary>
            The authentication mechanism is unknown.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_REFERRAL">
            <summary>
            A referral was returned from the server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_UNAVAILABLE_CRIT_EXTENSION">
            <summary>
            The server does not support the requested critical extension.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CONFIDENTIALITY_REQUIRED">
            <summary>
            This request requires a secure connection.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_INAPPROPRIATE_MATCHING">
            <summary>
            Inappropriate matching.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CONSTRAINT_VIOLATION">
            <summary>
            A constraint violation occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NO_SUCH_OBJECT">
            <summary>
            There is no such object on the server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_ALIAS_PROBLEM">
            <summary>
            There is an alias problem.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_INVALID_DN_SYNTAX">
            <summary>
            An invalid dn syntax has been specified.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_IS_LEAF">
            <summary>
            The object is a leaf object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_ALIAS_DEREF_PROBLEM">
            <summary>
            There is an alias dereferencing problem.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_UNWILLING_TO_PERFORM">
            <summary>
            The server is unwilling to process the request.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_LOOP_DETECT">
            <summary>
            A loop has been detected.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NAMING_VIOLATION">
            <summary>
            There is a naming violation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_OBJECT_RESULTS_TOO_LARGE">
            <summary>
            The result set is too large.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_AFFECTS_MULTIPLE_DSAS">
            <summary>
            The operation affects multiple DSAs.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SERVER_DOWN">
            <summary>
            The server is not operational.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_LOCAL_ERROR">
            <summary>
            A local error has occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_ENCODING_ERROR">
            <summary>
            An encoding error has occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DECODING_ERROR">
            <summary>
            A decoding error has occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_FILTER_UNKNOWN">
            <summary>
            The search filter cannot be recognized.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_PARAM_ERROR">
            <summary>
            One or more parameters are illegal.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NOT_SUPPORTED">
            <summary>
            The specified method is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NO_RESULTS_RETURNED">
            <summary>
            No results were returned.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CONTROL_NOT_FOUND">
            <summary>
            The specified control is not supported by the server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CLIENT_LOOP">
            <summary>
            A referral loop was detected by the client.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_REFERRAL_LIMIT_EXCEEDED">
            <summary>
            The preset referral limit was exceeded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SORT_CONTROL_MISSING">
            <summary>
            The search requires a SORT control.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_OFFSET_RANGE_ERROR">
            <summary>
            The search results exceed the offset range specified.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_RIDMGR_DISABLED">
            <summary>
            The directory service detected the subsystem that allocates relative identifiers is disabled. This can occur as a protective mechanism when the system determines a significant portion of relative identifiers (RIDs) have been exhausted. Please see http://go.microsoft.com/fwlink/p/?linkid=228610 for recommended diagnostic steps and the procedure to re-enable account creation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_ROOT_MUST_BE_NC">
            <summary>
            The root object must be the head of a naming context. The root object cannot have an instantiated parent.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_ADD_REPLICA_INHIBITED">
            <summary>
            The add replica operation cannot be performed. The naming context must be writeable in order to create the replica.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_ATT_NOT_DEF_IN_SCHEMA">
            <summary>
            A reference to an attribute that is not defined in the schema occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_MAX_OBJ_SIZE_EXCEEDED">
            <summary>
            The maximum size of an object has been exceeded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_OBJ_STRING_NAME_EXISTS">
            <summary>
            An attempt was made to add an object to the directory with a name that is already in use.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA">
            <summary>
            An attempt was made to add an object of a class that does not have an RDN defined in the schema.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_RDN_DOESNT_MATCH_SCHEMA">
            <summary>
            An attempt was made to add an object using an RDN that is not the RDN defined in the schema.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NO_REQUESTED_ATTS_FOUND">
            <summary>
            None of the requested attributes were found on the objects.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_USER_BUFFER_TO_SMALL">
            <summary>
            The user buffer is too small.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_ATT_IS_NOT_ON_OBJ">
            <summary>
            The attribute specified in the operation is not present on the object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_ILLEGAL_MOD_OPERATION">
            <summary>
            Illegal modify operation. Some aspect of the modification is not permitted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_OBJ_TOO_LARGE">
            <summary>
            The specified object is too large.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_BAD_INSTANCE_TYPE">
            <summary>
            The specified instance type is not valid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_MASTERDSA_REQUIRED">
            <summary>
            The operation must be performed at a master DSA.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_OBJECT_CLASS_REQUIRED">
            <summary>
            The object class attribute must be specified.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_MISSING_REQUIRED_ATT">
            <summary>
            A required attribute is missing.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_ATT_NOT_DEF_FOR_CLASS">
            <summary>
            An attempt was made to modify an object to include an attribute that is not legal for its class.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_ATT_ALREADY_EXISTS">
            <summary>
            The specified attribute is already present on the object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_ADD_ATT_VALUES">
            <summary>
            The specified attribute is not present, or has no values.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SINGLE_VALUE_CONSTRAINT">
            <summary>
            Multiple values were specified for an attribute that can have only one value.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_RANGE_CONSTRAINT">
            <summary>
            A value for the attribute was not in the acceptable range of values.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_ATT_VAL_ALREADY_EXISTS">
            <summary>
            The specified value already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_REM_MISSING_ATT">
            <summary>
            The attribute cannot be removed because it is not present on the object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_REM_MISSING_ATT_VAL">
            <summary>
            The attribute value cannot be removed because it is not present on the object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_ROOT_CANT_BE_SUBREF">
            <summary>
            The specified root object cannot be a subref.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NO_CHAINING">
            <summary>
            Chaining is not permitted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NO_CHAINED_EVAL">
            <summary>
            Chained evaluation is not permitted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NO_PARENT_OBJECT">
            <summary>
            The operation could not be performed because the object's parent is either uninstantiated or deleted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_PARENT_IS_AN_ALIAS">
            <summary>
            Having a parent that is an alias is not permitted. Aliases are leaf objects.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_MIX_MASTER_AND_REPS">
            <summary>
            The object and parent must be of the same type, either both masters or both replicas.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CHILDREN_EXIST">
            <summary>
            The operation cannot be performed because child objects exist. This operation can only be performed on a leaf object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_OBJ_NOT_FOUND">
            <summary>
            Directory object not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_ALIASED_OBJ_MISSING">
            <summary>
            The aliased object is missing.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_BAD_NAME_SYNTAX">
            <summary>
            The object name has bad syntax.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_ALIAS_POINTS_TO_ALIAS">
            <summary>
            It is not permitted for an alias to refer to another alias.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_DEREF_ALIAS">
            <summary>
            The alias cannot be dereferenced.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_OUT_OF_SCOPE">
            <summary>
            The operation is out of scope.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_OBJECT_BEING_REMOVED">
            <summary>
            The operation cannot continue because the object is in the process of being removed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_DELETE_DSA_OBJ">
            <summary>
            The DSA object cannot be deleted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_GENERIC_ERROR">
            <summary>
            A directory service error has occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DSA_MUST_BE_INT_MASTER">
            <summary>
            The operation can only be performed on an internal master DSA object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CLASS_NOT_DSA">
            <summary>
            The object must be of class DSA.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_INSUFF_ACCESS_RIGHTS">
            <summary>
            Insufficient access rights to perform the operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_ILLEGAL_SUPERIOR">
            <summary>
            The object cannot be added because the parent is not on the list of possible superiors.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_ATTRIBUTE_OWNED_BY_SAM">
            <summary>
            Access to the attribute is not permitted because the attribute is owned by the Security Accounts Manager (SAM).
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NAME_TOO_MANY_PARTS">
            <summary>
            The name has too many parts.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NAME_TOO_LONG">
            <summary>
            The name is too long.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NAME_VALUE_TOO_LONG">
            <summary>
            The name value is too long.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NAME_UNPARSEABLE">
            <summary>
            The directory service encountered an error parsing a name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NAME_TYPE_UNKNOWN">
            <summary>
            The directory service cannot get the attribute type for a name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NOT_AN_OBJECT">
            <summary>
            The name does not identify an object; the name identifies a phantom.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SEC_DESC_TOO_SHORT">
            <summary>
            The security descriptor is too short.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SEC_DESC_INVALID">
            <summary>
            The security descriptor is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NO_DELETED_NAME">
            <summary>
            Failed to create name for deleted object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SUBREF_MUST_HAVE_PARENT">
            <summary>
            The parent of a new subref must exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NCNAME_MUST_BE_NC">
            <summary>
            The object must be a naming context.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_ADD_SYSTEM_ONLY">
            <summary>
            It is not permitted to add an attribute which is owned by the system.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CLASS_MUST_BE_CONCRETE">
            <summary>
            The class of the object must be structural; you cannot instantiate an abstract class.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_INVALID_DMD">
            <summary>
            The schema object could not be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_OBJ_GUID_EXISTS">
            <summary>
            A local object with this GUID (dead or alive) already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NOT_ON_BACKLINK">
            <summary>
            The operation cannot be performed on a back link.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NO_CROSSREF_FOR_NC">
            <summary>
            The cross reference for the specified naming context could not be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SHUTTING_DOWN">
            <summary>
            The operation could not be performed because the directory service is shutting down.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_UNKNOWN_OPERATION">
            <summary>
            The directory service request is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_INVALID_ROLE_OWNER">
            <summary>
            The role owner attribute could not be read.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_COULDNT_CONTACT_FSMO">
            <summary>
            The requested FSMO operation failed. The current FSMO holder could not be contacted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CROSS_NC_DN_RENAME">
            <summary>
            Modification of a DN across a naming context is not permitted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_MOD_SYSTEM_ONLY">
            <summary>
            The attribute cannot be modified because it is owned by the system.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_REPLICATOR_ONLY">
            <summary>
            Only the replicator can perform this function.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_OBJ_CLASS_NOT_DEFINED">
            <summary>
            The specified class is not defined.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_OBJ_CLASS_NOT_SUBCLASS">
            <summary>
            The specified class is not a subclass.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NAME_REFERENCE_INVALID">
            <summary>
            The name reference is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CROSS_REF_EXISTS">
            <summary>
            A cross reference already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_DEL_MASTER_CROSSREF">
            <summary>
            It is not permitted to delete a master cross reference.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD">
            <summary>
            Subtree notifications are only supported on NC heads.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX">
            <summary>
            Notification filter is too complex.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DUP_RDN">
            <summary>
            Schema update failed: duplicate RDN.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DUP_OID">
            <summary>
            Schema update failed: duplicate OID.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DUP_MAPI_ID">
            <summary>
            Schema update failed: duplicate MAPI identifier.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DUP_SCHEMA_ID_GUID">
            <summary>
            Schema update failed: duplicate schema-id GUID.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DUP_LDAP_DISPLAY_NAME">
            <summary>
            Schema update failed: duplicate LDAP display name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SEMANTIC_ATT_TEST">
            <summary>
            Schema update failed: range-lower less than range upper.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SYNTAX_MISMATCH">
            <summary>
            Schema update failed: syntax mismatch.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_EXISTS_IN_MUST_HAVE">
            <summary>
            Schema deletion failed: attribute is used in must-contain.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_EXISTS_IN_MAY_HAVE">
            <summary>
            Schema deletion failed: attribute is used in may-contain.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NONEXISTENT_MAY_HAVE">
            <summary>
            Schema update failed: attribute in may-contain does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NONEXISTENT_MUST_HAVE">
            <summary>
            Schema update failed: attribute in must-contain does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_AUX_CLS_TEST_FAIL">
            <summary>
            Schema update failed: class in aux-class list does not exist or is not an auxiliary class.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NONEXISTENT_POSS_SUP">
            <summary>
            Schema update failed: class in poss-superiors does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SUB_CLS_TEST_FAIL">
            <summary>
            Schema update failed: class in subclassof list does not exist or does not satisfy hierarchy rules.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_BAD_RDN_ATT_ID_SYNTAX">
            <summary>
            Schema update failed: Rdn-Att-Id has wrong syntax.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_EXISTS_IN_AUX_CLS">
            <summary>
            Schema deletion failed: class is used as auxiliary class.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_EXISTS_IN_SUB_CLS">
            <summary>
            Schema deletion failed: class is used as sub class.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_EXISTS_IN_POSS_SUP">
            <summary>
            Schema deletion failed: class is used as poss superior.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_RECALCSCHEMA_FAILED">
            <summary>
            Schema update failed in recalculating validation cache.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_TREE_DELETE_NOT_FINISHED">
            <summary>
            The tree deletion is not finished. The request must be made again to continue deleting the tree.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_DELETE">
            <summary>
            The requested delete operation could not be performed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_ATT_SCHEMA_REQ_ID">
            <summary>
            Cannot read the governs class identifier for the schema record.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_BAD_ATT_SCHEMA_SYNTAX">
            <summary>
            The attribute schema has bad syntax.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_CACHE_ATT">
            <summary>
            The attribute could not be cached.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_CACHE_CLASS">
            <summary>
            The class could not be cached.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_REMOVE_ATT_CACHE">
            <summary>
            The attribute could not be removed from the cache.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_REMOVE_CLASS_CACHE">
            <summary>
            The class could not be removed from the cache.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_RETRIEVE_DN">
            <summary>
            The distinguished name attribute could not be read.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_MISSING_SUPREF">
            <summary>
            No superior reference has been configured for the directory service. The directory service is therefore unable to issue referrals to objects outside this forest.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_RETRIEVE_INSTANCE">
            <summary>
            The instance type attribute could not be retrieved.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CODE_INCONSISTENCY">
            <summary>
            An internal error has occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DATABASE_ERROR">
            <summary>
            A database error has occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_GOVERNSID_MISSING">
            <summary>
            The attribute GOVERNSID is missing.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_MISSING_EXPECTED_ATT">
            <summary>
            An expected attribute is missing.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NCNAME_MISSING_CR_REF">
            <summary>
            The specified naming context is missing a cross reference.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SECURITY_CHECKING_ERROR">
            <summary>
            A security checking error has occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SCHEMA_NOT_LOADED">
            <summary>
            The schema is not loaded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SCHEMA_ALLOC_FAILED">
            <summary>
            Schema allocation failed. Please check if the machine is running low on memory.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_ATT_SCHEMA_REQ_SYNTAX">
            <summary>
            Failed to obtain the required syntax for the attribute schema.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_GCVERIFY_ERROR">
            <summary>
            The global catalog verification failed. The global catalog is not available or does not support the operation. Some part of the directory is currently not available.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_SCHEMA_MISMATCH">
            <summary>
            The replication operation failed because of a schema mismatch between the servers involved.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_FIND_DSA_OBJ">
            <summary>
            The DSA object could not be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_FIND_EXPECTED_NC">
            <summary>
            The naming context could not be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_FIND_NC_IN_CACHE">
            <summary>
            The naming context could not be found in the cache.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_RETRIEVE_CHILD">
            <summary>
            The child object could not be retrieved.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SECURITY_ILLEGAL_MODIFY">
            <summary>
            The modification was not permitted for security reasons.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_REPLACE_HIDDEN_REC">
            <summary>
            The operation cannot replace the hidden record.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_BAD_HIERARCHY_FILE">
            <summary>
            The hierarchy file is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED">
            <summary>
            The attempt to build the hierarchy table failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CONFIG_PARAM_MISSING">
            <summary>
            The directory configuration parameter is missing from the registry.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_COUNTING_AB_INDICES_FAILED">
            <summary>
            The attempt to count the address book indices failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED">
            <summary>
            The allocation of the hierarchy table failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_INTERNAL_FAILURE">
            <summary>
            The directory service encountered an internal failure.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_UNKNOWN_ERROR">
            <summary>
            The directory service encountered an unknown failure.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_ROOT_REQUIRES_CLASS_TOP">
            <summary>
            A root object requires a class of 'top'.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_REFUSING_FSMO_ROLES">
            <summary>
            This directory server is shutting down, and cannot take ownership of new floating single-master operation roles.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_MISSING_FSMO_SETTINGS">
            <summary>
            The directory service is missing mandatory configuration information, and is unable to determine the ownership of floating single-master operation roles.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_UNABLE_TO_SURRENDER_ROLES">
            <summary>
            The directory service was unable to transfer ownership of one or more floating single-master operation roles to other servers.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_GENERIC">
            <summary>
            The replication operation failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_INVALID_PARAMETER">
            <summary>
            An invalid parameter was specified for this replication operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_BUSY">
            <summary>
            The directory service is too busy to complete the replication operation at this time.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_BAD_DN">
            <summary>
            The distinguished name specified for this replication operation is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_BAD_NC">
            <summary>
            The naming context specified for this replication operation is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_DN_EXISTS">
            <summary>
            The distinguished name specified for this replication operation already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_INTERNAL_ERROR">
            <summary>
            The replication system encountered an internal error.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_INCONSISTENT_DIT">
            <summary>
            The replication operation encountered a database inconsistency.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_CONNECTION_FAILED">
            <summary>
            The server specified for this replication operation could not be contacted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_BAD_INSTANCE_TYPE">
            <summary>
            The replication operation encountered an object with an invalid instance type.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_OUT_OF_MEM">
            <summary>
            The replication operation failed to allocate memory.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_MAIL_PROBLEM">
            <summary>
            The replication operation encountered an error with the mail system.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_REF_ALREADY_EXISTS">
            <summary>
            The replication reference information for the target server already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_REF_NOT_FOUND">
            <summary>
            The replication reference information for the target server does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_OBJ_IS_REP_SOURCE">
            <summary>
            The naming context cannot be removed because it is replicated to another server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_DB_ERROR">
            <summary>
            The replication operation encountered a database error.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_NO_REPLICA">
            <summary>
            The naming context is in the process of being removed or is not replicated from the specified server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_ACCESS_DENIED">
            <summary>
            Replication access was denied.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_NOT_SUPPORTED">
            <summary>
            The requested operation is not supported by this version of the directory service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_RPC_CANCELLED">
            <summary>
            The replication remote procedure call was cancelled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_SOURCE_DISABLED">
            <summary>
            The source server is currently rejecting replication requests.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_SINK_DISABLED">
            <summary>
            The destination server is currently rejecting replication requests.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_NAME_COLLISION">
            <summary>
            The replication operation failed due to a collision of object names.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_SOURCE_REINSTALLED">
            <summary>
            The replication source has been reinstalled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_MISSING_PARENT">
            <summary>
            The replication operation failed because a required parent object is missing.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_PREEMPTED">
            <summary>
            The replication operation was preempted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_ABANDON_SYNC">
            <summary>
            The replication synchronization attempt was abandoned because of a lack of updates.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_SHUTDOWN">
            <summary>
            The replication operation was terminated because the system is shutting down.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET">
            <summary>
            Synchronization attempt failed because the destination DC is currently waiting to synchronize new partial attributes from source. This condition is normal if a recent schema change modified the partial attribute set. The destination partial attribute set is not a subset of source partial attribute set.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA">
            <summary>
            The replication synchronization attempt failed because a master replica attempted to sync from a partial replica.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_EXTN_CONNECTION_FAILED">
            <summary>
            The server specified for this replication operation was contacted, but that server was unable to contact an additional server needed to complete the operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_INSTALL_SCHEMA_MISMATCH">
            <summary>
            The version of the directory service schema of the source forest is not compatible with the version of directory service on this computer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DUP_LINK_ID">
            <summary>
            Schema update failed: An attribute with the same link identifier already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NAME_ERROR_RESOLVING">
            <summary>
            Name translation: Generic processing error.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NAME_ERROR_NOT_FOUND">
            <summary>
            Name translation: Could not find the name or insufficient right to see name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NAME_ERROR_NOT_UNIQUE">
            <summary>
            Name translation: Input name mapped to more than one output name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NAME_ERROR_NO_MAPPING">
            <summary>
            Name translation: Input name found, but not the associated output format.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NAME_ERROR_DOMAIN_ONLY">
            <summary>
            Name translation: Unable to resolve completely, only the domain was found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING">
            <summary>
            Name translation: Unable to perform purely syntactical mapping at the client without going out to the wire.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CONSTRUCTED_ATT_MOD">
            <summary>
            Modification of a constructed attribute is not allowed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_WRONG_OM_OBJ_CLASS">
            <summary>
            The OM-Object-Class specified is incorrect for an attribute with the specified syntax.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_REPL_PENDING">
            <summary>
            The replication request has been posted; waiting for reply.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DS_REQUIRED">
            <summary>
            The requested operation requires a directory service, and none was available.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_INVALID_LDAP_DISPLAY_NAME">
            <summary>
            The LDAP display name of the class or attribute contains non-ASCII characters.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NON_BASE_SEARCH">
            <summary>
            The requested search operation is only supported for base searches.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_RETRIEVE_ATTS">
            <summary>
            The search failed to retrieve attributes from the database.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_BACKLINK_WITHOUT_LINK">
            <summary>
            The schema update operation tried to add a backward link attribute that has no corresponding forward link.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_EPOCH_MISMATCH">
            <summary>
            Source and destination of a cross-domain move do not agree on the object's epoch number. Either source or destination does not have the latest version of the object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SRC_NAME_MISMATCH">
            <summary>
            Source and destination of a cross-domain move do not agree on the object's current name. Either source or destination does not have the latest version of the object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SRC_AND_DST_NC_IDENTICAL">
            <summary>
            Source and destination for the cross-domain move operation are identical. Caller should use local move operation instead of cross-domain move operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DST_NC_MISMATCH">
            <summary>
            Source and destination for a cross-domain move are not in agreement on the naming contexts in the forest. Either source or destination does not have the latest version of the Partitions container.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC">
            <summary>
            Destination of a cross-domain move is not authoritative for the destination naming context.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SRC_GUID_MISMATCH">
            <summary>
            Source and destination of a cross-domain move do not agree on the identity of the source object. Either source or destination does not have the latest version of the source object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_MOVE_DELETED_OBJECT">
            <summary>
            Object being moved across-domains is already known to be deleted by the destination server. The source server does not have the latest version of the source object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_PDC_OPERATION_IN_PROGRESS">
            <summary>
            Another operation which requires exclusive access to the PDC FSMO is already in progress.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD">
            <summary>
            A cross-domain move operation failed such that two versions of the moved object exist - one each in the source and destination domains. The destination object needs to be removed to restore the system to a consistent state.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION">
            <summary>
            This object may not be moved across domain boundaries either because cross-domain moves for this class are disallowed, or the object has some special characteristics, e.g.: trust account or restricted RID, which prevent its move.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS">
            <summary>
            Can't move objects with memberships across domain boundaries as once moved, this would violate the membership conditions of the account group. Remove the object from any account group memberships and retry.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NC_MUST_HAVE_NC_PARENT">
            <summary>
            A naming context head must be the immediate child of another naming context head, not of an interior node.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE">
            <summary>
            The directory cannot validate the proposed naming context name because it does not hold a replica of the naming context above the proposed naming context. Please ensure that the domain naming master role is held by a server that is configured as a global catalog server, and that the server is up to date with its replication partners. (Applies only to Windows 2000 Domain Naming masters.)
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DST_DOMAIN_NOT_NATIVE">
            <summary>
            Destination domain must be in native mode.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER">
            <summary>
            The operation cannot be performed because the server does not have an infrastructure container in the domain of interest.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_MOVE_ACCOUNT_GROUP">
            <summary>
            Cross-domain move of non-empty account groups is not allowed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_MOVE_RESOURCE_GROUP">
            <summary>
            Cross-domain move of non-empty resource groups is not allowed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_INVALID_SEARCH_FLAG">
            <summary>
            The search flags for the attribute are invalid. The ANR bit is valid only on attributes of Unicode or Teletex strings.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NO_TREE_DELETE_ABOVE_NC">
            <summary>
            Tree deletions starting at an object which has an NC head as a descendant are not allowed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE">
            <summary>
            The directory service failed to lock a tree in preparation for a tree deletion because the tree was in use.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE">
            <summary>
            The directory service failed to identify the list of objects to delete while attempting a tree deletion.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SAM_INIT_FAILURE">
            <summary>
            Security Accounts Manager initialization failed because of the following error: %1. Error Status: 0x%2. Please shutdown this system and reboot into Directory Services Restore Mode, check the event log for more detailed information.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SENSITIVE_GROUP_VIOLATION">
            <summary>
            Only an administrator can modify the membership list of an administrative group.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_MOD_PRIMARYGROUPID">
            <summary>
            Cannot change the primary group ID of a domain controller account.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD">
            <summary>
            An attempt is made to modify the base schema.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NONSAFE_SCHEMA_CHANGE">
            <summary>
            Adding a new mandatory attribute to an existing class, deleting a mandatory attribute from an existing class, or adding an optional attribute to the special class Top that is not a backlink attribute (directly or through inheritance, for example, by adding or deleting an auxiliary class) is not allowed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SCHEMA_UPDATE_DISALLOWED">
            <summary>
            Schema update is not allowed on this DC because the DC is not the schema FSMO Role Owner.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_CREATE_UNDER_SCHEMA">
            <summary>
            An object of this class cannot be created under the schema container. You can only create attribute-schema and class-schema objects under the schema container.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_INSTALL_NO_SRC_SCH_VERSION">
            <summary>
            The replica/child install failed to get the objectVersion attribute on the schema container on the source DC. Either the attribute is missing on the schema container or the credentials supplied do not have permission to read it.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE">
            <summary>
            The replica/child install failed to read the objectVersion attribute in the SCHEMA section of the file schema.ini in the system32 directory.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_INVALID_GROUP_TYPE">
            <summary>
            The specified group type is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN">
            <summary>
            You cannot nest global groups in a mixed domain if the group is security-enabled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN">
            <summary>
            You cannot nest local groups in a mixed domain if the group is security-enabled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER">
            <summary>
            A global group cannot have a local group as a member.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER">
            <summary>
            A global group cannot have a universal group as a member.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER">
            <summary>
            A universal group cannot have a local group as a member.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER">
            <summary>
            A global group cannot have a cross-domain member.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER">
            <summary>
            A local group cannot have another cross domain local group as a member.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_HAVE_PRIMARY_MEMBERS">
            <summary>
            A group with primary members cannot change to a security-disabled group.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_STRING_SD_CONVERSION_FAILED">
            <summary>
            The schema cache load failed to convert the string default SD on a class-schema object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NAMING_MASTER_GC">
            <summary>
            Only DSAs configured to be Global Catalog servers should be allowed to hold the Domain Naming Master FSMO role. (Applies only to Windows 2000 servers.)
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DNS_LOOKUP_FAILURE">
            <summary>
            The DSA operation is unable to proceed because of a DNS lookup failure.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_COULDNT_UPDATE_SPNS">
            <summary>
            While processing a change to the DNS Host Name for an object, the Service Principal Name values could not be kept in sync.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_RETRIEVE_SD">
            <summary>
            The Security Descriptor attribute could not be read.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_KEY_NOT_UNIQUE">
            <summary>
            The object requested was not found, but an object with that key was found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_WRONG_LINKED_ATT_SYNTAX">
            <summary>
            The syntax of the linked attribute being added is incorrect. Forward links can only have syntax 2.5.5.1, 2.5.5.7, and 2.5.5.14, and backlinks can only have syntax 2.5.5.1.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD">
            <summary>
            Security Account Manager needs to get the boot password.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY">
            <summary>
            Security Account Manager needs to get the boot key from floppy disk.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_START">
            <summary>
            Directory Service cannot start.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_INIT_FAILURE">
            <summary>
            Directory Services could not start.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION">
            <summary>
            The connection between client and server requires packet privacy or better.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SOURCE_DOMAIN_IN_FOREST">
            <summary>
            The source domain may not be in the same forest as destination.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST">
            <summary>
            The destination domain must be in the forest.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED">
            <summary>
            The operation requires that destination domain auditing be enabled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN">
            <summary>
            The operation couldn't locate a DC for the source domain.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER">
            <summary>
            The source object must be a group or user.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SRC_SID_EXISTS_IN_FOREST">
            <summary>
            The source object's SID already exists in destination forest.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH">
            <summary>
            The source and destination object must be of the same type.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SAM_INIT_FAILURE">
            <summary>
            Security Accounts Manager initialization failed because of the following error: %1. Error Status: 0x%2. Click OK to shut down the system and reboot into Safe Mode. Check the event log for detailed information.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_SCHEMA_INFO_SHIP">
            <summary>
            Schema information could not be included in the replication request.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_SCHEMA_CONFLICT">
            <summary>
            The replication operation could not be completed due to a schema incompatibility.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT">
            <summary>
            The replication operation could not be completed due to a previous schema incompatibility.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_OBJ_NC_MISMATCH">
            <summary>
            The replication update could not be applied because either the source or the destination has not yet received information regarding a recent cross-domain move operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NC_STILL_HAS_DSAS">
            <summary>
            The requested domain could not be deleted because there exist domain controllers that still host this domain.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_GC_REQUIRED">
            <summary>
            The requested operation can be performed only on a global catalog server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY">
            <summary>
            A local group can only be a member of other local groups in the same domain.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS">
            <summary>
            Foreign security principals cannot be members of universal groups.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_ADD_TO_GC">
            <summary>
            The attribute is not allowed to be replicated to the GC because of security reasons.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NO_CHECKPOINT_WITH_PDC">
            <summary>
            The checkpoint with the PDC could not be taken because there too many modifications being processed currently.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SOURCE_AUDITING_NOT_ENABLED">
            <summary>
            The operation requires that source domain auditing be enabled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC">
            <summary>
            Security principal objects can only be created inside domain naming contexts.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_INVALID_NAME_FOR_SPN">
            <summary>
            A Service Principal Name (SPN) could not be constructed because the provided hostname is not in the necessary format.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS">
            <summary>
            A Filter was passed that uses constructed attributes.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_UNICODEPWD_NOT_IN_QUOTES">
            <summary>
            The unicodePwd attribute value must be enclosed in double quotes.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED">
            <summary>
            Your computer could not be joined to the domain. You have exceeded the maximum number of computer accounts you are allowed to create in this domain. Contact your system administrator to have this limit reset or increased.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_MUST_BE_RUN_ON_DST_DC">
            <summary>
            For security reasons, the operation must be run on the destination DC.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER">
            <summary>
            For security reasons, the source DC must be NT4SP4 or greater.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ">
            <summary>
            Critical Directory Service System objects cannot be deleted during tree delete operations. The tree delete may have been partially performed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_INIT_FAILURE_CONSOLE">
            <summary>
            Directory Services could not start because of the following error: %1. Error Status: 0x%2. Please click OK to shutdown the system. You can use the recovery console to diagnose the system further.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SAM_INIT_FAILURE_CONSOLE">
            <summary>
            Security Accounts Manager initialization failed because of the following error: %1. Error Status: 0x%2. Please click OK to shutdown the system. You can use the recovery console to diagnose the system further.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_FOREST_VERSION_TOO_HIGH">
            <summary>
            The version of the operating system is incompatible with the current AD DS forest functional level or AD LDS Configuration Set functional level. You must upgrade to a new version of the operating system before this server can become an AD DS Domain Controller or add an AD LDS Instance in this AD DS Forest or AD LDS Configuration Set.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DOMAIN_VERSION_TOO_HIGH">
            <summary>
            The version of the operating system installed is incompatible with the current domain functional level. You must upgrade to a new version of the operating system before this server can become a domain controller in this domain.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_FOREST_VERSION_TOO_LOW">
            <summary>
            The version of the operating system installed on this server no longer supports the current AD DS Forest functional level or AD LDS Configuration Set functional level. You must raise the AD DS Forest functional level or AD LDS Configuration Set functional level before this server can become an AD DS Domain Controller or an AD LDS Instance in this Forest or Configuration Set.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DOMAIN_VERSION_TOO_LOW">
            <summary>
            The version of the operating system installed on this server no longer supports the current domain functional level. You must raise the domain functional level before this server can become a domain controller in this domain.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_INCOMPATIBLE_VERSION">
            <summary>
            The version of the operating system installed on this server is incompatible with the functional level of the domain or forest.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_LOW_DSA_VERSION">
            <summary>
            The functional level of the domain (or forest) cannot be raised to the requested value, because there exist one or more domain controllers in the domain (or forest) that are at a lower incompatible functional level.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN">
            <summary>
            The forest functional level cannot be raised to the requested value since one or more domains are still in mixed domain mode. All domains in the forest must be in native mode, for you to raise the forest functional level.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NOT_SUPPORTED_SORT_ORDER">
            <summary>
            The sort order requested is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NAME_NOT_UNIQUE">
            <summary>
            The requested name already exists as a unique identifier.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4">
            <summary>
            The machine account was created pre-NT4. The account needs to be recreated.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_OUT_OF_VERSION_STORE">
            <summary>
            The database is out of version store.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_INCOMPATIBLE_CONTROLS_USED">
            <summary>
            Unable to continue operation because multiple conflicting controls were used.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NO_REF_DOMAIN">
            <summary>
            Unable to find a valid security descriptor reference domain for this partition.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_RESERVED_LINK_ID">
            <summary>
            Schema update failed: The link identifier is reserved.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_LINK_ID_NOT_AVAILABLE">
            <summary>
            Schema update failed: There are no link identifiers available.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER">
            <summary>
            An account group cannot have a universal group as a member.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE">
            <summary>
            Rename or move operations on naming context heads or read-only objects are not allowed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC">
            <summary>
            Move operations on objects in the schema naming context are not allowed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG">
            <summary>
            A system flag has been set on the object and does not allow the object to be moved or renamed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_MODIFYDN_WRONG_GRANDPARENT">
            <summary>
            This object is not allowed to change its grandparent container. Moves are not forbidden on this object, but are restricted to sibling containers.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NAME_ERROR_TRUST_REFERRAL">
            <summary>
            Unable to resolve completely, a referral to another forest is generated.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER">
            <summary>
            The requested action is not supported on standard server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD">
            <summary>
            Could not access a partition of the directory service located on a remote server. Make sure at least one server is running for the partition in question.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2">
            <summary>
            The directory cannot validate the proposed naming context (or partition) name because it does not hold a replica nor can it contact a replica of the naming context above the proposed naming context. Please ensure that the parent naming context is properly registered in DNS, and at least one replica of this naming context is reachable by the Domain Naming master.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_THREAD_LIMIT_EXCEEDED">
            <summary>
            The thread limit for this request was exceeded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NOT_CLOSEST">
            <summary>
            The Global catalog server is not in the closest site.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF">
            <summary>
            The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the corresponding server object in the local DS database has no serverReference attribute.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_SINGLE_USER_MODE_FAILED">
            <summary>
            The Directory Service failed to enter single user mode.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NTDSCRIPT_SYNTAX_ERROR">
            <summary>
            The Directory Service cannot parse the script because of a syntax error.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NTDSCRIPT_PROCESS_ERROR">
            <summary>
            The Directory Service cannot process the script because of an error.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DIFFERENT_REPL_EPOCHS">
            <summary>
            The directory service cannot perform the requested operation because the servers involved are of different replication epochs (which is usually related to a domain rename that is in progress).
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRS_EXTENSIONS_CHANGED">
            <summary>
            The directory service binding must be renegotiated due to a change in the server extensions information.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR">
            <summary>
            Operation not allowed on a disabled cross ref.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NO_MSDS_INTID">
            <summary>
            Schema update failed: No values for msDS-IntId are available.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DUP_MSDS_INTID">
            <summary>
            Schema update failed: Duplicate msDS-INtId. Retry the operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_EXISTS_IN_RDNATTID">
            <summary>
            Schema deletion failed: attribute is used in rDNAttID.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_AUTHORIZATION_FAILED">
            <summary>
            The directory service failed to authorize the request.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_INVALID_SCRIPT">
            <summary>
            The Directory Service cannot process the script because it is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_REMOTE_CROSSREF_OP_FAILED">
            <summary>
            The remote create cross reference operation failed on the Domain Naming Master FSMO. The operation's error is in the extended data.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CROSS_REF_BUSY">
            <summary>
            A cross reference is in use locally with the same name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN">
            <summary>
            The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the server's domain has been deleted from the forest.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC">
            <summary>
            Writeable NCs prevent this DC from demoting.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DUPLICATE_ID_FOUND">
            <summary>
            The requested object has a non-unique identifier and cannot be retrieved.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT">
            <summary>
            Insufficient attributes were given to create an object. This object may not exist because it may have been deleted and already garbage collected.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_GROUP_CONVERSION_ERROR">
            <summary>
            The group cannot be converted due to attribute restrictions on the requested group type.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_MOVE_APP_BASIC_GROUP">
            <summary>
            Cross-domain move of non-empty basic application groups is not allowed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_CANT_MOVE_APP_QUERY_GROUP">
            <summary>
            Cross-domain move of non-empty query based application groups is not allowed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_ROLE_NOT_VERIFIED">
            <summary>
            The FSMO role ownership could not be verified because its directory partition has not replicated successfully with at least one replication partner.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL">
            <summary>
            The target container for a redirection of a well known object container cannot already be a special container.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DOMAIN_RENAME_IN_PROGRESS">
            <summary>
            The Directory Service cannot perform the requested operation because a domain rename operation is in progress.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_EXISTING_AD_CHILD_NC">
            <summary>
            The directory service detected a child partition below the requested partition name. The partition hierarchy must be created in a top down method.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_REPL_LIFETIME_EXCEEDED">
            <summary>
            The directory service cannot replicate with this server because the time since the last replication with this server has exceeded the tombstone lifetime.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER">
            <summary>
            The requested operation is not allowed on an object under the system container.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_LDAP_SEND_QUEUE_FULL">
            <summary>
            The LDAP servers network send queue has filled up because the client is not processing the results of its requests fast enough. No more requests will be processed until the client catches up. If the client does not catch up then it will be disconnected.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_OUT_SCHEDULE_WINDOW">
            <summary>
            The scheduled replication did not take place because the system was too busy to execute the request within the schedule window. The replication queue is overloaded. Consider reducing the number of partners or decreasing the scheduled replication frequency.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_POLICY_NOT_KNOWN">
            <summary>
            At this time, it cannot be determined if the branch replication policy is available on the hub domain controller. Please retry at a later time to account for replication latencies.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_SITE_SETTINGS_OBJECT">
            <summary>
            The site settings object for the specified site does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_SECRETS">
            <summary>
            The local account store does not contain secret material for the specified account.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NO_WRITABLE_DC_FOUND">
            <summary>
            Could not find a writable domain controller in the domain.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NO_SERVER_OBJECT">
            <summary>
            The server object for the domain controller does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NO_NTDSA_OBJECT">
            <summary>
            The NTDS Settings object for the domain controller does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_NON_ASQ_SEARCH">
            <summary>
            The requested search operation is not supported for ASQ searches.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_AUDIT_FAILURE">
            <summary>
            A required audit event could not be generated for the operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_INVALID_SEARCH_FLAG_SUBTREE">
            <summary>
            The search flags for the attribute are invalid. The subtree index bit is valid only on single valued attributes.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_INVALID_SEARCH_FLAG_TUPLE">
            <summary>
            The search flags for the attribute are invalid. The tuple index bit is valid only on attributes of Unicode strings.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_HIERARCHY_TABLE_TOO_DEEP">
            <summary>
            The address books are nested too deeply. Failed to build the hierarchy table.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_CORRUPT_UTD_VECTOR">
            <summary>
            The specified up-to-date-ness vector is corrupt.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_SECRETS_DENIED">
            <summary>
            The request to replicate secrets is denied.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_RESERVED_MAPI_ID">
            <summary>
            Schema update failed: The MAPI identifier is reserved.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_MAPI_ID_NOT_AVAILABLE">
            <summary>
            Schema update failed: There are no MAPI identifiers available.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_MISSING_KRBTGT_SECRET">
            <summary>
            The replication operation failed because the required attributes of the local krbtgt object are missing.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DOMAIN_NAME_EXISTS_IN_FOREST">
            <summary>
            The domain name of the trusted domain already exists in the forest.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_FLAT_NAME_EXISTS_IN_FOREST">
            <summary>
            The flat name of the trusted domain already exists in the forest.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_USER_PRINCIPAL_NAME">
            <summary>
            The User Principal Name (UPN) is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS">
            <summary>
            OID mapped groups cannot have members.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_OID_NOT_FOUND">
            <summary>
            The specified OID cannot be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DRA_RECYCLED_TARGET">
            <summary>
            The replication operation failed because the target object referred by a link value is recycled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_DISALLOWED_NC_REDIRECT">
            <summary>
            The redirect operation failed because the target object is in a NC different from the domain NC of the current domain controller.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_HIGH_ADLDS_FFL">
            <summary>
            The functional level of the AD LDS configuration set cannot be lowered to the requested value.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_HIGH_DSA_VERSION">
            <summary>
            The functional level of the domain (or forest) cannot be lowered to the requested value.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_LOW_ADLDS_FFL">
            <summary>
            The functional level of the AD LDS configuration set cannot be raised to the requested value, because there exist one or more ADLDS instances that are at a lower incompatible functional level.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DOMAIN_SID_SAME_AS_LOCAL_WORKSTATION">
            <summary>
            The domain join cannot be completed because the SID of the domain you attempted to join was identical to the SID of this machine. This is a symptom of an improperly cloned operating system install. You should run sysprep on this machine in order to generate a new machine SID. Please see http://go.microsoft.com/fwlink/p/?linkid=168895 for more information.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DS_UNDELETE_SAM_VALIDATION_FAILED">
            <summary>
            The undelete operation failed because the Sam Account Name or Additional Sam Account Name of the object being undeleted conflicts with an existing live object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INCORRECT_ACCOUNT_TYPE">
            <summary>
            The system is not authoritative for the specified account and therefore cannot complete the operation. Please retry the operation using the provider associated with this account. If this is an online provider please use the provider's online site.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_RCODE_FORMAT_ERROR">
            <summary>
            DNS server unable to interpret format.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_RCODE_SERVER_FAILURE">
            <summary>
            DNS server failure.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_RCODE_NAME_ERROR">
            <summary>
            DNS name does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_RCODE_NOT_IMPLEMENTED">
            <summary>
            DNS request not supported by name server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_RCODE_REFUSED">
            <summary>
            DNS operation refused.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_RCODE_YXDOMAIN">
            <summary>
            DNS name that ought not exist, does exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_RCODE_YXRRSET">
            <summary>
            DNS RR set that ought not exist, does exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_RCODE_NXRRSET">
            <summary>
            DNS RR set that ought to exist, does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_RCODE_NOTAUTH">
            <summary>
            DNS server not authoritative for zone.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_RCODE_NOTZONE">
            <summary>
            DNS name in update or prereq is not in zone.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_RCODE_BADSIG">
            <summary>
            DNS signature failed to verify.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_RCODE_BADKEY">
            <summary>
            DNS bad key.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_RCODE_BADTIME">
            <summary>
            DNS signature validity expired.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_KEYMASTER_REQUIRED">
            <summary>
            Only the DNS server acting as the key master for the zone may perform this operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NOT_ALLOWED_ON_SIGNED_ZONE">
            <summary>
            This operation is not allowed on a zone that is signed or has signing keys.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NSEC3_INCOMPATIBLE_WITH_RSA_SHA1">
            <summary>
            NSEC3 is not compatible with the RSA-SHA-1 algorithm. Choose a different algorithm or use NSEC.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NOT_ENOUGH_SIGNING_KEY_DESCRIPTORS">
            <summary>
            The zone does not have enough signing keys. There must be at least one key signing key (KSK) and at least one zone signing key (ZSK).
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_UNSUPPORTED_ALGORITHM">
            <summary>
            The specified algorithm is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_INVALID_KEY_SIZE">
            <summary>
            The specified key size is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_SIGNING_KEY_NOT_ACCESSIBLE">
            <summary>
            One or more of the signing keys for a zone are not accessible to the DNS server. Zone signing will not be operational until this error is resolved.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_KSP_DOES_NOT_SUPPORT_PROTECTION">
            <summary>
            The specified key storage provider does not support DPAPI++ data protection. Zone signing will not be operational until this error is resolved.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_UNEXPECTED_DATA_PROTECTION_ERROR">
            <summary>
            An unexpected DPAPI++ error was encountered. Zone signing will not be operational until this error is resolved.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_UNEXPECTED_CNG_ERROR">
            <summary>
            An unexpected crypto error was encountered. Zone signing may not be operational until this error is resolved.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_UNKNOWN_SIGNING_PARAMETER_VERSION">
            <summary>
            The DNS server encountered a signing key with an unknown version. Zone signing will not be operational until this error is resolved.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_KSP_NOT_ACCESSIBLE">
            <summary>
            The specified key service provider cannot be opened by the DNS server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_TOO_MANY_SKDS">
            <summary>
            The DNS server cannot accept any more signing keys with the specified algorithm and KSK flag value for this zone.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_INVALID_ROLLOVER_PERIOD">
            <summary>
            The specified rollover period is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_INVALID_INITIAL_ROLLOVER_OFFSET">
            <summary>
            The specified initial rollover offset is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_ROLLOVER_IN_PROGRESS">
            <summary>
            The specified signing key is already in process of rolling over keys.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_STANDBY_KEY_NOT_PRESENT">
            <summary>
            The specified signing key does not have a standby key to revoke.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NOT_ALLOWED_ON_ZSK">
            <summary>
            This operation is not allowed on a zone signing key (ZSK).
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NOT_ALLOWED_ON_ACTIVE_SKD">
            <summary>
            This operation is not allowed on an active signing key.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_ROLLOVER_ALREADY_QUEUED">
            <summary>
            The specified signing key is already queued for rollover.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NOT_ALLOWED_ON_UNSIGNED_ZONE">
            <summary>
            This operation is not allowed on an unsigned zone.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_BAD_KEYMASTER">
            <summary>
            This operation could not be completed because the DNS server listed as the current key master for this zone is down or misconfigured. Resolve the problem on the current key master for this zone or use another DNS server to seize the key master role.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_INVALID_SIGNATURE_VALIDITY_PERIOD">
            <summary>
            The specified signature validity period is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_INVALID_NSEC3_ITERATION_COUNT">
            <summary>
            The specified NSEC3 iteration count is higher than allowed by the minimum key length used in the zone.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_DNSSEC_IS_DISABLED">
            <summary>
            This operation could not be completed because the DNS server has been configured with DNSSEC features disabled. Enable DNSSEC on the DNS server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_INVALID_XML">
            <summary>
            This operation could not be completed because the XML stream received is empty or syntactically invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NO_VALID_TRUST_ANCHORS">
            <summary>
            This operation completed, but no trust anchors were added because all of the trust anchors received were either invalid, unsupported, expired, or would not become valid in less than 30 days.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_ROLLOVER_NOT_POKEABLE">
            <summary>
            The specified signing key is not waiting for parental DS update.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NSEC3_NAME_COLLISION">
            <summary>
            Hash collision detected during NSEC3 signing. Specify a different user-provided salt, or use a randomly generated salt, and attempt to sign the zone again.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NSEC_INCOMPATIBLE_WITH_NSEC3_RSA_SHA1">
            <summary>
            NSEC is not compatible with the NSEC3-RSA-SHA-1 algorithm. Choose a different algorithm or use NSEC3.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_INFO_NO_RECORDS">
            <summary>
            No records found for given DNS query.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_BAD_PACKET">
            <summary>
            Bad DNS packet.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NO_PACKET">
            <summary>
            No DNS packet.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_RCODE">
            <summary>
            DNS error, check rcode.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_UNSECURE_PACKET">
            <summary>
            Unsecured DNS packet.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_REQUEST_PENDING">
            <summary>
            DNS query request is pending.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_INVALID_TYPE">
            <summary>
            Invalid DNS type.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_INVALID_IP_ADDRESS">
            <summary>
            Invalid IP address.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_INVALID_PROPERTY">
            <summary>
            Invalid property.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_TRY_AGAIN_LATER">
            <summary>
            Try DNS operation again later.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NOT_UNIQUE">
            <summary>
            Record for given name and type is not unique.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NON_RFC_NAME">
            <summary>
            DNS name does not comply with RFC specifications.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_STATUS_FQDN">
            <summary>
            DNS name is a fully-qualified DNS name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_STATUS_DOTTED_NAME">
            <summary>
            DNS name is dotted (multi-label).
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_STATUS_SINGLE_PART_NAME">
            <summary>
            DNS name is a single-part name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_INVALID_NAME_CHAR">
            <summary>
            DNS name contains an invalid character.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NUMERIC_NAME">
            <summary>
            DNS name is entirely numeric.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER">
            <summary>
            The operation requested is not permitted on a DNS root server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION">
            <summary>
            The record could not be created because this part of the DNS namespace has been delegated to another server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_CANNOT_FIND_ROOT_HINTS">
            <summary>
            The DNS server could not find a set of root hints.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_INCONSISTENT_ROOT_HINTS">
            <summary>
            The DNS server found root hints but they were not consistent across all adapters.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_DWORD_VALUE_TOO_SMALL">
            <summary>
            The specified value is too small for this parameter.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_DWORD_VALUE_TOO_LARGE">
            <summary>
            The specified value is too large for this parameter.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_BACKGROUND_LOADING">
            <summary>
            This operation is not allowed while the DNS server is loading zones in the background. Please try again later.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NOT_ALLOWED_ON_RODC">
            <summary>
            The operation requested is not permitted on against a DNS server running on a read-only DC.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NOT_ALLOWED_UNDER_DNAME">
            <summary>
            No data is allowed to exist underneath a DNAME record.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_DELEGATION_REQUIRED">
            <summary>
            This operation requires credentials delegation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_INVALID_POLICY_TABLE">
            <summary>
            Name resolution policy table has been corrupted. DNS resolution will fail until it is fixed. Contact your network administrator.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_ZONE_DOES_NOT_EXIST">
            <summary>
            DNS zone does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NO_ZONE_INFO">
            <summary>
            DNS zone information not available.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_INVALID_ZONE_OPERATION">
            <summary>
            Invalid operation for DNS zone.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_ZONE_CONFIGURATION_ERROR">
            <summary>
            Invalid DNS zone configuration.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_ZONE_HAS_NO_SOA_RECORD">
            <summary>
            DNS zone has no start of authority (SOA) record.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_ZONE_HAS_NO_NS_RECORDS">
            <summary>
            DNS zone has no Name Server (NS) record.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_ZONE_LOCKED">
            <summary>
            DNS zone is locked.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_ZONE_CREATION_FAILED">
            <summary>
            DNS zone creation failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_ZONE_ALREADY_EXISTS">
            <summary>
            DNS zone already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_AUTOZONE_ALREADY_EXISTS">
            <summary>
            DNS automatic zone already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_INVALID_ZONE_TYPE">
            <summary>
            Invalid DNS zone type.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP">
            <summary>
            Secondary DNS zone requires master IP address.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_ZONE_NOT_SECONDARY">
            <summary>
            DNS zone not secondary.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NEED_SECONDARY_ADDRESSES">
            <summary>
            Need secondary IP address.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_WINS_INIT_FAILED">
            <summary>
            WINS initialization failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NEED_WINS_SERVERS">
            <summary>
            Need WINS servers.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NBSTAT_INIT_FAILED">
            <summary>
            NBTSTAT initialization call failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_SOA_DELETE_INVALID">
            <summary>
            Invalid delete of start of authority (SOA).
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_FORWARDER_ALREADY_EXISTS">
            <summary>
            A conditional forwarding zone already exists for that name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_ZONE_REQUIRES_MASTER_IP">
            <summary>
            This zone must be configured with one or more master DNS server IP addresses.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_ZONE_IS_SHUTDOWN">
            <summary>
            The operation cannot be performed because this zone is shut down.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_ZONE_LOCKED_FOR_SIGNING">
            <summary>
            This operation cannot be performed because the zone is currently being signed. Please try again later.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_PRIMARY_REQUIRES_DATAFILE">
            <summary>
            Primary DNS zone requires datafile.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_INVALID_DATAFILE_NAME">
            <summary>
            Invalid datafile name for DNS zone.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_DATAFILE_OPEN_FAILURE">
            <summary>
            Failed to open datafile for DNS zone.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_FILE_WRITEBACK_FAILED">
            <summary>
            Failed to write datafile for DNS zone.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_DATAFILE_PARSING">
            <summary>
            Failure while reading datafile for DNS zone.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_RECORD_DOES_NOT_EXIST">
            <summary>
            DNS record does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_RECORD_FORMAT">
            <summary>
            DNS record format error.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NODE_CREATION_FAILED">
            <summary>
            Node creation failure in DNS.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_UNKNOWN_RECORD_TYPE">
            <summary>
            Unknown DNS record type.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_RECORD_TIMED_OUT">
            <summary>
            DNS record timed out.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NAME_NOT_IN_ZONE">
            <summary>
            Name not in DNS zone.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_CNAME_LOOP">
            <summary>
            CNAME loop detected.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NODE_IS_CNAME">
            <summary>
            Node is a CNAME DNS record.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_CNAME_COLLISION">
            <summary>
            A CNAME record already exists for given name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT">
            <summary>
            Record only at DNS zone root.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_RECORD_ALREADY_EXISTS">
            <summary>
            DNS record already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_SECONDARY_DATA">
            <summary>
            Secondary DNS zone data error.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NO_CREATE_CACHE_DATA">
            <summary>
            Could not create DNS cache data.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NAME_DOES_NOT_EXIST">
            <summary>
            DNS name does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_WARNING_PTR_CREATE_FAILED">
            <summary>
            Could not create pointer (PTR) record.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_WARNING_DOMAIN_UNDELETED">
            <summary>
            DNS domain was undeleted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_DS_UNAVAILABLE">
            <summary>
            The directory service is unavailable.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_DS_ZONE_ALREADY_EXISTS">
            <summary>
            DNS zone already exists in the directory service.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE">
            <summary>
            DNS server not creating or reading the boot file for the directory service integrated DNS zone.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NODE_IS_DNAME">
            <summary>
            Node is a DNAME DNS record.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_DNAME_COLLISION">
            <summary>
            A DNAME record already exists for given name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_ALIAS_LOOP">
            <summary>
            An alias loop has been detected with either CNAME or DNAME records.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_INFO_AXFR_COMPLETE">
            <summary>
            DNS AXFR (zone transfer) complete.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_AXFR">
            <summary>
            DNS zone transfer failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_INFO_ADDED_LOCAL_WINS">
            <summary>
            Added local WINS server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_STATUS_CONTINUE_NEEDED">
            <summary>
            Secure update call needs to continue update request.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NO_TCPIP">
            <summary>
            TCP/IP network protocol not installed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_NO_DNS_SERVERS">
            <summary>
            No DNS servers configured for local system.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_DP_DOES_NOT_EXIST">
            <summary>
            The specified directory partition does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_DP_ALREADY_EXISTS">
            <summary>
            The specified directory partition already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_DP_NOT_ENLISTED">
            <summary>
            This DNS server is not enlisted in the specified directory partition.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_DP_ALREADY_ENLISTED">
            <summary>
            This DNS server is already enlisted in the specified directory partition.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_DP_NOT_AVAILABLE">
            <summary>
            The directory partition is not available at this time. Please wait a few minutes and try again.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.DNS_ERROR_DP_FSMO_ERROR">
            <summary>
            The operation failed because the domain naming master FSMO role could not be reached. The domain controller holding the domain naming master FSMO role is down or unable to service the request or is not running Windows Server 2003 or later.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEINTR">
            <summary>
            A blocking operation was interrupted by a call to WSACancelBlockingCall.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEBADF">
            <summary>
            The file handle supplied is not valid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEACCES">
            <summary>
            An attempt was made to access a socket in a way forbidden by its access permissions.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEFAULT">
            <summary>
            The system detected an invalid pointer address in attempting to use a pointer argument in a call.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEINVAL">
            <summary>
            An invalid argument was supplied.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEMFILE">
            <summary>
            Too many open sockets.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEWOULDBLOCK">
            <summary>
            A non-blocking socket operation could not be completed immediately.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEINPROGRESS">
            <summary>
            A blocking operation is currently executing.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEALREADY">
            <summary>
            An operation was attempted on a non-blocking socket that already had an operation in progress.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAENOTSOCK">
            <summary>
            An operation was attempted on something that is not a socket.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEDESTADDRREQ">
            <summary>
            A required address was omitted from an operation on a socket.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEMSGSIZE">
            <summary>
            A message sent on a datagram socket was larger than the internal message buffer or some other network limit, or the buffer used to receive a datagram into was smaller than the datagram itself.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEPROTOTYPE">
            <summary>
            A protocol was specified in the socket function call that does not support the semantics of the socket type requested.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAENOPROTOOPT">
            <summary>
            An unknown, invalid, or unsupported option or level was specified in a getsockopt or setsockopt call.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEPROTONOSUPPORT">
            <summary>
            The requested protocol has not been configured into the system, or no implementation for it exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAESOCKTNOSUPPORT">
            <summary>
            The support for the specified socket type does not exist in this address family.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEOPNOTSUPP">
            <summary>
            The attempted operation is not supported for the type of object referenced.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEPFNOSUPPORT">
            <summary>
            The protocol family has not been configured into the system or no implementation for it exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEAFNOSUPPORT">
            <summary>
            An address incompatible with the requested protocol was used.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEADDRINUSE">
            <summary>
            Only one usage of each socket address (protocol/network address/port) is normally permitted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEADDRNOTAVAIL">
            <summary>
            The requested address is not valid in its context.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAENETDOWN">
            <summary>
            A socket operation encountered a dead network.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAENETUNREACH">
            <summary>
            A socket operation was attempted to an unreachable network.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAENETRESET">
            <summary>
            The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAECONNABORTED">
            <summary>
            An established connection was aborted by the software in your host machine.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAECONNRESET">
            <summary>
            An existing connection was forcibly closed by the remote host.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAENOBUFS">
            <summary>
            An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEISCONN">
            <summary>
            A connect request was made on an already connected socket.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAENOTCONN">
            <summary>
            A request to send or receive data was disallowed because the socket is not connected and (when sending on a datagram socket using a sendto call) no address was supplied.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAESHUTDOWN">
            <summary>
            A request to send or receive data was disallowed because the socket had already been shut down in that direction with a previous shutdown call.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAETOOMANYREFS">
            <summary>
            Too many references to some kernel object.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAETIMEDOUT">
            <summary>
            A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAECONNREFUSED">
            <summary>
            No connection could be made because the target machine actively refused it.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAELOOP">
            <summary>
            Cannot translate name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAENAMETOOLONG">
            <summary>
            Name component or name was too long.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEHOSTDOWN">
            <summary>
            A socket operation failed because the destination host was down.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEHOSTUNREACH">
            <summary>
            A socket operation was attempted to an unreachable host.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAENOTEMPTY">
            <summary>
            Cannot remove a directory that is not empty.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEPROCLIM">
            <summary>
            A Windows Sockets implementation may have a limit on the number of applications that may use it simultaneously.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEUSERS">
            <summary>
            Ran out of quota.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEDQUOT">
            <summary>
            Ran out of disk quota.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAESTALE">
            <summary>
            File handle reference is no longer available.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEREMOTE">
            <summary>
            Item is not available locally.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSASYSNOTREADY">
            <summary>
            WSAStartup cannot function at this time because the underlying system it uses to provide network services is currently unavailable.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAVERNOTSUPPORTED">
            <summary>
            The Windows Sockets version requested is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSANOTINITIALISED">
            <summary>
            Either the application has not called WSAStartup, or WSAStartup failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEDISCON">
            <summary>
            Returned by WSARecv or WSARecvFrom to indicate the remote party has initiated a graceful shutdown sequence.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAENOMORE">
            <summary>
            No more results can be returned by WSALookupServiceNext.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAECANCELLED">
            <summary>
            A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEINVALIDPROCTABLE">
            <summary>
            The procedure call table is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEINVALIDPROVIDER">
            <summary>
            The requested service provider is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEPROVIDERFAILEDINIT">
            <summary>
            The requested service provider could not be loaded or initialized.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSASYSCALLFAILURE">
            <summary>
            A system call has failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSASERVICE_NOT_FOUND">
            <summary>
            No such service is known. The service cannot be found in the specified name space.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSATYPE_NOT_FOUND">
            <summary>
            The specified class was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_E_NO_MORE">
            <summary>
            No more results can be returned by WSALookupServiceNext.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_E_CANCELLED">
            <summary>
            A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAEREFUSED">
            <summary>
            A database query failed because it was actively refused.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSAHOST_NOT_FOUND">
            <summary>
            No such host is known.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSATRY_AGAIN">
            <summary>
            This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSANO_RECOVERY">
            <summary>
            A non-recoverable error occurred during a database lookup.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSANO_DATA">
            <summary>
            The requested name is valid, but no data of the requested type was found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_RECEIVERS">
            <summary>
            At least one reserve has arrived.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_SENDERS">
            <summary>
            At least one path has arrived.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_NO_SENDERS">
            <summary>
            There are no senders.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_NO_RECEIVERS">
            <summary>
            There are no receivers.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_REQUEST_CONFIRMED">
            <summary>
            Reserve has been confirmed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_ADMISSION_FAILURE">
            <summary>
            Error due to lack of resources.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_POLICY_FAILURE">
            <summary>
            Rejected for administrative reasons - bad credentials.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_BAD_STYLE">
            <summary>
            Unknown or conflicting style.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_BAD_OBJECT">
            <summary>
            Problem with some part of the filterspec or providerspecific buffer in general.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_TRAFFIC_CTRL_ERROR">
            <summary>
            Problem with some part of the flowspec.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_GENERIC_ERROR">
            <summary>
            General QOS error.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_ESERVICETYPE">
            <summary>
            An invalid or unrecognized service type was found in the flowspec.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_EFLOWSPEC">
            <summary>
            An invalid or inconsistent flowspec was found in the QOS structure.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_EPROVSPECBUF">
            <summary>
            Invalid QOS provider-specific buffer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_EFILTERSTYLE">
            <summary>
            An invalid QOS filter style was used.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_EFILTERTYPE">
            <summary>
            An invalid QOS filter type was used.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_EFILTERCOUNT">
            <summary>
            An incorrect number of QOS FILTERSPECs were specified in the FLOWDESCRIPTOR.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_EOBJLENGTH">
            <summary>
            An object with an invalid ObjectLength field was specified in the QOS provider-specific buffer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_EFLOWCOUNT">
            <summary>
            An incorrect number of flow descriptors was specified in the QOS structure.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_EUNKOWNPSOBJ">
            <summary>
            An unrecognized object was found in the QOS provider-specific buffer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_EPOLICYOBJ">
            <summary>
            An invalid policy object was found in the QOS provider-specific buffer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_EFLOWDESC">
            <summary>
            An invalid QOS flow descriptor was found in the flow descriptor list.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_EPSFLOWSPEC">
            <summary>
            An invalid or inconsistent flowspec was found in the QOS provider specific buffer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_EPSFILTERSPEC">
            <summary>
            An invalid FILTERSPEC was found in the QOS provider-specific buffer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_ESDMODEOBJ">
            <summary>
            An invalid shape discard mode object was found in the QOS provider specific buffer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_ESHAPERATEOBJ">
            <summary>
            An invalid shaping rate object was found in the QOS provider-specific buffer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_QOS_RESERVED_PETYPE">
            <summary>
            A reserved policy element was found in the QOS provider-specific buffer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_SECURE_HOST_NOT_FOUND">
            <summary>
            No such host is known securely.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WSA_IPSEC_NAME_POLICY_ERROR">
            <summary>
            Name based IPSEC policy could not be added.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_QM_POLICY_EXISTS">
            <summary>
            The specified quick mode policy already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_QM_POLICY_NOT_FOUND">
            <summary>
            The specified quick mode policy was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_QM_POLICY_IN_USE">
            <summary>
            The specified quick mode policy is being used.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_MM_POLICY_EXISTS">
            <summary>
            The specified main mode policy already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_MM_POLICY_NOT_FOUND">
            <summary>
            The specified main mode policy was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_MM_POLICY_IN_USE">
            <summary>
            The specified main mode policy is being used.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_MM_FILTER_EXISTS">
            <summary>
            The specified main mode filter already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_MM_FILTER_NOT_FOUND">
            <summary>
            The specified main mode filter was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_TRANSPORT_FILTER_EXISTS">
            <summary>
            The specified transport mode filter already exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND">
            <summary>
            The specified transport mode filter does not exist.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_MM_AUTH_EXISTS">
            <summary>
            The specified main mode authentication list exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_MM_AUTH_NOT_FOUND">
            <summary>
            The specified main mode authentication list was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_MM_AUTH_IN_USE">
            <summary>
            The specified main mode authentication list is being used.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND">
            <summary>
            The specified default main mode policy was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND">
            <summary>
            The specified default main mode authentication list was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND">
            <summary>
            The specified default quick mode policy was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_TUNNEL_FILTER_EXISTS">
            <summary>
            The specified tunnel mode filter exists.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND">
            <summary>
            The specified tunnel mode filter was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_MM_FILTER_PENDING_DELETION">
            <summary>
            The Main Mode filter is pending deletion.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION">
            <summary>
            The transport filter is pending deletion.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION">
            <summary>
            The tunnel filter is pending deletion.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_MM_POLICY_PENDING_DELETION">
            <summary>
            The Main Mode policy is pending deletion.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_MM_AUTH_PENDING_DELETION">
            <summary>
            The Main Mode authentication bundle is pending deletion.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_QM_POLICY_PENDING_DELETION">
            <summary>
            The Quick Mode policy is pending deletion.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WARNING_IPSEC_MM_POLICY_PRUNED">
            <summary>
            The Main Mode policy was successfully added, but some of the requested offers are not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.WARNING_IPSEC_QM_POLICY_PRUNED">
            <summary>
            The Quick Mode policy was successfully added, but some of the requested offers are not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_NEG_STATUS_BEGIN">
            <summary>
            ERROR_IPSEC_IKE_NEG_STATUS_BEGIN
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_AUTH_FAIL">
            <summary>
            IKE authentication credentials are unacceptable.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_ATTRIB_FAIL">
            <summary>
            IKE security attributes are unacceptable.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_NEGOTIATION_PENDING">
            <summary>
            IKE Negotiation in progress.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR">
            <summary>
            General processing error.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_TIMED_OUT">
            <summary>
            Negotiation timed out.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_NO_CERT">
            <summary>
            IKE failed to find valid machine certificate. Contact your Network Security Administrator about installing a valid certificate in the appropriate Certificate Store.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_SA_DELETED">
            <summary>
            IKE SA deleted by peer before establishment completed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_SA_REAPED">
            <summary>
            IKE SA deleted before establishment completed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_MM_ACQUIRE_DROP">
            <summary>
            Negotiation request sat in Queue too long.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_QM_ACQUIRE_DROP">
            <summary>
            Negotiation request sat in Queue too long.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_QUEUE_DROP_MM">
            <summary>
            Negotiation request sat in Queue too long.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM">
            <summary>
            Negotiation request sat in Queue too long.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_DROP_NO_RESPONSE">
            <summary>
            No response from peer.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_MM_DELAY_DROP">
            <summary>
            Negotiation took too long.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_QM_DELAY_DROP">
            <summary>
            Negotiation took too long.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_ERROR">
            <summary>
            Unknown error occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_CRL_FAILED">
            <summary>
            Certificate Revocation Check failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_INVALID_KEY_USAGE">
            <summary>
            Invalid certificate key usage.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_INVALID_CERT_TYPE">
            <summary>
            Invalid certificate type.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_NO_PRIVATE_KEY">
            <summary>
            IKE negotiation failed because the machine certificate used does not have a private key. IPsec certificates require a private key. Contact your Network Security administrator about replacing with a certificate that has a private key.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_SIMULTANEOUS_REKEY">
            <summary>
            Simultaneous rekeys were detected.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_DH_FAIL">
            <summary>
            Failure in Diffie-Hellman computation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_CRITICAL_PAYLOAD_NOT_RECOGNIZED">
            <summary>
            Don't know how to process critical payload.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_INVALID_HEADER">
            <summary>
            Invalid header.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_NO_POLICY">
            <summary>
            No policy configured.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_INVALID_SIGNATURE">
            <summary>
            Failed to verify signature.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_KERBEROS_ERROR">
            <summary>
            Failed to authenticate using Kerberos.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_NO_PUBLIC_KEY">
            <summary>
            Peer's certificate did not have a public key.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_PROCESS_ERR">
            <summary>
            Error processing error payload.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_PROCESS_ERR_SA">
            <summary>
            Error processing SA payload.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_PROCESS_ERR_PROP">
            <summary>
            Error processing Proposal payload.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_PROCESS_ERR_TRANS">
            <summary>
            Error processing Transform payload.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_PROCESS_ERR_KE">
            <summary>
            Error processing KE payload.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_PROCESS_ERR_ID">
            <summary>
            Error processing ID payload.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_PROCESS_ERR_CERT">
            <summary>
            Error processing Cert payload.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ">
            <summary>
            Error processing Certificate Request payload.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_PROCESS_ERR_HASH">
            <summary>
            Error processing Hash payload.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_PROCESS_ERR_SIG">
            <summary>
            Error processing Signature payload.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_PROCESS_ERR_NONCE">
            <summary>
            Error processing Nonce payload.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY">
            <summary>
            Error processing Notify payload.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_PROCESS_ERR_DELETE">
            <summary>
            Error processing Delete Payload.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR">
            <summary>
            Error processing VendorId payload.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_INVALID_PAYLOAD">
            <summary>
            Invalid payload received.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_LOAD_SOFT_SA">
            <summary>
            Soft SA loaded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN">
            <summary>
            Soft SA torn down.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_INVALID_COOKIE">
            <summary>
            Invalid cookie received.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_NO_PEER_CERT">
            <summary>
            Peer failed to send valid machine certificate.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_PEER_CRL_FAILED">
            <summary>
            Certification Revocation check of peer's certificate failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_POLICY_CHANGE">
            <summary>
            New policy invalidated SAs formed with old policy.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_NO_MM_POLICY">
            <summary>
            There is no available Main Mode IKE policy.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_NOTCBPRIV">
            <summary>
            Failed to enabled TCB privilege.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_SECLOADFAIL">
            <summary>
            Failed to load SECURITY.DLL.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_FAILSSPINIT">
            <summary>
            Failed to obtain security function table dispatch address from SSPI.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_FAILQUERYSSP">
            <summary>
            Failed to query Kerberos package to obtain max token size.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_SRVACQFAIL">
            <summary>
            Failed to obtain Kerberos server credentials for ISAKMP/ERROR_IPSEC_IKE service. Kerberos authentication will not function. The most likely reason for this is lack of domain membership. This is normal if your computer is a member of a workgroup.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_SRVQUERYCRED">
            <summary>
            Failed to determine SSPI principal name for ISAKMP/ERROR_IPSEC_IKE service (QueryCredentialsAttributes).
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_GETSPIFAIL">
            <summary>
            Failed to obtain new SPI for the inbound SA from IPsec driver. The most common cause for this is that the driver does not have the correct filter. Check your policy to verify the filters.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_INVALID_FILTER">
            <summary>
            Given filter is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_OUT_OF_MEMORY">
            <summary>
            Memory allocation failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED">
            <summary>
            Failed to add Security Association to IPsec Driver. The most common cause for this is if the IKE negotiation took too long to complete. If the problem persists, reduce the load on the faulting machine.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_INVALID_POLICY">
            <summary>
            Invalid policy.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_UNKNOWN_DOI">
            <summary>
            Invalid DOI.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_INVALID_SITUATION">
            <summary>
            Invalid situation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_DH_FAILURE">
            <summary>
            Diffie-Hellman failure.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_INVALID_GROUP">
            <summary>
            Invalid Diffie-Hellman group.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_ENCRYPT">
            <summary>
            Error encrypting payload.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_DECRYPT">
            <summary>
            Error decrypting payload.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_POLICY_MATCH">
            <summary>
            Policy match error.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_UNSUPPORTED_ID">
            <summary>
            Unsupported ID.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_INVALID_HASH">
            <summary>
            Hash verification failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_INVALID_HASH_ALG">
            <summary>
            Invalid hash algorithm.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_INVALID_HASH_SIZE">
            <summary>
            Invalid hash size.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG">
            <summary>
            Invalid encryption algorithm.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_INVALID_AUTH_ALG">
            <summary>
            Invalid authentication algorithm.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_INVALID_SIG">
            <summary>
            Invalid certificate signature.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_LOAD_FAILED">
            <summary>
            Load failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_RPC_DELETE">
            <summary>
            Deleted via RPC call.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_BENIGN_REINIT">
            <summary>
            Temporary state created to perform reinitialization. This is not a real failure.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY">
            <summary>
            The lifetime value received in the Responder Lifetime Notify is below the Windows 2000 configured minimum value. Please fix the policy on the peer machine.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_INVALID_MAJOR_VERSION">
            <summary>
            The recipient cannot handle version of IKE specified in the header.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN">
            <summary>
            Key length in certificate is too small for configured security requirements.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_MM_LIMIT">
            <summary>
            Max number of established MM SAs to peer exceeded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_NEGOTIATION_DISABLED">
            <summary>
            IKE received a policy that disables negotiation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_QM_LIMIT">
            <summary>
            Reached maximum quick mode limit for the main mode. New main mode will be started.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_MM_EXPIRED">
            <summary>
            Main mode SA lifetime expired or peer sent a main mode delete.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_PEER_MM_ASSUMED_INVALID">
            <summary>
            Main mode SA assumed to be invalid because peer stopped responding.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH">
            <summary>
            Certificate doesn't chain to a trusted root in IPsec policy.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_UNEXPECTED_MESSAGE_ID">
            <summary>
            Received unexpected message ID.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_INVALID_AUTH_PAYLOAD">
            <summary>
            Received invalid authentication offers.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_DOS_COOKIE_SENT">
            <summary>
            Sent DoS cookie notify to initiator.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_SHUTTING_DOWN">
            <summary>
            IKE service is shutting down.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_CGA_AUTH_FAILED">
            <summary>
            Could not verify binding between CGA address and certificate.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_PROCESS_ERR_NATOA">
            <summary>
            Error processing NatOA payload.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_INVALID_MM_FOR_QM">
            <summary>
            Parameters of the main mode are invalid for this quick mode.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_QM_EXPIRED">
            <summary>
            Quick mode SA was expired by IPsec driver.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_TOO_MANY_FILTERS">
            <summary>
            Too many dynamically added IKEEXT filters were detected.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_NEG_STATUS_END">
            <summary>
            ERROR_IPSEC_IKE_NEG_STATUS_END
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_KILL_DUMMY_NAP_TUNNEL">
            <summary>
            NAP reauth succeeded and must delete the dummy NAP IKEv2 tunnel.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_INNER_IP_ASSIGNMENT_FAILURE">
            <summary>
            Error in assigning inner IP address to initiator in tunnel mode.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_REQUIRE_CP_PAYLOAD_MISSING">
            <summary>
            Require configuration payload missing.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_KEY_MODULE_IMPERSONATION_NEGOTIATION_PENDING">
            <summary>
            A negotiation running as the security principle who issued the connection is in progress.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_COEXISTENCE_SUPPRESS">
            <summary>
            SA was deleted due to IKEv1/AuthIP co-existence suppress check.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_RATELIMIT_DROP">
            <summary>
            Incoming SA request was dropped due to peer IP address rate limiting.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_PEER_DOESNT_SUPPORT_MOBIKE">
            <summary>
            Peer does not support MOBIKE.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE">
            <summary>
            SA establishment is not authorized.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_FAILURE">
            <summary>
            SA establishment is not authorized because there is not a sufficiently strong PKINIT-based credential.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_AUTHORIZATION_FAILURE_WITH_OPTIONAL_RETRY">
            <summary>
            SA establishment is not authorized. You may need to enter updated or different credentials such as a smartcard.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_STRONG_CRED_AUTHORIZATION_AND_CERTMAP_FAILURE">
            <summary>
            SA establishment is not authorized because there is not a sufficiently strong PKINIT-based credential. This might be related to certificate-to-account mapping failure for the SA.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END">
            <summary>
            ERROR_IPSEC_IKE_NEG_STATUS_EXTENDED_END
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_BAD_SPI">
            <summary>
            The SPI in the packet does not match a valid IPsec SA.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_SA_LIFETIME_EXPIRED">
            <summary>
            Packet was received on an IPsec SA whose lifetime has expired.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_WRONG_SA">
            <summary>
            Packet was received on an IPsec SA that does not match the packet characteristics.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_REPLAY_CHECK_FAILED">
            <summary>
            Packet sequence number replay check failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_INVALID_PACKET">
            <summary>
            IPsec header and/or trailer in the packet is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_INTEGRITY_CHECK_FAILED">
            <summary>
            IPsec integrity check failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_CLEAR_TEXT_DROP">
            <summary>
            IPsec dropped a clear text packet.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_AUTH_FIREWALL_DROP">
            <summary>
            IPsec dropped an incoming ESP packet in authenticated firewall mode. This drop is benign.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_THROTTLE_DROP">
            <summary>
            IPsec dropped a packet due to DoS throttling.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_DOSP_BLOCK">
            <summary>
            IPsec DoS Protection matched an explicit block rule.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_DOSP_RECEIVED_MULTICAST">
            <summary>
            IPsec DoS Protection received an IPsec specific multicast packet which is not allowed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_DOSP_INVALID_PACKET">
            <summary>
            IPsec DoS Protection received an incorrectly formatted packet.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_DOSP_STATE_LOOKUP_FAILED">
            <summary>
            IPsec DoS Protection failed to look up state.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_DOSP_MAX_ENTRIES">
            <summary>
            IPsec DoS Protection failed to create state because the maximum number of entries allowed by policy has been reached.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_DOSP_KEYMOD_NOT_ALLOWED">
            <summary>
            IPsec DoS Protection received an IPsec negotiation packet for a keying module which is not allowed by policy.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_DOSP_NOT_INSTALLED">
            <summary>
            IPsec DoS Protection has not been enabled.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES">
            <summary>
            IPsec DoS Protection failed to create a per internal IP rate limit queue because the maximum number of queues allowed by policy has been reached.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_SECTION_NOT_FOUND">
            <summary>
            The requested section was not present in the activation context.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_CANT_GEN_ACTCTX">
            <summary>
            The application has failed to start because its side-by-side configuration is incorrect. Please see the application event log or use the command-line sxstrace.exe tool for more detail.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_INVALID_ACTCTXDATA_FORMAT">
            <summary>
            The application binding data format is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_ASSEMBLY_NOT_FOUND">
            <summary>
            The referenced assembly is not installed on your system.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_MANIFEST_FORMAT_ERROR">
            <summary>
            The manifest file does not begin with the required tag and format information.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_MANIFEST_PARSE_ERROR">
            <summary>
            The manifest file contains one or more syntax errors.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_ACTIVATION_CONTEXT_DISABLED">
            <summary>
            The application attempted to activate a disabled activation context.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_KEY_NOT_FOUND">
            <summary>
            The requested lookup key was not found in any active activation context.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_VERSION_CONFLICT">
            <summary>
            A component version required by the application conflicts with another component version already active.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_WRONG_SECTION_TYPE">
            <summary>
            The type requested activation context section does not match the query API used.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_THREAD_QUERIES_DISABLED">
            <summary>
            Lack of system resources has required isolated activation to be disabled for the current thread of execution.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET">
            <summary>
            An attempt to set the process default activation context failed because the process default activation context was already set.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_UNKNOWN_ENCODING_GROUP">
            <summary>
            The encoding group identifier specified is not recognized.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_UNKNOWN_ENCODING">
            <summary>
            The encoding requested is not recognized.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_INVALID_XML_NAMESPACE_URI">
            <summary>
            The manifest contains a reference to an invalid URI.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED">
            <summary>
            The application manifest contains a reference to a dependent assembly which is not installed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED">
            <summary>
            The manifest for an assembly used by the application has a reference to a dependent assembly which is not installed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE">
            <summary>
            The manifest contains an attribute for the assembly identity which is not valid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE">
            <summary>
            The manifest is missing the required default namespace specification on the assembly element.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE">
            <summary>
            The manifest has a default namespace specified on the assembly element but its value is not "urn:schemas-microsoft-com:asm.v1".
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT">
            <summary>
            The private manifest probed has crossed a path with an unsupported reparse point.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_DUPLICATE_DLL_NAME">
            <summary>
            Two or more components referenced directly or indirectly by the application manifest have files by the same name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME">
            <summary>
            Two or more components referenced directly or indirectly by the application manifest have window classes with the same name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_DUPLICATE_CLSID">
            <summary>
            Two or more components referenced directly or indirectly by the application manifest have the same COM server CLSIDs.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_DUPLICATE_IID">
            <summary>
            Two or more components referenced directly or indirectly by the application manifest have proxies for the same COM interface IIDs.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_DUPLICATE_TLBID">
            <summary>
            Two or more components referenced directly or indirectly by the application manifest have the same COM type library TLBIDs.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_DUPLICATE_PROGID">
            <summary>
            Two or more components referenced directly or indirectly by the application manifest have the same COM ProgIDs.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_DUPLICATE_ASSEMBLY_NAME">
            <summary>
            Two or more components referenced directly or indirectly by the application manifest are different versions of the same component which is not permitted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_FILE_HASH_MISMATCH">
            <summary>
            A component's file does not match the verification information present in the component manifest.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_POLICY_PARSE_ERROR">
            <summary>
            The policy manifest contains one or more syntax errors.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_MISSINGQUOTE">
            <summary>
            Manifest Parse Error : A string literal was expected, but no opening quote character was found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_COMMENTSYNTAX">
            <summary>
            Manifest Parse Error : Incorrect syntax was used in a comment.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_BADSTARTNAMECHAR">
            <summary>
            Manifest Parse Error : A name was started with an invalid character.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_BADNAMECHAR">
            <summary>
            Manifest Parse Error : A name contained an invalid character.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_BADCHARINSTRING">
            <summary>
            Manifest Parse Error : A string literal contained an invalid character.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_XMLDECLSYNTAX">
            <summary>
            Manifest Parse Error : Invalid syntax for an xml declaration.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_BADCHARDATA">
            <summary>
            Manifest Parse Error : An Invalid character was found in text content.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_MISSINGWHITESPACE">
            <summary>
            Manifest Parse Error : Required white space was missing.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_EXPECTINGTAGEND">
            <summary>
            Manifest Parse Error : The character '>' was expected.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_MISSINGSEMICOLON">
            <summary>
            Manifest Parse Error : A semi colon character was expected.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_UNBALANCEDPAREN">
            <summary>
            Manifest Parse Error : Unbalanced parentheses.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_INTERNALERROR">
            <summary>
            Manifest Parse Error : Internal error.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE">
            <summary>
            Manifest Parse Error : Whitespace is not allowed at this location.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_INCOMPLETE_ENCODING">
            <summary>
            Manifest Parse Error : End of file reached in invalid state for current encoding.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_MISSING_PAREN">
            <summary>
            Manifest Parse Error : Missing parenthesis.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE">
            <summary>
            Manifest Parse Error : A single or double closing quote character (\' or \") is missing.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_MULTIPLE_COLONS">
            <summary>
            Manifest Parse Error : Multiple colons are not allowed in a name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_INVALID_DECIMAL">
            <summary>
            Manifest Parse Error : Invalid character for decimal digit.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_INVALID_HEXIDECIMAL">
            <summary>
            Manifest Parse Error : Invalid character for hexadecimal digit.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_INVALID_UNICODE">
            <summary>
            Manifest Parse Error : Invalid unicode character value for this platform.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK">
            <summary>
            Manifest Parse Error : Expecting whitespace or '?'.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_UNEXPECTEDENDTAG">
            <summary>
            Manifest Parse Error : End tag was not expected at this location.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_UNCLOSEDTAG">
            <summary>
            Manifest Parse Error : The following tags were not closed: %1.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_DUPLICATEATTRIBUTE">
            <summary>
            Manifest Parse Error : Duplicate attribute.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_MULTIPLEROOTS">
            <summary>
            Manifest Parse Error : Only one top level element is allowed in an XML document.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_INVALIDATROOTLEVEL">
            <summary>
            Manifest Parse Error : Invalid at the top level of the document.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_BADXMLDECL">
            <summary>
            Manifest Parse Error : Invalid xml declaration.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_MISSINGROOT">
            <summary>
            Manifest Parse Error : XML document must have a top level element.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_UNEXPECTEDEOF">
            <summary>
            Manifest Parse Error : Unexpected end of file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_BADPEREFINSUBSET">
            <summary>
            Manifest Parse Error : Parameter entities cannot be used inside markup declarations in an internal subset.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_UNCLOSEDSTARTTAG">
            <summary>
            Manifest Parse Error : Element was not closed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_UNCLOSEDENDTAG">
            <summary>
            Manifest Parse Error : End element was missing the character '>'.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_UNCLOSEDSTRING">
            <summary>
            Manifest Parse Error : A string literal was not closed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_UNCLOSEDCOMMENT">
            <summary>
            Manifest Parse Error : A comment was not closed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_UNCLOSEDDECL">
            <summary>
            Manifest Parse Error : A declaration was not closed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_UNCLOSEDCDATA">
            <summary>
            Manifest Parse Error : A CDATA section was not closed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_RESERVEDNAMESPACE">
            <summary>
            Manifest Parse Error : The namespace prefix is not allowed to start with the reserved string "xml".
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_INVALIDENCODING">
            <summary>
            Manifest Parse Error : System does not support the specified encoding.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_INVALIDSWITCH">
            <summary>
            Manifest Parse Error : Switch from current encoding to specified encoding not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_BADXMLCASE">
            <summary>
            Manifest Parse Error : The name 'xml' is reserved and must be lower case.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_INVALID_STANDALONE">
            <summary>
            Manifest Parse Error : The standalone attribute must have the value 'yes' or 'no'.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_UNEXPECTED_STANDALONE">
            <summary>
            Manifest Parse Error : The standalone attribute cannot be used in external entities.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_INVALID_VERSION">
            <summary>
            Manifest Parse Error : Invalid version number.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_XML_E_MISSINGEQUALS">
            <summary>
            Manifest Parse Error : Missing equals sign between attribute and attribute value.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_PROTECTION_RECOVERY_FAILED">
            <summary>
            Assembly Protection Error : Unable to recover the specified assembly.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT">
            <summary>
            Assembly Protection Error : The public key for an assembly was too short to be allowed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_PROTECTION_CATALOG_NOT_VALID">
            <summary>
            Assembly Protection Error : The catalog for an assembly is not valid, or does not match the assembly's manifest.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_UNTRANSLATABLE_HRESULT">
            <summary>
            An HRESULT could not be translated to a corresponding Win32 error code.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING">
            <summary>
            Assembly Protection Error : The catalog for an assembly is missing.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE">
            <summary>
            The supplied assembly identity is missing one or more attributes which must be present in this context.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME">
            <summary>
            The supplied assembly identity has one or more attribute names that contain characters not permitted in XML names.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_ASSEMBLY_MISSING">
            <summary>
            The referenced assembly could not be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_CORRUPT_ACTIVATION_STACK">
            <summary>
            The activation context activation stack for the running thread of execution is corrupt.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_CORRUPTION">
            <summary>
            The application isolation metadata for this process or thread has become corrupt.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_EARLY_DEACTIVATION">
            <summary>
            The activation context being deactivated is not the most recently activated one.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_INVALID_DEACTIVATION">
            <summary>
            The activation context being deactivated is not active for the current thread of execution.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_MULTIPLE_DEACTIVATION">
            <summary>
            The activation context being deactivated has already been deactivated.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_PROCESS_TERMINATION_REQUESTED">
            <summary>
            A component used by the isolation facility has requested to terminate the process.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_RELEASE_ACTIVATION_CONTEXT">
            <summary>
            A kernel mode component is releasing a reference on an activation context.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY">
            <summary>
            The activation context of system default assembly could not be generated.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE">
            <summary>
            The value of an attribute in an identity is not within the legal range.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME">
            <summary>
            The name of an attribute in an identity is not within the legal range.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE">
            <summary>
            An identity contains two definitions for the same attribute.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_IDENTITY_PARSE_ERROR">
            <summary>
            The identity string is malformed. This may be due to a trailing comma, more than two unnamed attributes, missing attribute name or missing attribute value.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MALFORMED_SUBSTITUTION_STRING">
            <summary>
            A string containing localized substitutable content was malformed. Either a dollar sign ($) was followed by something other than a left parenthesis or another dollar sign or an substitution's right parenthesis was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_INCORRECT_PUBLIC_KEY_TOKEN">
            <summary>
            The public key token does not correspond to the public key specified.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_UNMAPPED_SUBSTITUTION_STRING">
            <summary>
            A substitution string had no mapping.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_ASSEMBLY_NOT_LOCKED">
            <summary>
            The component must be locked before making the request.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_COMPONENT_STORE_CORRUPT">
            <summary>
            The component store has been corrupted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_ADVANCED_INSTALLER_FAILED">
            <summary>
            An advanced installer failed during setup or servicing.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_XML_ENCODING_MISMATCH">
            <summary>
            The character encoding in the XML declaration did not match the encoding used in the document.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT">
            <summary>
            The identities of the manifests are identical but their contents are different.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_IDENTITIES_DIFFERENT">
            <summary>
            The component identities are different.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT">
            <summary>
            The assembly is not a deployment.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_FILE_NOT_PART_OF_ASSEMBLY">
            <summary>
            The file is not a part of the assembly.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_MANIFEST_TOO_BIG">
            <summary>
            The size of the manifest exceeds the maximum allowed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_SETTING_NOT_REGISTERED">
            <summary>
            The setting is not registered.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_TRANSACTION_CLOSURE_INCOMPLETE">
            <summary>
            One or more required members of the transaction are not present.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SMI_PRIMITIVE_INSTALLER_FAILED">
            <summary>
            The SMI primitive installer failed during setup or servicing.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_GENERIC_COMMAND_FAILED">
            <summary>
            A generic command executable returned a result that indicates failure.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SXS_FILE_HASH_MISSING">
            <summary>
            A component is missing file verification information in its manifest.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_INVALID_CHANNEL_PATH">
            <summary>
            The specified channel path is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_INVALID_QUERY">
            <summary>
            The specified query is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_PUBLISHER_METADATA_NOT_FOUND">
            <summary>
            The publisher metadata cannot be found in the resource.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_EVENT_TEMPLATE_NOT_FOUND">
            <summary>
            The template for an event definition cannot be found in the resource (error = %1).
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_INVALID_PUBLISHER_NAME">
            <summary>
            The specified publisher name is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_INVALID_EVENT_DATA">
            <summary>
            The event data raised by the publisher is not compatible with the event template definition in the publisher's manifest.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_CHANNEL_NOT_FOUND">
            <summary>
            The specified channel could not be found. Check channel configuration.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_MALFORMED_XML_TEXT">
            <summary>
            The specified xml text was not well-formed. See Extended Error for more details.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL">
            <summary>
            The caller is trying to subscribe to a direct channel which is not allowed. The events for a direct channel go directly to a logfile and cannot be subscribed to.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_CONFIGURATION_ERROR">
            <summary>
            Configuration error.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_QUERY_RESULT_STALE">
            <summary>
            The query result is stale / invalid. This may be due to the log being cleared or rolling over after the query result was created. Users should handle this code by releasing the query result object and reissuing the query.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_QUERY_RESULT_INVALID_POSITION">
            <summary>
            Query result is currently at an invalid position.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_NON_VALIDATING_MSXML">
            <summary>
            Registered MSXML doesn't support validation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_FILTER_ALREADYSCOPED">
            <summary>
            An expression can only be followed by a change of scope operation if it itself evaluates to a node set and is not already part of some other change of scope operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_FILTER_NOTELTSET">
            <summary>
            Can't perform a step operation from a term that does not represent an element set.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_FILTER_INVARG">
            <summary>
            Left hand side arguments to binary operators must be either attributes, nodes or variables and right hand side arguments must be constants.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_FILTER_INVTEST">
            <summary>
            A step operation must involve either a node test or, in the case of a predicate, an algebraic expression against which to test each node in the node set identified by the preceeding node set can be evaluated.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_FILTER_INVTYPE">
            <summary>
            This data type is currently unsupported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_FILTER_PARSEERR">
            <summary>
            A syntax error occurred at position %1!d!.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_FILTER_UNSUPPORTEDOP">
            <summary>
            This operator is unsupported by this implementation of the filter.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_FILTER_UNEXPECTEDTOKEN">
            <summary>
            The token encountered was unexpected.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL">
            <summary>
            The requested operation cannot be performed over an enabled direct channel. The channel must first be disabled before performing the requested operation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_INVALID_CHANNEL_PROPERTY_VALUE">
            <summary>
            Channel property %1!s! contains invalid value. The value has invalid type, is outside of valid range, can't be updated or is not supported by this type of channel.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_INVALID_PUBLISHER_PROPERTY_VALUE">
            <summary>
            Publisher property %1!s! contains invalid value. The value has invalid type, is outside of valid range, can't be updated or is not supported by this type of publisher.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_CHANNEL_CANNOT_ACTIVATE">
            <summary>
            The channel fails to activate.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_FILTER_TOO_COMPLEX">
            <summary>
            The xpath expression exceeded supported complexity. Please symplify it or split it into two or more simple expressions.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_MESSAGE_NOT_FOUND">
            <summary>
            the message resource is present but the message is not found in the string/message table.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_MESSAGE_ID_NOT_FOUND">
            <summary>
            The message id for the desired message could not be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_UNRESOLVED_VALUE_INSERT">
            <summary>
            The substitution string for insert index (%1) could not be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_UNRESOLVED_PARAMETER_INSERT">
            <summary>
            The description string for parameter reference (%1) could not be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_MAX_INSERTS_REACHED">
            <summary>
            The maximum number of replacements has been reached.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_EVENT_DEFINITION_NOT_FOUND">
            <summary>
            The event definition could not be found for event id (%1).
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_MESSAGE_LOCALE_NOT_FOUND">
            <summary>
            The locale specific resource for the desired message is not present.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_VERSION_TOO_OLD">
            <summary>
            The resource is too old to be compatible.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_VERSION_TOO_NEW">
            <summary>
            The resource is too new to be compatible.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_CANNOT_OPEN_CHANNEL_OF_QUERY">
            <summary>
            The channel at index %1!d! of the query can't be opened.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_PUBLISHER_DISABLED">
            <summary>
            The publisher has been disabled and its resource is not avaiable. This usually occurs when the publisher is in the process of being uninstalled or upgraded.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EVT_FILTER_OUT_OF_RANGE">
            <summary>
            Attempted to create a numeric type that is outside of its valid range.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EC_SUBSCRIPTION_CANNOT_ACTIVATE">
            <summary>
            The subscription fails to activate.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EC_LOG_DISABLED">
            <summary>
            The log of the subscription is in disabled state, and can not be used to forward events to. The log must first be enabled before the subscription can be activated.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EC_CIRCULAR_FORWARDING">
            <summary>
            When forwarding events from local machine to itself, the query of the subscription can't contain target log of the subscription.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EC_CREDSTORE_FULL">
            <summary>
            The credential store that is used to save credentials is full.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EC_CRED_NOT_FOUND">
            <summary>
            The credential used by this subscription can't be found in credential store.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_EC_NO_ACTIVE_CHANNEL">
            <summary>
            No active channel is found for the query.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MUI_FILE_NOT_FOUND">
            <summary>
            The resource loader failed to find MUI file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MUI_INVALID_FILE">
            <summary>
            The resource loader failed to load MUI file because the file fail to pass validation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MUI_INVALID_RC_CONFIG">
            <summary>
            The RC Manifest is corrupted with garbage data or unsupported version or missing required item.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MUI_INVALID_LOCALE_NAME">
            <summary>
            The RC Manifest has invalid culture name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MUI_INVALID_ULTIMATEFALLBACK_NAME">
            <summary>
            The RC Manifest has invalid ultimatefallback name.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MUI_FILE_NOT_LOADED">
            <summary>
            The resource loader cache doesn't have loaded MUI entry.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESOURCE_ENUM_USER_STOP">
            <summary>
            User stopped resource enumeration.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MUI_INTLSETTINGS_UILANG_NOT_INSTALLED">
            <summary>
            UI language installation failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MUI_INTLSETTINGS_INVALID_LOCALE_NAME">
            <summary>
            Locale installation failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MRM_RUNTIME_NO_DEFAULT_OR_NEUTRAL_RESOURCE">
            <summary>
            A resource does not have default or neutral value.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MRM_INVALID_PRICONFIG">
            <summary>
            Invalid PRI config file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MRM_INVALID_FILE_TYPE">
            <summary>
            Invalid file type.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MRM_UNKNOWN_QUALIFIER">
            <summary>
            Unknown qualifier.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MRM_INVALID_QUALIFIER_VALUE">
            <summary>
            Invalid qualifier value.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MRM_NO_CANDIDATE">
            <summary>
            No Candidate found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MRM_NO_MATCH_OR_DEFAULT_CANDIDATE">
            <summary>
            The ResourceMap or NamedResource has an item that does not have default or neutral resource..
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MRM_RESOURCE_TYPE_MISMATCH">
            <summary>
            Invalid ResourceCandidate type.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MRM_DUPLICATE_MAP_NAME">
            <summary>
            Duplicate Resource Map.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MRM_DUPLICATE_ENTRY">
            <summary>
            Duplicate Entry.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MRM_INVALID_RESOURCE_IDENTIFIER">
            <summary>
            Invalid Resource Identifier.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MRM_FILEPATH_TOO_LONG">
            <summary>
            Filepath too long.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MRM_UNSUPPORTED_DIRECTORY_TYPE">
            <summary>
            Unsupported directory type.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MRM_INVALID_PRI_FILE">
            <summary>
            Invalid PRI File.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MRM_NAMED_RESOURCE_NOT_FOUND">
            <summary>
            NamedResource Not Found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MRM_MAP_NOT_FOUND">
            <summary>
            ResourceMap Not Found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MRM_UNSUPPORTED_PROFILE_TYPE">
            <summary>
            Unsupported MRT profile type.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MRM_INVALID_QUALIFIER_OPERATOR">
            <summary>
            Invalid qualifier operator.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MRM_INDETERMINATE_QUALIFIER_VALUE">
            <summary>
            Unable to determine qualifier value or qualifier value has not been set.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MRM_AUTOMERGE_ENABLED">
            <summary>
            Automerge is enabled in the PRI file.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MRM_TOO_MANY_RESOURCES">
            <summary>
            Too many resources defined for package.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MCA_INVALID_CAPABILITIES_STRING">
            <summary>
            The monitor returned a DDC/CI capabilities string that did not comply with the ACCESS.bus 3.0, DDC/CI 1.1 or MCCS 2 Revision 1 specification.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MCA_INVALID_VCP_VERSION">
            <summary>
            The monitor's VCP Version (0xDF) VCP code returned an invalid version value.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION">
            <summary>
            The monitor does not comply with the MCCS specification it claims to support.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MCA_MCCS_VERSION_MISMATCH">
            <summary>
            The MCCS version in a monitor's mccs_ver capability does not match the MCCS version the monitor reports when the VCP Version (0xDF) VCP code is used.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MCA_UNSUPPORTED_MCCS_VERSION">
            <summary>
            The Monitor Configuration API only works with monitors that support the MCCS 1.0 specification, MCCS 2.0 specification or the MCCS 2.0 Revision 1 specification.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MCA_INTERNAL_ERROR">
            <summary>
            An internal Monitor Configuration API error occurred.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED">
            <summary>
            The monitor returned an invalid monitor technology type. CRT, Plasma and LCD (TFT) are examples of monitor technology types. This error implies that the monitor violated the MCCS 2.0 or MCCS 2.0 Revision 1 specification.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_MCA_UNSUPPORTED_COLOR_TEMPERATURE">
            <summary>
            The caller of SetMonitorColorTemperature specified a color temperature that the current monitor did not support. This error implies that the monitor violated the MCCS 2.0 or MCCS 2.0 Revision 1 specification.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_AMBIGUOUS_SYSTEM_DEVICE">
            <summary>
            The requested system device cannot be identified due to multiple indistinguishable devices potentially matching the identification criteria.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SYSTEM_DEVICE_NOT_FOUND">
            <summary>
            The requested system device cannot be found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_HASH_NOT_SUPPORTED">
            <summary>
            Hash generation for the specified hash version and hash type is not enabled on the server.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_HASH_NOT_PRESENT">
            <summary>
            The hash requested from the server is not available or no longer valid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SECONDARY_IC_PROVIDER_NOT_REGISTERED">
            <summary>
            The secondary interrupt controller instance that manages the specified interrupt is not registered.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_GPIO_CLIENT_INFORMATION_INVALID">
            <summary>
            The information supplied by the GPIO client driver is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_GPIO_VERSION_NOT_SUPPORTED">
            <summary>
            The version specified by the GPIO client driver is not supported.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_GPIO_INVALID_REGISTRATION_PACKET">
            <summary>
            The registration packet supplied by the GPIO client driver is not valid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_GPIO_OPERATION_DENIED">
            <summary>
            The requested operation is not suppported for the specified handle.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_GPIO_INCOMPATIBLE_CONNECT_MODE">
            <summary>
            The requested connect mode conflicts with an existing mode on one or more of the specified pins.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_GPIO_INTERRUPT_ALREADY_UNMASKED">
            <summary>
            The interrupt requested to be unmasked is not masked.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_CANNOT_SWITCH_RUNLEVEL">
            <summary>
            The requested run level switch cannot be completed successfully.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_RUNLEVEL_SETTING">
            <summary>
            The service has an invalid run level setting. The run level for a service must not be higher than the run level of its dependent services.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RUNLEVEL_SWITCH_TIMEOUT">
            <summary>
            The requested run level switch cannot be completed successfully since one or more services will not stop or restart within the specified timeout.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RUNLEVEL_SWITCH_AGENT_TIMEOUT">
            <summary>
            A run level switch agent did not respond within the specified timeout.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RUNLEVEL_SWITCH_IN_PROGRESS">
            <summary>
            A run level switch is currently in progress.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SERVICES_FAILED_AUTOSTART">
            <summary>
            One or more services failed to start during the service startup phase of a run level switch.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_COM_TASK_STOP_PENDING">
            <summary>
            The task stop request cannot be completed immediately since task needs more time to shutdown.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_OPEN_PACKAGE_FAILED">
            <summary>
            Package could not be opened.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_PACKAGE_NOT_FOUND">
            <summary>
            Package was not found.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_INVALID_PACKAGE">
            <summary>
            Package data is invalid.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_RESOLVE_DEPENDENCY_FAILED">
            <summary>
            Package failed updates, dependency or conflict validation.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_OUT_OF_DISK_SPACE">
            <summary>
            There is not enough disk space on your computer. Please free up some space and try again.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_NETWORK_FAILURE">
            <summary>
            There was a problem downloading your product.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_REGISTRATION_FAILURE">
            <summary>
            Package could not be registered.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_DEREGISTRATION_FAILURE">
            <summary>
            Package could not be unregistered.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_CANCEL">
            <summary>
            User cancelled the install request.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_FAILED">
            <summary>
            Install failed. Please contact your software vendor.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_REMOVE_FAILED">
            <summary>
            Removal failed. Please contact your software vendor.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PACKAGE_ALREADY_EXISTS">
            <summary>
            The provided package is already installed, and reinstallation of the package was blocked. Check the AppXDeployment-Server event log for details.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_NEEDS_REMEDIATION">
            <summary>
            The application cannot be started. Try reinstalling the application to fix the problem.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_PREREQUISITE_FAILED">
            <summary>
            A Prerequisite for an install could not be satisfied.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PACKAGE_REPOSITORY_CORRUPTED">
            <summary>
            The package repository is corrupted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_POLICY_FAILURE">
            <summary>
            To install this application you need either a Windows developer license or a sideloading-enabled system.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PACKAGE_UPDATING">
            <summary>
            The application cannot be started because it is currently updating.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DEPLOYMENT_BLOCKED_BY_POLICY">
            <summary>
            The package deployment operation is blocked by policy. Please contact your system administrator.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_PACKAGES_IN_USE">
            <summary>
            The package could not be installed because resources it modifies are currently in use.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RECOVERY_FILE_CORRUPT">
            <summary>
            The package could not be recovered because necessary data for recovery have been corrupted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INVALID_STAGED_SIGNATURE">
            <summary>
            The signature is invalid. To register in developer mode, AppxSignature.p7x and AppxBlockMap.xml must be valid or should not be present.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_DELETING_EXISTING_APPLICATIONDATA_STORE_FAILED">
            <summary>
            An error occurred while deleting the package's previously existing application data.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_PACKAGE_DOWNGRADE">
            <summary>
            The package could not be installed because a higher version of this package is already installed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_SYSTEM_NEEDS_REMEDIATION">
            <summary>
            An error in a system binary was detected. Try refreshing the PC to fix the problem.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_APPX_INTEGRITY_FAILURE_CLR_NGEN">
            <summary>
            A corrupted CLR NGEN binary was detected on the system.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_RESILIENCY_FILE_CORRUPT">
            <summary>
            The operation could not be resumed because necessary data for recovery have been corrupted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_INSTALL_FIREWALL_SERVICE_NOT_RUNNING">
            <summary>
            The package could not be installed because the Windows Firewall service is not running. Enable the Windows Firewall service and try again.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.APPMODEL_ERROR_NO_PACKAGE">
            <summary>
            The process has no package identity.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.APPMODEL_ERROR_PACKAGE_RUNTIME_CORRUPT">
            <summary>
            The package runtime information is corrupted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.APPMODEL_ERROR_PACKAGE_IDENTITY_CORRUPT">
            <summary>
            The package identity is corrupted.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.APPMODEL_ERROR_NO_APPLICATION">
            <summary>
            The process has no application identity.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STATE_LOAD_STORE_FAILED">
            <summary>
            Loading the state store failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STATE_GET_VERSION_FAILED">
            <summary>
            Retrieving the state version for the application failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STATE_SET_VERSION_FAILED">
            <summary>
            Setting the state version for the application failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STATE_STRUCTURED_RESET_FAILED">
            <summary>
            Resetting the structured state of the application failed.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STATE_OPEN_CONTAINER_FAILED">
            <summary>
            State Manager failed to open the container.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STATE_CREATE_CONTAINER_FAILED">
            <summary>
            State Manager failed to create the container.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STATE_DELETE_CONTAINER_FAILED">
            <summary>
            State Manager failed to delete the container.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STATE_READ_SETTING_FAILED">
            <summary>
            State Manager failed to read the setting.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STATE_WRITE_SETTING_FAILED">
            <summary>
            State Manager failed to write the setting.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STATE_DELETE_SETTING_FAILED">
            <summary>
            State Manager failed to delete the setting.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STATE_QUERY_SETTING_FAILED">
            <summary>
            State Manager failed to query the setting.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STATE_READ_COMPOSITE_SETTING_FAILED">
            <summary>
            State Manager failed to read the composite setting.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STATE_WRITE_COMPOSITE_SETTING_FAILED">
            <summary>
            State Manager failed to write the composite setting.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STATE_ENUMERATE_CONTAINER_FAILED">
            <summary>
            State Manager failed to enumerate the containers.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STATE_ENUMERATE_SETTINGS_FAILED">
            <summary>
            State Manager failed to enumerate the settings.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STATE_COMPOSITE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED">
            <summary>
            The size of the state manager composite setting value has exceeded the limit.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STATE_SETTING_VALUE_SIZE_LIMIT_EXCEEDED">
            <summary>
            The size of the state manager setting value has exceeded the limit.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STATE_SETTING_NAME_SIZE_LIMIT_EXCEEDED">
            <summary>
            The length of the state manager setting name has exceeded the limit.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_STATE_CONTAINER_NAME_SIZE_LIMIT_EXCEEDED">
            <summary>
            The length of the state manager container name has exceeded the limit.
            </summary>
        </member>
        <member name="F:Microsoft.Win32.Win32Error.ERROR_API_UNAVAILABLE">
            <summary>
            This API cannot be used in the context of the caller's application type.
            </summary>
        </member>
    </members>
</doc>