[
  {
    "path": "DotDumper/ArgumentHandler.cs",
    "content": "﻿using System;\r\nusing System.IO;\r\nusing System.Reflection;\r\n\r\nnamespace DotDumper\r\n{\r\n    /// <summary>\r\n    /// This class handles user-provided arguments by parsing them, and updating the fields in the Config class when need be. At last, a check is performed to ensure that the required arguments are provided.\r\n    /// </summary>\r\n    class ArgumentHandler\r\n    {\r\n        #region Argument markers and descriptions\r\n        /// <summary>\r\n        /// The marker for the sample path (equals \"-file\")\r\n        /// </summary>\r\n        public const string SamplePathMarker = \"-file\";\r\n\r\n        /// <summary>\r\n        /// The description for the sample path\r\n        /// </summary>\r\n        public const string SamplePathDescription = \"The complete path to the file to launch. This is the only mandatory argument, if the provided file has\\n\\t\\tan entry point. Note that providing only a single CLI argument with the file's location also works!\";\r\n\r\n        /// <summary>\r\n        /// The marker for the logging folder name (equals \"-log\")\r\n        /// </summary>\r\n        public const string LoggingFolderNameMarker = \"-log\";\r\n\r\n        /// <summary>\r\n        /// The description of the logging folder name\r\n        /// </summary>\r\n        public const string LoggingFolderNameDescription = \"The name of the folder to place artifacts in, which will be placed within the same folder as DotDumper.\\n\\t\\tIf this argument is missing, the sample's file name will be used.\";\r\n\r\n        /// <summary>\r\n        /// The marker for the deprecated function inclusion/exclusion\r\n        /// </summary>\r\n        public const string DeprecatedFunctionMarker = \"-deprecated\";\r\n\r\n        /// <summary>\r\n        /// The description for the deprecated function inclusion/exclusion\r\n        /// </summary>\r\n        public const string DeprecatedFunctionDescription = \"Hook deprecated functions, needs to be true or false. The default value is true\";\r\n\r\n        /// <summary>\r\n        /// The marker for the argument which decides if the loaded hooks should be displayed\r\n        /// </summary>\r\n        public const string LogHooksMarker = \"-displayHooks\";\r\n\r\n        /// <summary>\r\n        /// The description for the logging of all loaded hooks\r\n        /// </summary>\r\n        public const string LogHooksDescription = \"Print all hooked functions upon startup, needs to be true or false. The default value is true\";\r\n\r\n        /// <summary>\r\n        /// The race condition marker, which indicates an overwrite of the delay on the race condition timer\r\n        /// </summary>\r\n        public const string RaceConditionDueTimeMarker = \"-raceTime\";\r\n\r\n        /// <summary>\r\n        /// The decription of the race condition delay argument\r\n        /// </summary>\r\n        public const string RaceConditionDueTimeDescription = \"The amount of milliseconds that are between the hook and re-hook of Invoke-related functions.\\n\\t\\tThe default value is 20\";\r\n\r\n        /// <summary>\r\n        /// Decides if the entry point of the binary should be ignored\r\n        /// </summary>\r\n        public const string OverrideEntryPointMarker = \"-overrideEntry\";\r\n\r\n        /// <summary>\r\n        /// The description of the override functionality\r\n        /// </summary>\r\n        public const string OverrideEntryPointDescription = \"Defines if the default entry point should be overridden, needs to be true or false. The default value\\n\\t\\tis false. The use of -fqcn and -functionName is mandatory with this argument, whereas -args and\\n\\t\\t-argc are optional (though both -args and -argc need to be used together when they are used).\";\r\n\r\n        /// <summary>\r\n        /// The marker for the fully qualified class name (including the namespace)\r\n        /// </summary>\r\n        public const string DllFullyQualifiedClassNameMarker = \"-fqcn\";\r\n\r\n        /// <summary>\r\n        /// The description of the fully qualified class name (including the namespace)\r\n        /// </summary>\r\n        public const string DllFullyQualifiedClassDescription = \"The fully qualified class, including namespace, to find the function in. Only used when overriding\\n\\t\\tthe entry point. Needs to be used together with -functionName.\";\r\n\r\n        /// <summary>\r\n        /// The marker for the function name\r\n        /// </summary>\r\n        public const string DllFunctionNameMarker = \"-functionName\";\r\n\r\n        /// <summary>\r\n        /// The description for the function name's description\r\n        /// </summary>\r\n        public const string DllFunctionNameDescription = \"The function name to call, excluding types and parameters, within the fully qualified class.\\n\\t\\tOnly used when overriding the entry point. Needs to be used together with -fqcn.\";\r\n\r\n        /// <summary>\r\n        /// The marker for the arguments\r\n        /// </summary>\r\n        public const string PayloadArgumentsMarker = \"-args\";\r\n\r\n        /// <summary>\r\n        /// The description for the arguments\r\n        /// </summary>\r\n        public const string PayloadArgumentsDescription = \"The arguments for the function, providing the type and value at once, split by a pipe,\\n\\t\\tsuch as int|7, double|3.14, or string|myValue\\n\\t\\tThe following types are supported: bool, byte, sbyte, char, decimal, double, float, int, uint, long,\\n\\t\\tulong, short, ushort, string, as well as arrays of each of those types. Arrays are indicated using \\\"[]\\\"\\n\\t\\tdirectly after the type, such as \\\"string[]\\\". The values are to be split using commas.\\n\\t\\tAn example: string[]|string1,string2,string3\\n\\t\\tNull is also possible, but note that this value (or lack thereof) should not be capitalised.\\n\\t\\tNeeds to be used together with -argc.\";\r\n\r\n        /// <summary>\r\n        /// The index of the first argument in the provided array of DotDumper arguments by the user\r\n        /// </summary>\r\n        private static int PayloadArgumentsIndex = -1;\r\n\r\n        /// <summary>\r\n        /// The marker for the argument count\r\n        /// </summary>\r\n        public const string PayloadArgumentCountMarker = \"-argc\";\r\n\r\n        /// <summary>\r\n        /// The description for the argument count\r\n        /// </summary>\r\n        public const string PayloadArgumentCountDescription = \"The number of arguments that are provided, as an integer. Needs to be used together with -args.\";\r\n\r\n        /// <summary>\r\n        /// The amount of arguments, as provided by the user\r\n        /// </summary>\r\n        private static int PayloadArgumentCount = -1;\r\n\r\n        /// <summary>\r\n        /// The marker to decide if sleep calls should be skipped\r\n        /// </summary>\r\n        public const string SleepSkipMarker = \"-sleepSkip\";\r\n\r\n        /// <summary>\r\n        /// The description for the sleep skip functionality\r\n        /// </summary>\r\n        public const string SleepSkipDescription = \"Defines if Thread.Sleep calls need to be skipped, needs to be true or false. The default value is true.\";\r\n\r\n        /// <summary>\r\n        /// The marker to decide if logs should be printed to the console\r\n        /// </summary>\r\n        public const string ConsolePrintingMarker = \"-console\";\r\n\r\n        /// <summary>\r\n        /// The description for the optional console logging functionality\r\n        /// </summary>\r\n        public const string ConsolePrintingDescription = \"Defines if the logging should be printed to the console window or not. The default value is true.\";\r\n\r\n        /// <summary>\r\n        /// The help marker\r\n        /// </summary>\r\n        public const string HelpMarker = \"-help\";\r\n\r\n        /// <summary>\r\n        /// The description of the help marker\r\n        /// </summary>\r\n        public const string HelpDescription = \"Prints the help menu. This cannot be used in combination with other options, as they will be ignored.\";\r\n        #endregion\r\n\r\n        /// <summary>\r\n        /// A helper function to combine a marker and a description, including the required newlines and tabs\r\n        /// </summary>\r\n        /// <param name=\"marker\">The marker to combine with the description</param>\r\n        /// <param name=\"description\">The description to combine with the marker</param>\r\n        /// <returns>The combined marker and description</returns>\r\n        private static string CombineMarkerAndDescription(string marker, string description)\r\n        {\r\n            return marker + \"\\n\" +\r\n                \"\\t\\t\" + description + \"\\n\";\r\n        }\r\n\r\n        /// <summary>\r\n        /// A helper function to get the complete help message as a single string\r\n        /// </summary>\r\n        /// <returns>The complete help message</returns>\r\n        private static string GetHelpMessage()\r\n        {\r\n            //Initialises the program's version, and a note that all arguments are case sensitive\r\n            string help = Program.VERSION + \"\\n\" +\r\n                \"Note that all arguments are cases sensitive!\\n\";\r\n\r\n            //Adds all the markers and their descriptions into the help message\r\n            help += CombineMarkerAndDescription(SamplePathMarker, SamplePathDescription);\r\n            help += CombineMarkerAndDescription(LoggingFolderNameMarker, LoggingFolderNameDescription);\r\n            help += CombineMarkerAndDescription(DeprecatedFunctionMarker, DeprecatedFunctionDescription);\r\n            help += CombineMarkerAndDescription(LogHooksMarker, LogHooksDescription);\r\n            help += CombineMarkerAndDescription(RaceConditionDueTimeMarker, RaceConditionDueTimeDescription);\r\n            help += CombineMarkerAndDescription(OverrideEntryPointMarker, OverrideEntryPointDescription);\r\n            help += CombineMarkerAndDescription(DllFullyQualifiedClassNameMarker, DllFullyQualifiedClassDescription);\r\n            help += CombineMarkerAndDescription(DllFunctionNameMarker, DllFunctionNameDescription);\r\n            help += CombineMarkerAndDescription(PayloadArgumentsMarker, PayloadArgumentsDescription);\r\n            help += CombineMarkerAndDescription(PayloadArgumentCountMarker, PayloadArgumentCountDescription);\r\n            help += CombineMarkerAndDescription(SleepSkipMarker, SleepSkipDescription);\r\n            help += CombineMarkerAndDescription(ConsolePrintingMarker, ConsolePrintingDescription);\r\n            help += CombineMarkerAndDescription(HelpMarker, HelpDescription);\r\n\r\n            //Adds the well known message to keep the console open, if it wasn't launched via a terminal\r\n            help += \"\\nPress any key to exit...\";\r\n\r\n            //Return the complete message\r\n            return help;\r\n        }\r\n\r\n        /// <summary>\r\n        /// Checks if the help marker is used as an argument at any point, or if the given array is null or empty. If any of the mentioned conditions is met, the help menu is printed, after which DotDumper will await for the user to press any key, leading to DotDumper's shutdown.\r\n        /// </summary>\r\n        /// <param name=\"args\">The args array to check for the help parameter</param>\r\n        private static void CheckHelp(string[] args)\r\n        {\r\n            //Declare the variable which will incidate if the help marker has been found\r\n            bool help = false;\r\n\r\n            //If the provided argument is null or empty, the help menu must be shown, as one at least needs to provide a file to DotDumper\r\n            if (args == null || args.Length == 0)\r\n            {\r\n                help = true;\r\n            }\r\n            else\r\n            {\r\n                //If it is not null nor empty, iterate over all arguments\r\n                for (int i = 0; i < args.Length; i++)\r\n                {\r\n                    //Check if the current argument equals the helpmarker\r\n                    if (args[i].Equals(HelpMarker))\r\n                    {\r\n                        //Set the help variable to true\r\n                        help = true;\r\n                        //Break the loop, as the help marker has been found\r\n                        break;\r\n                    }\r\n                }\r\n            }\r\n\r\n            //If the help variable is true\r\n            if (help)\r\n            {\r\n                //Get and write the help message\r\n                Console.WriteLine(GetHelpMessage());\r\n                //Wait for any user input\r\n                Console.ReadKey();\r\n                //Exit\r\n                Environment.Exit(0);\r\n            }\r\n            //If the variable is false, nothing has to be done\r\n        }\r\n\r\n        /// <summary>\r\n        /// Checks (in the listed order) if the given value is a file in the current directory, the directory of DotDumper, or if it is a full path.\r\n        /// </summary>\r\n        /// <param name=\"value\">The (partial) path and file name of the target file</param>\r\n        private static void CheckFile(string value)\r\n        {\r\n            //Check if the sample is located in the current working directory\r\n            string filePath = Directory.GetCurrentDirectory() + @\"\\\" + value;\r\n            if (File.Exists(filePath))\r\n            {\r\n                Config.SamplePath = filePath;\r\n            }\r\n\r\n            //Check if the sample is located in the same folder as DotDumper\r\n            filePath = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location) + @\"\\\" + value;\r\n            if (File.Exists(filePath))\r\n            {\r\n                Config.SamplePath = filePath;\r\n            }\r\n\r\n            //Check if a full path is given, but only after the two other defined directions have been checked, as the Assembly object can only be loaded with a full path, not a relative one\r\n            if (File.Exists(value))\r\n            {\r\n                Config.SamplePath = value;\r\n            }\r\n\r\n            //Only throw the exception if the sample path hasn't been set (meaning the sample hasn't been found)\r\n            if (Config.SamplePath == null)\r\n            {\r\n                //Throw an error if none of the above options results in a match with a file on the user's file system\r\n                throw new Exception(\"The provided sample path at \\\"\" + value + \"\\\" does not exist, and cannot be found in the current working directory nor in DotDumper's folder!\");\r\n            }\r\n\r\n        }\r\n\r\n        /// <summary>\r\n        /// Parses the arguments and sets the config fields that need to be updated based on the arguments. The checks afterwards ensure that only correct combinations of arguments are allowed, or an error is thrown.\r\n        /// </summary>\r\n        /// <param name=\"args\"></param>\r\n        public static void ParseArguments(string[] args)\r\n        {\r\n            //Check if the help marker is provided. If so, this function does not return\r\n            CheckHelp(args);\r\n\r\n            /*\r\n             * Ensure that a single argument leading to the path is possible, when the size of args equals 1, \r\n             * it is to be redefined as an array with the size of two, where the first argument is \"-file\"\r\n             */\r\n            try\r\n            {\r\n                //Only attempt this if there is a single argument\r\n                if (args.Length == 1)\r\n                {\r\n                    //Call the check file function, which throws an exception if it fails\r\n                    CheckFile(args[0]);\r\n                    /*\r\n                     * If this code is reached, the function call above was successful, otherwise I'd throw an exception.\r\n                     * Because of that, the normal CLI parsing can continue if the string array is set again, with the file\r\n                     * path marker as the first argument, and its value as the second, as if it were done manually\r\n                     */\r\n                    args = new string[] { SamplePathMarker, args[0] };\r\n                }\r\n            }\r\n            catch (Exception)\r\n            {\r\n                /*\r\n                 * The sole argument was not equal to the file path marker. There is no need to handle this error, other than\r\n                 * ignoring it.\r\n                 */\r\n            }\r\n\r\n\r\n            //Open the try block to handle wrong argument exceptions\r\n            try\r\n            {\r\n                //Declare i prior to the loop, as it is also used outside of the loop in some cases\r\n                int i;\r\n                for (i = 0; i < args.Length; i++)\r\n                {\r\n                    //Get the current argument, in lower case\r\n                    string arg = args[i];\r\n\r\n                    //Check if the next index exists, as the marker is always accompanied by at least one argument\r\n                    if (NextIndexExists(args, i))\r\n                    {\r\n                        //Get the value of the next index, which is known to exist at this point\r\n                        string value = args[i + 1];\r\n\r\n                        //Handle all marker options (aside from the help one, which was handled before the try block)\r\n                        if (IsEqual(arg, SamplePathMarker))\r\n                        {\r\n\r\n                            CheckFile(value);\r\n                        }\r\n                        else if (IsEqual(arg, LoggingFolderNameMarker))\r\n                        {\r\n                            Config.LoggerFolder = value;\r\n                        }\r\n                        else if (IsEqual(arg, DeprecatedFunctionMarker))\r\n                        {\r\n                            try\r\n                            {\r\n                                Config.IncludeDeprecatedFunctions = Convert.ToBoolean(value);\r\n                            }\r\n                            catch (Exception)\r\n                            {\r\n                                throw new Exception(\"The boolean to determine if deprecated functions should also be hooked is not a valid boolean: \\\"\" + value + \"\\\"!\");\r\n                            }\r\n                        }\r\n                        else if (IsEqual(arg, LogHooksMarker))\r\n                        {\r\n                            try\r\n                            {\r\n                                Config.LogHooks = Convert.ToBoolean(value);\r\n                            }\r\n                            catch (Exception)\r\n                            {\r\n                                throw new Exception(\"The boolean to determine if the hooks should be logged is not a valid boolean: \\\"\" + value + \"\\\"!\");\r\n                            }\r\n                        }\r\n                        else if (IsEqual(arg, RaceConditionDueTimeMarker))\r\n                        {\r\n                            try\r\n                            {\r\n                                int raceConditionTime = Convert.ToInt32(value);\r\n                                if (raceConditionTime <= 0)\r\n                                {\r\n                                    throw new Exception();\r\n                                }\r\n                                Config.RaceConditionDueTime = raceConditionTime;\r\n                            }\r\n                            catch (Exception)\r\n                            {\r\n                                throw new Exception(\"The integer to determine the duration of the time the timer should wait before rehooking invoke related functions is not a valid integer with a size of more than zero: \\\"\" + value + \"\\\"!\");\r\n                            }\r\n                        }\r\n                        else if (IsEqual(arg, OverrideEntryPointMarker))\r\n                        {\r\n                            try\r\n                            {\r\n                                Config.OverrideEntryPoint = Convert.ToBoolean(value);\r\n                            }\r\n                            catch (Exception)\r\n                            {\r\n                                throw new Exception(\"The boolean to determine if a user-specified entry point should be used is not a valid boolean: \\\"\" + value + \"\\\"!\");\r\n                            }\r\n                        }\r\n                        else if (IsEqual(arg, DllFullyQualifiedClassNameMarker))\r\n                        {\r\n                            Config.DllFullyQualifiedClassName = value;\r\n                        }\r\n                        else if (IsEqual(arg, DllFunctionNameMarker))\r\n                        {\r\n                            Config.DllFunctionName = value;\r\n                        }\r\n                        else if (IsEqual(arg, PayloadArgumentsMarker))\r\n                        {\r\n                            PayloadArgumentsIndex = i + 1;\r\n                        }\r\n                        else if (IsEqual(arg, PayloadArgumentCountMarker))\r\n                        {\r\n                            try\r\n                            {\r\n                                int argCount = Convert.ToInt32(value);\r\n                                if (argCount <= 0)\r\n                                {\r\n                                    throw new Exception();\r\n                                }\r\n                                PayloadArgumentCount = argCount;\r\n                            }\r\n                            catch (Exception)\r\n                            {\r\n                                throw new Exception(\"The integer that indicates the amount of arguments the function requires is not a valid integer that is bigger than one: \\\"\" + value + \"\\\"!\");\r\n                            }\r\n                        }\r\n                        else if (IsEqual(arg, SleepSkipMarker))\r\n                        {\r\n                            try\r\n                            {\r\n                                Config.SleepSkip = Convert.ToBoolean(value);\r\n                            }\r\n                            catch (Exception)\r\n                            {\r\n                                throw new Exception(\"The boolean to determine if sleep calls need to be skipped is not a valid boolean: \\\"\" + value + \"\\\"!\");\r\n                            }\r\n                        }\r\n                        else if (IsEqual(arg, ConsolePrintingMarker))\r\n                        {\r\n                            try\r\n                            {\r\n                                Config.PrintLogsToConsole = Convert.ToBoolean(value);\r\n                            }\r\n                            catch (Exception)\r\n                            {\r\n                                throw new Exception(\"The boolean to determine if logs need to be printed to the console window is not a valid boolean: \\\"\" + value + \"\\\"!\");\r\n                            }\r\n                        }\r\n                    }\r\n                }\r\n\r\n                #region Mandatory value checks\r\n                //If no sample was provided, an error is thrown\r\n                if (Config.SamplePath == null)\r\n                {\r\n                    throw new Exception(\"No file has been provided! Use \\\"\" + SamplePathMarker + \"\\\" to specify the file, or use \\\"\" + HelpMarker + \"\\\" to show the help menu!\");\r\n                }\r\n                //If the name of the logger folder is not provided, the name of the given sample is used. The sample exists and is not null, as previous checks already ensured that\r\n                if (Config.LoggerFolder == null)\r\n                {\r\n                    SetLoggerFolderName();\r\n                }\r\n                #endregion\r\n\r\n                #region Optional value checks\r\n                //If the entry point should be overridden\r\n                if (Config.OverrideEntryPoint == true)\r\n                {\r\n                    //The fully qualified class name needs to be present\r\n                    if (Config.DllFullyQualifiedClassName == null)\r\n                    {\r\n                        throw new Exception(\"The default entry point is to be overridden, but the fully qualified class name that is to be used, is null!\");\r\n                    }\r\n                    //As well as the function name\r\n                    if (Config.DllFunctionName == null)\r\n                    {\r\n                        throw new Exception(\"The default entry point is to be overridden, but the function name that is to be used, is null!\");\r\n                    }\r\n                    //Arguments are optional, and can also be used for an entry point, which is why they are outside this if-block\r\n                }\r\n\r\n                //If the index and count are not equal to their initial value of -1, it means that they were both provided\r\n                if (PayloadArgumentsIndex > 0 && PayloadArgumentCount > 0)\r\n                {\r\n                    //Given that they are both provided, they need to be handled\r\n                    SetDllArguments(args, PayloadArgumentsIndex, PayloadArgumentCount);\r\n                }\r\n                else //In case one or both of these values is still equal to -1\r\n                {\r\n                    //If the payload count is missing, an error is thrown\r\n                    if (PayloadArgumentCount > 0)\r\n                    {\r\n                        throw new Exception(\"No argument count was found, even though arguments were specified!\");\r\n                    }\r\n                    else if (PayloadArgumentsIndex > 0) //If the payload count is more than zero, it means that the index is missing, for which an error needs to be thrown\r\n                    {\r\n                        throw new Exception(\"No arguments were found, even though an argument count was specified!\");\r\n                    }\r\n                }\r\n                #endregion\r\n            }\r\n            catch (Exception ex) //Any thrown exception is caught, printed to the standard output, after which DotDumper waits for any key to exit\r\n            {\r\n                Console.WriteLine(\"[ERROR] \" + ex.Message + \"\\n\\nPress any key to exit...\");\r\n                Console.ReadKey();\r\n                Environment.Exit(0);\r\n            }\r\n        }\r\n\r\n        /// <summary>\r\n        /// Sets the logger folder name to the given file name, appending \"_DotDumper\" to it until the folder does not exist\r\n        /// </summary>\r\n        private static void SetLoggerFolderName()\r\n        {\r\n            string loggerFolder = Path.GetFileNameWithoutExtension(Config.SamplePath);\r\n            while (true)\r\n            {\r\n                if (Directory.Exists(loggerFolder) == false && File.Exists(loggerFolder) == false)\r\n                {\r\n                    break;\r\n                }\r\n                else\r\n                {\r\n                    loggerFolder += \"_DotDumper\";\r\n                }\r\n            }\r\n\r\n            Config.LoggerFolder = loggerFolder;\r\n        }\r\n\r\n        /// <summary>\r\n        /// Tries to fetch the next index from the array, based on the provided array and index\r\n        /// </summary>\r\n        /// <param name=\"args\">The array to use</param>\r\n        /// <param name=\"index\">The index to check if there is a next element</param>\r\n        /// <returns>True if a next element exists, false if not</returns>\r\n        private static bool NextIndexExists(string[] args, int index)\r\n        {\r\n            try\r\n            {\r\n                string element = args[index + 1];\r\n                return true;\r\n            }\r\n            catch (Exception)\r\n            {\r\n                return false;\r\n            }\r\n        }\r\n\r\n        /// <summary>\r\n        /// Sets the DllArguments field in the config, based on the provided parameters.\r\n        /// </summary>\r\n        /// <param name=\"args\">The complete set of parameters that DotDumper received</param>\r\n        /// <param name=\"payloadArgumentsIndex\">The index at which the first argument is found</param>\r\n        /// <param name=\"payloadArgumentCount\">The amount of arguments that are provided by the user</param>\r\n        private static void SetDllArguments(string[] args, int payloadArgumentsIndex, int payloadArgumentCount)\r\n        {\r\n            //The object array that will contain all arguments\r\n            object[] dllArgs = new object[payloadArgumentCount];\r\n\r\n            //The string array that contains the split array for each of the provided types\r\n            string[] arrayValues;\r\n\r\n            //Iterate as many times as there are arguments\r\n            for (int i = 0; i < payloadArgumentCount; i++)\r\n            {\r\n                //Get the index to fetch data from the args array\r\n                int index = payloadArgumentsIndex + i;\r\n                //Get and split the data\r\n                string[] splitted = args[index].Split('|');\r\n                //If there are more or less than two fields, something is wrong, thus an error is thrown\r\n                if (splitted.Length != 2)\r\n                {\r\n                    throw new Exception(\"The provided type-value combination is invalid: \\\"\" + args[index] + \"\\\"!\");\r\n                }\r\n                //Get the type from the array, as a lowercase string (so a typo wont influence the outcome here)\r\n                string type = splitted[0].ToLowerInvariant();\r\n                //Get the value of the given argument\r\n                string value = splitted[1];\r\n\r\n                //Handle any type of supported variables\r\n                switch (type)\r\n                {\r\n                    case \"bool\":\r\n                        dllArgs[i] = Convert.ToBoolean(value);\r\n                        break;\r\n                    case \"bool[]\":\r\n                        arrayValues = HandleArray(value);\r\n                        bool[] bools = new bool[arrayValues.Length];\r\n                        for (int count = 0; count < arrayValues.Length; count++)\r\n                        {\r\n                            bools[count] = Convert.ToBoolean(arrayValues[count]);\r\n                        }\r\n                        dllArgs[i] = bools;\r\n                        break;\r\n                    case \"byte\":\r\n                        dllArgs[i] = Convert.ToByte(value);\r\n                        break;\r\n                    case \"byte[]\":\r\n                        arrayValues = HandleArray(value);\r\n                        byte[] bytes = new byte[arrayValues.Length];\r\n                        for (int count = 0; count < arrayValues.Length; count++)\r\n                        {\r\n                            bytes[count] = Convert.ToByte(arrayValues[count]);\r\n                        }\r\n                        dllArgs[i] = bytes;\r\n                        break;\r\n                    case \"sbyte\":\r\n                        dllArgs[i] = Convert.ToSByte(value);\r\n                        break;\r\n                    case \"sbyte[]\":\r\n                        arrayValues = HandleArray(value);\r\n                        sbyte[] sbytes = new sbyte[arrayValues.Length];\r\n                        for (int count = 0; count < arrayValues.Length; count++)\r\n                        {\r\n                            sbytes[count] = Convert.ToSByte(arrayValues[count]);\r\n                        }\r\n                        dllArgs[i] = sbytes;\r\n                        break;\r\n                    case \"char\":\r\n                        dllArgs[i] = Convert.ToChar(value);\r\n                        break;\r\n                    case \"char[]\":\r\n                        arrayValues = HandleArray(value);\r\n                        char[] chars = new char[arrayValues.Length];\r\n                        for (int count = 0; count < arrayValues.Length; count++)\r\n                        {\r\n                            chars[count] = Convert.ToChar(arrayValues[count]);\r\n                        }\r\n                        dllArgs[i] = chars;\r\n                        break;\r\n                    case \"decimal\":\r\n                        dllArgs[i] = Convert.ToDecimal(value);\r\n                        break;\r\n                    case \"decimal[]\":\r\n                        arrayValues = HandleArray(value);\r\n                        decimal[] decimals = new decimal[arrayValues.Length];\r\n                        for (int count = 0; count < arrayValues.Length; count++)\r\n                        {\r\n                            decimals[count] = Convert.ToDecimal(arrayValues[count]);\r\n                        }\r\n                        dllArgs[i] = decimals;\r\n                        break;\r\n                    case \"double\":\r\n                        dllArgs[i] = Convert.ToDouble(value);\r\n                        break;\r\n                    case \"double[]\":\r\n                        arrayValues = HandleArray(value);\r\n                        double[] doubles = new double[arrayValues.Length];\r\n                        for (int count = 0; count < arrayValues.Length; count++)\r\n                        {\r\n                            doubles[count] = Convert.ToDouble(arrayValues[count]);\r\n                        }\r\n                        dllArgs[i] = doubles;\r\n                        break;\r\n                    case \"float\":\r\n                        dllArgs[i] = Convert.ToSingle(value);\r\n                        break;\r\n                    case \"float[]\":\r\n                        arrayValues = HandleArray(value);\r\n                        float[] floats = new float[arrayValues.Length];\r\n                        for (int count = 0; count < arrayValues.Length; count++)\r\n                        {\r\n                            floats[count] = Convert.ToSingle(arrayValues[count]);\r\n                        }\r\n                        dllArgs[i] = floats;\r\n                        break;\r\n                    case \"int\":\r\n                        dllArgs[i] = Convert.ToInt32(value);\r\n                        break;\r\n                    case \"int[]\":\r\n                        arrayValues = HandleArray(value);\r\n                        int[] integers = new int[arrayValues.Length];\r\n                        for (int count = 0; count < arrayValues.Length; count++)\r\n                        {\r\n                            integers[count] = Convert.ToInt32(arrayValues[count]);\r\n                        }\r\n                        dllArgs[i] = integers;\r\n                        break;\r\n                    case \"uint\":\r\n                        dllArgs[i] = Convert.ToUInt32(value);\r\n                        break;\r\n                    case \"uint[]\":\r\n                        arrayValues = HandleArray(value);\r\n                        uint[] unsignedIntegers = new uint[arrayValues.Length];\r\n                        for (int count = 0; count < arrayValues.Length; count++)\r\n                        {\r\n                            unsignedIntegers[count] = Convert.ToUInt32(arrayValues[count]);\r\n                        }\r\n                        dllArgs[i] = unsignedIntegers;\r\n                        break;\r\n                    case \"long\":\r\n                        dllArgs[i] = Convert.ToInt64(value);\r\n                        break;\r\n                    case \"long[]\":\r\n                        arrayValues = HandleArray(value);\r\n                        long[] longs = new long[arrayValues.Length];\r\n                        for (int count = 0; count < arrayValues.Length; count++)\r\n                        {\r\n                            longs[count] = Convert.ToInt64(arrayValues[count]);\r\n                        }\r\n                        dllArgs[i] = longs;\r\n                        break;\r\n                    case \"ulong\":\r\n                        dllArgs[i] = Convert.ToUInt64(value);\r\n                        break;\r\n                    case \"ulong[]\":\r\n                        arrayValues = HandleArray(value);\r\n                        ulong[] unsignedLongs = new ulong[arrayValues.Length];\r\n                        for (int count = 0; count < arrayValues.Length; count++)\r\n                        {\r\n                            unsignedLongs[count] = Convert.ToUInt64(arrayValues[count]);\r\n                        }\r\n                        dllArgs[i] = unsignedLongs;\r\n                        break;\r\n                    case \"short\":\r\n                        dllArgs[i] = Convert.ToInt16(value);\r\n                        break;\r\n                    case \"short[]\":\r\n                        arrayValues = HandleArray(value);\r\n                        short[] shorts = new short[arrayValues.Length];\r\n                        for (int count = 0; count < arrayValues.Length; count++)\r\n                        {\r\n                            shorts[count] = Convert.ToInt16(arrayValues[count]);\r\n                        }\r\n                        dllArgs[i] = shorts;\r\n                        break;\r\n                    case \"ushort\":\r\n                        dllArgs[i] = Convert.ToUInt16(value);\r\n                        break;\r\n                    case \"ushort[]\":\r\n                        arrayValues = HandleArray(value);\r\n                        ushort[] unsignedShorts = new ushort[arrayValues.Length];\r\n                        for (int count = 0; count < arrayValues.Length; count++)\r\n                        {\r\n                            unsignedShorts[count] = Convert.ToUInt16(arrayValues[count]);\r\n                        }\r\n                        dllArgs[i] = unsignedShorts;\r\n                        break;\r\n                    case \"string\":\r\n                        dllArgs[i] = value;\r\n                        break;\r\n                    case \"string[]\":\r\n                        dllArgs[i] = HandleArray(value);\r\n                        break;\r\n                    case \"null\":\r\n                        dllArgs[i] = null;\r\n                        break;\r\n                    default:\r\n                        throw new Exception(\"The given type is not supported: \\\"\" + type + \"\\\"\");\r\n                }\r\n            }\r\n            //Once all arguments have been parsed without errors, the field in the Config class is set, and the function returns\r\n            Config.DllArguments = dllArgs;\r\n        }\r\n\r\n        /// <summary>\r\n        /// A helper function to split an array. This function is created to be able to quickly replace the split value if need be\r\n        /// </summary>\r\n        /// <param name=\"value\">The value to split, using a comma as the splitter</param>\r\n        /// <returns>The split string as a string array</returns>\r\n        private static string[] HandleArray(string value)\r\n        {\r\n            return value.Split(',');\r\n        }\r\n\r\n        /// <summary>\r\n        /// A helper function to check if two given strings are equal, regardless of the used casing in either string\r\n        /// </summary>\r\n        /// <param name=\"string1\">The first string to compare</param>\r\n        /// <param name=\"string2\">The second string to compare</param>\r\n        /// <returns>True if the strings are equal (regardless of the used casing), false if not</returns>\r\n        private static bool IsEqual(string string1, string string2)\r\n        {\r\n            if (string1.Equals(string2, StringComparison.InvariantCultureIgnoreCase))\r\n            {\r\n                return true;\r\n            }\r\n            return false;\r\n        }\r\n    }\r\n}"
  },
  {
    "path": "DotDumper/Config.cs",
    "content": "﻿namespace DotDumper\r\n{\r\n    /// <summary>\r\n    /// This class contains the default configuration values. Fields are overwritten with user-provided arguments if present.\r\n    /// </summary>\r\n    class Config\r\n    {\r\n        /// <summary>\r\n        /// The complete path to the sample that is to be executed. The default value is null.\r\n        /// </summary>\r\n        public static string SamplePath = null;\r\n\r\n        /// <summary>\r\n        /// The name of the folder that is to be used to place all artifacts in. This folder always resides within DotDumper.exe's folder. The default value is null.\r\n        /// </summary>\r\n        public static string LoggerFolder = null;\r\n\r\n        /// <summary>\r\n        /// True if deprecated functions should also be hooked (when a hook is present for such a function that is), false if not. The default value is true.\r\n        /// </summary>\r\n        public static bool IncludeDeprecatedFunctions = true;\r\n\r\n        /// <summary>\r\n        /// True if the hooks should be printed in string form during DotDumper's startup, false if not. The default value is true.\r\n        /// </summary>\r\n        public static bool LogHooks = true;\r\n\r\n        /// <summary>\r\n        /// The amount of milliseconds that the timer waits before calling the callback function for the rehook. The default value is 20.\r\n        /// </summary>\r\n        public static int RaceConditionDueTime = 20;\r\n\r\n        /// <summary>\r\n        /// Defines if the entry point (if present) should be overriden. A sample without an entrypoint should still be overridden! The default value is false.\r\n        /// </summary>\r\n        public static bool OverrideEntryPoint = false;\r\n\r\n        /// <summary>\r\n        /// The fully qualified class name, including the namespace(s). The default value is null.\r\n        /// </summary>\r\n        public static string DllFullyQualifiedClassName = null;\r\n\r\n        /// <summary>\r\n        /// The name of the public function in the given fully qualified class name. The default value is null.\r\n        /// </summary>\r\n        public static string DllFunctionName = null;\r\n\r\n        /// <summary>\r\n        /// The provided arguments for the given function (or the entry point). The default value is null.\r\n        /// </summary>\r\n        public static object[] DllArguments = null;\r\n\r\n        /// <summary>\r\n        /// True if calls to Thread.Sleep should be skipped, false if not. The default value is true.\r\n        /// </summary>\r\n        public static bool SleepSkip = true;\r\n\r\n        /// <summary>\r\n        /// True if the logs should be printed to the console, false if not. The default value is true.\r\n        /// </summary>\r\n        public static bool PrintLogsToConsole = true;\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/DotDumper.csproj",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<Project ToolsVersion=\"15.0\" xmlns=\"http://schemas.microsoft.com/developer/msbuild/2003\">\r\n  <Import Project=\"$(MSBuildExtensionsPath)\\$(MSBuildToolsVersion)\\Microsoft.Common.props\" Condition=\"Exists('$(MSBuildExtensionsPath)\\$(MSBuildToolsVersion)\\Microsoft.Common.props')\" />\r\n  <PropertyGroup>\r\n    <Configuration Condition=\" '$(Configuration)' == '' \">Debug</Configuration>\r\n    <Platform Condition=\" '$(Platform)' == '' \">AnyCPU</Platform>\r\n    <ProjectGuid>{97B3A6FF-A6EC-488A-8206-9820DC1F109B}</ProjectGuid>\r\n    <OutputType>Exe</OutputType>\r\n    <RootNamespace>DotDumper</RootNamespace>\r\n    <AssemblyName>DotDumper</AssemblyName>\r\n    <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>\r\n    <FileAlignment>512</FileAlignment>\r\n    <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>\r\n    <Deterministic>true</Deterministic>\r\n    <TargetFrameworkProfile />\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' \">\r\n    <PlatformTarget>AnyCPU</PlatformTarget>\r\n    <DebugSymbols>true</DebugSymbols>\r\n    <DebugType>full</DebugType>\r\n    <Optimize>false</Optimize>\r\n    <OutputPath>bin\\Debug\\</OutputPath>\r\n    <DefineConstants>DEBUG;TRACE</DefineConstants>\r\n    <ErrorReport>prompt</ErrorReport>\r\n    <WarningLevel>4</WarningLevel>\r\n    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' \">\r\n    <PlatformTarget>AnyCPU</PlatformTarget>\r\n    <DebugType>pdbonly</DebugType>\r\n    <Optimize>true</Optimize>\r\n    <OutputPath>bin\\Release\\</OutputPath>\r\n    <DefineConstants>TRACE</DefineConstants>\r\n    <ErrorReport>prompt</ErrorReport>\r\n    <WarningLevel>4</WarningLevel>\r\n    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)' == 'Debug|x64'\">\r\n    <DebugSymbols>true</DebugSymbols>\r\n    <OutputPath>bin\\x64\\Debug\\</OutputPath>\r\n    <DefineConstants>DEBUG;TRACE</DefineConstants>\r\n    <DebugType>full</DebugType>\r\n    <PlatformTarget>x64</PlatformTarget>\r\n    <ErrorReport>prompt</ErrorReport>\r\n    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>\r\n    <Prefer32Bit>true</Prefer32Bit>\r\n    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>\r\n  </PropertyGroup>\r\n  <PropertyGroup Condition=\"'$(Configuration)|$(Platform)' == 'Release|x64'\">\r\n    <OutputPath>bin\\x64\\Release\\</OutputPath>\r\n    <DefineConstants>TRACE</DefineConstants>\r\n    <Optimize>true</Optimize>\r\n    <DebugType>pdbonly</DebugType>\r\n    <PlatformTarget>x64</PlatformTarget>\r\n    <ErrorReport>prompt</ErrorReport>\r\n    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>\r\n    <Prefer32Bit>true</Prefer32Bit>\r\n    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>\r\n  </PropertyGroup>\r\n  <PropertyGroup>\r\n    <ApplicationIcon>DotDumper.ico</ApplicationIcon>\r\n  </PropertyGroup>\r\n  <ItemGroup>\r\n    <Reference Include=\"Microsoft.VisualBasic\" />\r\n    <Reference Include=\"PeNet, Version=2.9.9.0, Culture=neutral, PublicKeyToken=6cf2bfba59bcfb3f, processorArchitecture=MSIL\">\r\n      <HintPath>..\\packages\\PeNet.2.9.9\\lib\\net48\\PeNet.dll</HintPath>\r\n    </Reference>\r\n    <Reference Include=\"PeNet.Asn1, Version=2.0.0.0, Culture=neutral, PublicKeyToken=1e2e3568f0050bf5, processorArchitecture=MSIL\">\r\n      <HintPath>..\\packages\\PeNet.Asn1.2.0.0\\lib\\net48\\PeNet.Asn1.dll</HintPath>\r\n    </Reference>\r\n    <Reference Include=\"System\" />\r\n    <Reference Include=\"System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL\">\r\n      <HintPath>..\\packages\\System.Buffers.4.5.1\\lib\\net461\\System.Buffers.dll</HintPath>\r\n    </Reference>\r\n    <Reference Include=\"System.Core\" />\r\n    <Reference Include=\"System.Diagnostics.Process, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\r\n      <HintPath>..\\packages\\System.Diagnostics.Process.4.3.0\\lib\\net461\\System.Diagnostics.Process.dll</HintPath>\r\n      <Private>True</Private>\r\n      <Private>True</Private>\r\n    </Reference>\r\n    <Reference Include=\"System.Drawing\" />\r\n    <Reference Include=\"System.Memory, Version=4.0.1.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL\">\r\n      <HintPath>..\\packages\\System.Memory.4.5.5\\lib\\net461\\System.Memory.dll</HintPath>\r\n    </Reference>\r\n    <Reference Include=\"System.Numerics\" />\r\n    <Reference Include=\"System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\r\n      <HintPath>..\\packages\\System.Numerics.Vectors.4.5.0\\lib\\net46\\System.Numerics.Vectors.dll</HintPath>\r\n    </Reference>\r\n    <Reference Include=\"System.Runtime.CompilerServices.Unsafe, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\r\n      <HintPath>..\\packages\\System.Runtime.CompilerServices.Unsafe.6.0.0\\lib\\net461\\System.Runtime.CompilerServices.Unsafe.dll</HintPath>\r\n    </Reference>\r\n    <Reference Include=\"System.Security\" />\r\n    <Reference Include=\"System.Security.Cryptography.Pkcs, Version=6.0.0.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL\">\r\n      <HintPath>..\\packages\\System.Security.Cryptography.Pkcs.6.0.1\\lib\\net461\\System.Security.Cryptography.Pkcs.dll</HintPath>\r\n    </Reference>\r\n    <Reference Include=\"System.Web.Extensions\" />\r\n    <Reference Include=\"System.Xml.Linq\" />\r\n    <Reference Include=\"System.Data.DataSetExtensions\" />\r\n    <Reference Include=\"Microsoft.CSharp\" />\r\n    <Reference Include=\"System.Data\" />\r\n    <Reference Include=\"System.Net.Http\" />\r\n    <Reference Include=\"System.Xml\" />\r\n  </ItemGroup>\r\n  <ItemGroup>\r\n    <Compile Include=\"ArgumentHandler.cs\" />\r\n    <Compile Include=\"Config.cs\" />\r\n    <Compile Include=\"Helpers\\ArgumentHelper.cs\" />\r\n    <Compile Include=\"Helpers\\AssemblyMapper.cs\" />\r\n    <Compile Include=\"Helpers\\LogEntryHelper.cs\" />\r\n    <Compile Include=\"Helpers\\Serialise.cs\" />\r\n    <Compile Include=\"Helpers\\MissedAssemblyDumper.cs\" />\r\n    <Compile Include=\"Helpers\\StagnationHandler.cs\" />\r\n    <Compile Include=\"HookHandlers\\Activator\\ActivatorHooks.cs\" />\r\n    <Compile Include=\"HookHandlers\\Assembly\\AssemblyHooks.cs\" />\r\n    <Compile Include=\"HookHandlers\\Console\\ConsoleHooks.cs\" />\r\n    <Compile Include=\"HookHandlers\\Convert\\ConvertHooks.cs\" />\r\n    <Compile Include=\"HookHandlers\\Directory\\DirectoryHooks.cs\" />\r\n    <Compile Include=\"HookHandlers\\Environment\\EnvironmentHooks.cs\" />\r\n    <Compile Include=\"HookHandlers\\File\\FileHooks.cs\" />\r\n    <Compile Include=\"HookHandlers\\MethodBase\\MethodBaseHooks.cs\" />\r\n    <Compile Include=\"HookHandlers\\Path\\PathHooks.cs\" />\r\n    <Compile Include=\"HookHandlers\\Process\\ProcessHooks.cs\" />\r\n    <Compile Include=\"HookHandlers\\ResourceManager\\ResourceManagerHooks.cs\" />\r\n    <Compile Include=\"HookHandlers\\Thread\\ThreadHooks.cs\" />\r\n    <Compile Include=\"HookHandlers\\Type\\TypeHooks.cs\" />\r\n    <Compile Include=\"HookHandlers\\Type\\TypeHooksHelper.cs\" />\r\n    <Compile Include=\"Hooks\\Hook.cs\" />\r\n    <Compile Include=\"Helpers\\Hashes.cs\" />\r\n    <Compile Include=\"HookHandlers\\GenericHookHelper.cs\" />\r\n    <Compile Include=\"Hooks\\HookManager.cs\" />\r\n    <Compile Include=\"Hooks\\InteropFunctions.cs\" />\r\n    <Compile Include=\"Hooks\\OriginalManagedFunctions.cs\" />\r\n    <Compile Include=\"Hooks\\OriginalUnmanagedFunctions.cs\" />\r\n    <Compile Include=\"Logger.cs\" />\r\n    <Compile Include=\"Models\\Argument.cs\" />\r\n    <Compile Include=\"Models\\AssemblyObject.cs\" />\r\n    <Compile Include=\"Models\\Hash.cs\" />\r\n    <Compile Include=\"Models\\LogEntry.cs\" />\r\n    <Compile Include=\"Models\\UnmanagedMethodInfo.cs\" />\r\n    <Compile Include=\"Pipes\\PipeManager.cs\" />\r\n    <Compile Include=\"Program.cs\" />\r\n    <Compile Include=\"Properties\\AssemblyInfo.cs\" />\r\n    <Compile Include=\"Helpers\\RaceConditionHandler.cs\" />\r\n  </ItemGroup>\r\n  <ItemGroup>\r\n    <None Include=\"app.config\" />\r\n    <None Include=\"packages.config\" />\r\n  </ItemGroup>\r\n  <ItemGroup>\r\n    <Content Include=\"DotDumper.ico\" />\r\n  </ItemGroup>\r\n  <Import Project=\"$(MSBuildToolsPath)\\Microsoft.CSharp.targets\" />\r\n</Project>"
  },
  {
    "path": "DotDumper/Helpers/ArgumentHelper.cs",
    "content": "﻿using System;\r\nusing System.Collections;\r\nusing System.Collections.Generic;\r\nusing System.Linq;\r\nusing System.Reflection;\r\nusing DotDumper.HookHandlers;\r\nusing DotDumper.Models;\r\n\r\nnamespace DotDumper.Helpers\r\n{\r\n    /// <summary>\r\n    /// This class is used to save and handle arguments from functions\r\n    /// </summary>\r\n    class ArgumentHelper\r\n    {\r\n        /// <summary>\r\n        /// Verifies if a given hash object occurs in the given list of hashes. Existance of the same hash is based on the included SHA-256 hash in the hash object, regardless of the casing. As such, two different objects based on the same file will be seen as duplicates in the same way as the same object will be seen as a duplicate when it is provided as an argument whilst also being in the list.\r\n        /// </summary>\r\n        /// <param name=\"hashes\">The list of hashes, which will be used to check if the given hash is present in this list</param>\r\n        /// <param name=\"hash\">The hash to check if it is present in the given list</param>\r\n        /// <returns>True if the list contains the hash, false if not</returns>\r\n        public static bool ContainsHash(List<Hash> hashes, Hash hash)\r\n        {\r\n            //Iterate over all given hashes\r\n            foreach (Hash currentHash in hashes)\r\n            {\r\n                //If the currently iterated hash equals the given hash, regardless of the casing\r\n                if (currentHash.Sha256.Equals(hash.Sha256, StringComparison.InvariantCultureIgnoreCase))\r\n                {\r\n                    //Return true\r\n                    return true;\r\n                }\r\n            }\r\n            //If no matches were found while the iteration completed, return false\r\n            return false;\r\n        }\r\n\r\n        /// <summary>\r\n        /// This function saves the value of the given object. The way it is saved depends on the type and the size of the given object. Anything larger than 100 bytes is written to disk. Values are represented in textual form when possible, but some types (i.e. an Assembly object) is always saved to disk, regardless of its size.\r\n        /// </summary>\r\n        /// <param name=\"input\">The object to save</param>\r\n        /// <returns>A tuple with a string (the textual representation of the given input, which can be a reference to a file), and a list of hashes (which can be empty) for all files that were saved to the disk. This list can be empty, but will never be null</returns>\r\n        public static Tuple<string, List<Hash>> SaveValue(object input)\r\n        {\r\n            List<Hash> relatedFileHashes = new List<Hash>();\r\n            string value = \"\";\r\n            if (input is bool\r\n                    || input is byte\r\n                    || input is sbyte\r\n                    || input is char\r\n                    || input is decimal\r\n                    || input is double\r\n                    || input is float\r\n                    || input is int\r\n                    || input is uint\r\n                    || input is long\r\n                    || input is ulong\r\n                    || input is short\r\n                    || input is ushort\r\n                    || input is string)\r\n            {\r\n                if (input.ToString().Length > 100)\r\n                {\r\n                    //Save the file\r\n                    Tuple<string, Hash> result = GenericHookHelper.SaveFile(input.ToString());\r\n                    if (ContainsHash(relatedFileHashes, result.Item2) == false)\r\n                    {\r\n                        relatedFileHashes.Add(result.Item2);\r\n                    }\r\n                    value += \"\";\r\n                }\r\n                else\r\n                {\r\n                    value += input;\r\n                }\r\n            }\r\n            else if (input is Assembly)\r\n            {\r\n                Assembly assembly = (Assembly)input;\r\n                byte[] rawAssembly = GenericHookHelper.GetAsByteArray(assembly);\r\n                //Save the file, which returns the path to the file, where the file name is the SHA-256 hash of the given content\r\n                Tuple<string, Hash> result = GenericHookHelper.SaveFile(rawAssembly);\r\n                if (ContainsHash(relatedFileHashes, result.Item2) == false)\r\n                {\r\n                    relatedFileHashes.Add(result.Item2);\r\n                }\r\n                if (MissedAssemblyDumper.AssemblyHashes.Contains(result.Item2.Sha256) == false)\r\n                {\r\n                    MissedAssemblyDumper.AssemblyHashes.Add(result.Item2.Sha256);\r\n                }\r\n                value = \"\";\r\n            }\r\n            else if (input is IList)\r\n            {\r\n                Tuple<string, List<Hash>> result = HandleCollection(input);\r\n                value = result.Item1;\r\n                foreach (Hash hash in result.Item2)\r\n                {\r\n                    if (ContainsHash(relatedFileHashes, hash) == false)\r\n                    {\r\n                        relatedFileHashes.Add(hash);\r\n                    }\r\n                }\r\n            }\r\n            else if (input == null)\r\n            {\r\n                value = \"null\";\r\n            }\r\n            else\r\n            {\r\n                value = input.ToString();\r\n            }\r\n            return Tuple.Create(value, relatedFileHashes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Creats an argument object, based on the given input and the name of the argument\r\n        /// </summary>\r\n        /// <param name=\"input\">The value of the argument, of which the type is derrived</param>\r\n        /// <param name=\"argumentName\">The name of the argument</param>\r\n        /// <returns>An argument object that corresponds with the given arguments</returns>\r\n        public static Argument Create(object input, string argumentName)\r\n        {\r\n            Tuple<string, List<Hash>> result = SaveValue(input);\r\n            string argType = \"null\";\r\n            string argValue = \"null\";\r\n            if (input != null)\r\n            {\r\n                argType = input.GetType().FullName;\r\n            }\r\n            if (result.Item1 != null)\r\n            {\r\n                argValue = result.Item1;\r\n            }\r\n            return new Argument(argType, argumentName, argValue, result.Item2);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Creates a list of argument objects based on the given method, along with their values\r\n        /// </summary>\r\n        /// <param name=\"method\">The method to fetch the arguments from</param>\r\n        /// <param name=\"parameterValues\">The values of the parameters (in order of the method's parameters)</param>\r\n        /// <returns>A list of argument objects based on the two given arguments</returns>\r\n        public static List<Argument> Create(MethodBase method, object[] parameterValues)\r\n        {\r\n            List<Argument> arguments = new List<Argument>();\r\n\r\n            if (method != null && parameterValues != null)\r\n            {\r\n                ParameterInfo[] parameterInfos = method.GetParameters();\r\n                for (int i = 0; i < parameterInfos.Length; i++)\r\n                {\r\n                    object parameter;\r\n                    if (parameterValues.Length <= i)\r\n                    {\r\n                        parameter = null;\r\n                    }\r\n                    else\r\n                    {\r\n                        parameter = parameterValues[i];\r\n                    }\r\n\r\n                    string type = \"null\";\r\n                    string name = \"null\";\r\n                    if (parameterInfos[i] != null)\r\n                    {\r\n                        type = parameterInfos[i].ParameterType.FullName;\r\n                        name = parameterInfos[i].Name;\r\n                    }\r\n\r\n                    Tuple<string, List<Hash>> result = SaveValue(parameter);\r\n                    string value = \"null\";\r\n                    if (result.Item1 != null)\r\n                    {\r\n                        value = result.Item1;\r\n                    }\r\n                    Argument argument = new Argument(type, name, value, result.Item2);\r\n                    arguments.Add(argument);\r\n                }\r\n            }\r\n            return arguments;\r\n        }\r\n\r\n        /// <summary>\r\n        /// Handles a collection, either by converting it into a string, or by saving it to the disk and returning the location as if it were the value, together with a brief explanation).\r\n        /// </summary>\r\n        /// <param name=\"collection\">The collection to handle</param>\r\n        /// <returns>The handled collection in the form of a string (as Item1 in the tuple), as well as a list of file hashes of related files (if any, as Item2 in the tuple)</returns>\r\n        private static Tuple<string, List<Hash>> HandleCollection(object collection)\r\n        {\r\n            //Initialise the list of related files\r\n            List<Hash> files = new List<Hash>();\r\n            //Initialise the data variable\r\n            string data = \"\";\r\n\r\n            //Any type of collection with a length of more than 100 indices is saved to disk, as converting and printing large arrays can consume a lot of time\r\n            if (((IList)collection).Count > 100)\r\n            {\r\n                //Save the file, which returns a tuple with the path to the file, and a hash object with the MD-5, SHA-1, and SHA-256 hash of the file, where the file name is the SHA-256 hash of the given content\r\n                Tuple<string, Hash> result = GenericHookHelper.SaveFile((byte[])collection);\r\n                //Add it to the list of files\r\n                if (ContainsHash(files, result.Item2) == false)\r\n                {\r\n                    files.Add(result.Item2);\r\n                }\r\n                //Inform the user that the data is stored in a file\r\n                data += \"DotDumper::\" + result.Item2.Sha256 + \"  \"; //Note: the last two characters are removed once the function returns\r\n            }\r\n            else //Handle collections that are less than 100 indices in size\r\n            {\r\n                //If the type is an object collection, it needs to be handled in a specific way\r\n                if (collection is object[] || collection is IList<object>)\r\n                {\r\n                    if (collection is IList<object>)\r\n                    {\r\n                        collection = ((IList<object>)collection).ToArray();\r\n                    }\r\n\r\n                    if (((object[])collection).Length == 0)\r\n                    {\r\n                        data += \"DotDumper::empty  \"; //Note: the last two characters are removed once the function returns\r\n                    }\r\n                    else\r\n                    {\r\n                        foreach (object subParameter in (object[])collection)\r\n                        {\r\n                            if (subParameter is object[] || subParameter is IList<object>)\r\n                            {\r\n                                //Recursive call if the array contains an array\r\n                                Tuple<string, List<Hash>> result = HandleCollection(subParameter);\r\n                                //Get the data from the tuple, and append it to this one\r\n                                data += result.Item1;\r\n                                //Add all file hashes to the current file list\r\n                                foreach (Hash hash in result.Item2)\r\n                                {\r\n                                    if (ContainsHash(files, hash) == false)\r\n                                    {\r\n                                        files.Add(hash);\r\n                                    }\r\n                                }\r\n                            }\r\n                            else if (subParameter == null)\r\n                            {\r\n                                data += \"null\";\r\n                            }\r\n                            else\r\n                            {\r\n                                string subParameterType = subParameter.GetType().FullName;\r\n                                data += subParameterType + \" \" + subParameter;\r\n                            }\r\n                            data += \", \";\r\n                        }\r\n                    }\r\n                }\r\n                else\r\n                {\r\n                    foreach (var subParameter in (IList)collection)\r\n                    {\r\n                        if (subParameter == null)\r\n                        {\r\n                            data += \"null\";\r\n                        }\r\n                        else\r\n                        {\r\n                            data += subParameter;\r\n                        }\r\n                        data += \", \";\r\n                    }\r\n                }\r\n            }\r\n            //Remove the last comma and space, after which a curly bracket is appended\r\n            data = data.Substring(0, data.Length - 2);\r\n            //Return the value as a tuple\r\n            return Tuple.Create(data, files);\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/Helpers/AssemblyMapper.cs",
    "content": "﻿using System;\r\nusing System.Collections.Generic;\r\nusing System.Reflection;\r\nusing DotDumper.HookHandlers;\r\nusing DotDumper.Hooks;\r\nusing DotDumper.Models;\r\n\r\nnamespace DotDumper.Helpers\r\n{\r\n    /// <summary>\r\n    /// This class is used to map a (line of a) stack trace to an assembly object\r\n    /// </summary>\r\n    class AssemblyMapper\r\n    {\r\n        /// <summary>\r\n        /// Gets the function's signature as a string, formatted as \"Full.Class.Path.With.Function(ArgumentType argumentName)\". An example is \"System.Reflection.Assembly.Load(Byte[] rawAssembly)\".\r\n        /// </summary>\r\n        /// <returns>The hook's full name as a string, i.e. \"System.Reflection.Assembly.Load(Byte[] rawAssembly)\"</returns>\r\n        private static string GetMethod(MethodInfo method)\r\n        {\r\n            string output = method.DeclaringType + \".\" + method.Name + \"(\";\r\n            foreach (ParameterInfo parameterInfo in method.GetParameters())\r\n            {\r\n                output += parameterInfo.ParameterType.Name + \" \" + parameterInfo.Name + \", \";\r\n            }\r\n            if (method.GetParameters().Length > 0)\r\n            {\r\n                output = output.Substring(0, output.Length - 2);\r\n            }\r\n            output += \")\";\r\n\r\n            return output;\r\n        }\r\n\r\n        /// <summary>\r\n        /// Creates the mapping as a dictionary where the keys equal a function signature as a string, and an assembly object as the value. Hooks are set prior to returning from this function!\r\n        /// </summary>\r\n        /// <returns>The mapping to use when matching a (line of a) stack trace</returns>\r\n        public static Dictionary<string, Assembly> CreateMapping()\r\n        {\r\n            HookManager.UnHookAll();\r\n            Dictionary<string, Assembly> mapping = new Dictionary<string, Assembly>();\r\n            Assembly[] assemblies = AppDomain.CurrentDomain.GetAssemblies();\r\n            foreach (Assembly assembly in assemblies)\r\n            {\r\n                //Omit framework related objects, as well as DotDumper itself\r\n                if (assembly.GlobalAssemblyCache ||\r\n                    assembly.GetName().FullName.ToLowerInvariant().Contains(\"dotdumper\"))\r\n                {\r\n                    continue;\r\n                }\r\n                Type[] types = assembly.GetTypes();\r\n                foreach (Type type in types)\r\n                {\r\n                    //Gets all declared (omitting inherited functions to avoid duplicates) public, non-public, normal, and static functions\r\n                    MethodInfo[] methodInfos = type.GetMethods(BindingFlags.DeclaredOnly | BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Static | BindingFlags.Instance);\r\n                    foreach (MethodInfo methodInfo in methodInfos)\r\n                    {\r\n                        if (methodInfo.DeclaringType.Assembly == assembly)\r\n                        {\r\n                            string functionSignature = GetMethod(methodInfo);\r\n                            if (mapping.ContainsKey(functionSignature) == false)\r\n                            {\r\n                                mapping.Add(functionSignature, assembly);\r\n                            }\r\n\r\n                        }\r\n                    }\r\n                }\r\n            }\r\n            HookManager.HookAll();\r\n            return mapping;\r\n        }\r\n\r\n        /// <summary>\r\n        /// Get the assembly object where the referenced function of the stack trace line resides. If it is not found, null is returned!\r\n        /// </summary>\r\n        /// <param name=\"stackTraceLine\">The raw stack trace line to match</param>\r\n        /// <returns>The assembly object if it can be found, null if it cannot be found</returns>\r\n        public static Assembly ProcessStackTraceLine(string stackTraceLine)\r\n        {\r\n            //Create the mapping, ensuring it is as up to date as possible\r\n            Dictionary<string, Assembly> mapping = CreateMapping();\r\n            //Remove leading and trailing whitespace\r\n            stackTraceLine = stackTraceLine.Trim();\r\n            //Skip \"at \" from the line in the beginning\r\n            stackTraceLine = stackTraceLine.Substring(3);\r\n            //Declare the corresponding Assembly object\r\n            Assembly assembly = null;\r\n            //Get the Assembly object from the mapping, which returns null if it is not present\r\n            mapping.TryGetValue(stackTraceLine, out assembly);\r\n            //Return the Assembly object (or null, if it couldn't be found)\r\n            return assembly;\r\n        }\r\n\r\n        /// <summary>\r\n        /// Process a list of stack traces to get a list of assembly objects (concatenated as a string in their simple form) that are used, in the same order, excluding duplicates. A duplicate is when two stack trace lines originate from the same assembly object.\r\n        /// </summary>\r\n        /// <param name=\"stackTraceLines\">The stack trace lines to use</param>\r\n        /// <returns>A string representation of the linked assembly objects, excluding duplicates, in the same order as the given list</returns>\r\n        public static string ProcessStackTraceOld(List<string> stackTraceLines)\r\n        {\r\n            string output = \"\";\r\n            string lastItem = \"\";\r\n\r\n            foreach (string stackTraceLine in stackTraceLines)\r\n            {\r\n                Assembly assembly = ProcessStackTraceLine(stackTraceLine);\r\n\r\n                string currentItem;\r\n                if (assembly != null)\r\n                {\r\n                    currentItem = assembly.FullName;\r\n                }\r\n                else\r\n                {\r\n                    currentItem = \"[DotDumper or DotNet Framework related assembly]\";\r\n                }\r\n\r\n\r\n                if (currentItem.Equals(lastItem, StringComparison.InvariantCultureIgnoreCase) == false)\r\n                {\r\n                    output += currentItem + \"\\n\";\r\n                    lastItem = currentItem;\r\n                }\r\n            }\r\n            return output;\r\n        }\r\n\r\n        /// <summary>\r\n        /// Process a list of stack traces to get a list of assembly objects (concatenated as a string in their simple form) that are used, in the same order, excluding duplicates. A duplicate is when two stack trace lines originate from the same assembly object.\r\n        /// </summary>\r\n        /// <param name=\"stackTraceLines\">The stack trace lines to use</param>\r\n        /// <returns>A string representation of the linked assembly objects, excluding duplicates, in the same order as the given list</returns>\r\n        public static Tuple<Assembly, List<AssemblyObject>> ProcessStackTrace(List<string> stackTraceLines)\r\n        {\r\n            List<AssemblyObject> assemblyObjects = new List<AssemblyObject>();\r\n            Assembly originatingAssembly = null;\r\n            foreach (string stackTraceLine in stackTraceLines)\r\n            {\r\n                Assembly assembly = ProcessStackTraceLine(stackTraceLine);\r\n                //Default values, if the assembly is part of the GAC or if it refers to DotDumper\r\n                string name = \"[DotDumper or DotNet Framework related assembly]\";\r\n                string hash = \"[none]\";\r\n\r\n                //If the response from the function is not null, an object matches\r\n                if (assembly != null)\r\n                {\r\n                    //Set the hash and the name for the given assembly object\r\n                    hash = Hashes.Sha256(GenericHookHelper.GetAsByteArray(assembly));\r\n                    name = assembly.GetName().Name;\r\n                    //Set the originating assembly as the first non-GAC non-DotDumper assembly\r\n                    if (originatingAssembly == null)\r\n                    {\r\n                        originatingAssembly = assembly;\r\n                    }\r\n                }\r\n\r\n                //Check if this object is not the same as the last in the list\r\n                if (assemblyObjects.Count == 0)\r\n                {\r\n                    AssemblyObject assemblyObject = new AssemblyObject(hash, name);\r\n                    assemblyObjects.Add(assemblyObject);\r\n                }\r\n                else\r\n                {\r\n                    if (assemblyObjects[assemblyObjects.Count - 1].Hash.Equals(hash, StringComparison.InvariantCultureIgnoreCase) == false)\r\n                    {\r\n                        AssemblyObject assemblyObject = new AssemblyObject(hash, name);\r\n                        assemblyObjects.Add(assemblyObject);\r\n                    }\r\n                }\r\n\r\n\r\n            }\r\n            return Tuple.Create(originatingAssembly, assemblyObjects);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Checks if a the most recent call of a given list of strack trace lines is coming from a stage of a sample, or from DotDumper, or a GAC module\r\n        /// </summary>\r\n        /// <param name=\"stackTraceLines\">The stack trace to use</param>\r\n        /// <returns>True if the most recent call is coming from a sample stage, false if it is coming from DotDumper, or a GAC module</returns>\r\n        public static bool IsComingFromSample(List<string> stackTraceLines)\r\n        {\r\n            /*\r\n             * Get the last call from the trace, as this is the origin of the hook location. Use the last call from the trace to check if it matches any key in the mapping\r\n             */\r\n            Assembly assembly = ProcessStackTraceLine(stackTraceLines[0]);\r\n            if (assembly == null)\r\n            {\r\n                //Null means it didn't match a binary, since it is part of the framework's core, or DotDumper internally\r\n                return false;\r\n            }\r\n            {\r\n                //Not null means it matched with one of the binaries\r\n                return true;\r\n            }\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/Helpers/Hashes.cs",
    "content": "﻿using System.Linq;\r\nusing System.Security.Cryptography;\r\nusing DotDumper.Hooks;\r\nusing PeNet;\r\n\r\nnamespace DotDumper.Helpers\r\n{\r\n    /// <summary>\r\n    /// This class contains functions to hash a byte array, after which the hash is returned as a string\r\n    /// </summary>\r\n    class Hashes\r\n    {\r\n        /// <summary>\r\n        /// Calculates the MD-5 hash of the given byte array \r\n        /// </summary>\r\n        /// <param name=\"data\">The data to hash</param>\r\n        /// <returns>The MD-5 hash as a string</returns>\r\n        public static string Md5(byte[] data)\r\n        {\r\n            MD5 md5 = MD5.Create();\r\n            return CalculateHash(md5, data);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Calculates the SHA-1 hash of the given byte array \r\n        /// </summary>\r\n        /// <param name=\"data\">The data to hash</param>\r\n        /// <returns>The SHA-1 hash as a string</returns>\r\n        public static string Sha1(byte[] data)\r\n        {\r\n            SHA1 sha1 = SHA1.Create();\r\n            return CalculateHash(sha1, data);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Calculates the SHA-256 hash of the given byte array \r\n        /// </summary>\r\n        /// <param name=\"data\">The data to hash</param>\r\n        /// <returns>The SHA-256 hash as a string</returns>\r\n        public static string Sha256(byte[] data)\r\n        {\r\n            SHA256 sha256 = SHA256.Create();\r\n            return CalculateHash(sha256, data);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Calculates the SHA-384 hash of the given byte array \r\n        /// </summary>\r\n        /// <param name=\"data\">The data to hash</param>\r\n        /// <returns>The SHA-384 hash as a string</returns>\r\n        public static string Sha384(byte[] data)\r\n        {\r\n            SHA384 sha384 = SHA384.Create();\r\n            return CalculateHash(sha384, data);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Calculates the SHA-512 hash of the given byte array \r\n        /// </summary>\r\n        /// <param name=\"data\">The data to hash</param>\r\n        /// <returns>The SHA-512 hash as a string</returns>\r\n        public static string Sha512(byte[] data)\r\n        {\r\n            SHA512 sha512 = SHA512.Create();\r\n            return CalculateHash(sha512, data);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Calculates the TypeRef hash of the given byte array. Hooks are set prior to returning from this function!\r\n        /// </summary>\r\n        /// <param name=\"data\">The data to hash</param>\r\n        /// <returns>The TypeRef hash as a string, or an empty string in case an error occurs (i.e. the input is not a valid PE file which targets the DotNet Framework)</returns>\r\n        public static string TypeRef(byte[] data)\r\n        {\r\n            HookManager.UnHookAll();\r\n            if (PeFile.TryParse(data, out PeFile peFile) == false)\r\n            {\r\n                return \"\";\r\n            }\r\n\r\n            if (peFile.IsDotNet == false)\r\n            {\r\n                return \"\";\r\n            }\r\n\r\n            string typeRefHash = peFile.TypeRefHash;\r\n            if (typeRefHash == null)\r\n            {\r\n                typeRefHash = \"\";\r\n            }\r\n            HookManager.HookAll();\r\n\r\n            return typeRefHash;\r\n        }\r\n\r\n        /// <summary>\r\n        /// Calculates the import hash of the given byte array. Hooks are set prior to returning from this function!\r\n        /// </summary>\r\n        /// <param name=\"data\">The data to hash</param>\r\n        /// <returns>The import hash as a string, or an empty string in case an error occurs (i.e. the input is not a valid PE file)</returns>\r\n        public static string ImportHash(byte[] data)\r\n        {\r\n            HookManager.UnHookAll();\r\n            if (PeFile.TryParse(data, out PeFile peFile) == false)\r\n            {\r\n                return \"\";\r\n            }\r\n\r\n            string importHash = peFile.ImpHash;\r\n            if (importHash == null)\r\n            {\r\n                importHash = \"\";\r\n            }\r\n            HookManager.HookAll();\r\n\r\n            return importHash;\r\n        }\r\n\r\n        /// <summary>\r\n        /// Calculates the authenticode hash (SHA-256 based) of the given byte array. Hooks are set prior to returning from this function!\r\n        /// </summary>\r\n        /// <param name=\"data\">The data to hash</param>\r\n        /// <returns>The authenticode hash (SHA-256 based) as a string, or an empty string in case an error occurs (i.e. the input is not a valid PE)</returns>\r\n        public static string AuthenticodeSha256(byte[] data)\r\n        {\r\n            return Authenticode(data, SHA256.Create());\r\n        }\r\n\r\n        /// <summary>\r\n        /// Calculates the authenticode hash (based on the provided hash algorithm) of the given byte array. Hooks are set prior to returning from this function!\r\n        /// </summary>\r\n        /// <param name=\"data\">The data to hash</param>\r\n        /// <param name=\"hashAlgorithm\">The hashing algorithm to use</param>\r\n        /// <returns>The authenticode hash (based on the provided hash algorithm), or an empty string in case an error occurs (i.e. the input is not a valid PE file)</returns>\r\n        private static string Authenticode(byte[] data, HashAlgorithm hashAlgorithm)\r\n        {\r\n            HookManager.UnHookAll();\r\n            if (PeFile.TryParse(data, out PeFile peFile) == false)\r\n            {\r\n                return \"\";\r\n            }\r\n\r\n            string authenticode = peFile.Authenticode.ComputeAuthenticodeHashFromPeFile(hashAlgorithm).ToList().ToHexString();\r\n            if (authenticode == null || authenticode.Length < 2)\r\n            {\r\n                authenticode = authenticode.Substring(2);\r\n            }\r\n            else\r\n            {\r\n                authenticode = \"\";\r\n            }\r\n            HookManager.HookAll();\r\n\r\n            return authenticode;\r\n        }\r\n\r\n        /// <summary>\r\n        /// This function calculates the hash of the given data, using the given hashing algorithm\r\n        /// </summary>\r\n        /// <param name=\"hashAlgorithm\">The hashing algorithm to use</param>\r\n        /// <param name=\"data\">The data to hash</param>\r\n        /// <returns>The hash of the data as a string, based on the given hash algorithm</returns>\r\n        private static string CalculateHash(HashAlgorithm hashAlgorithm, byte[] data)\r\n        {\r\n            string hash = \"\";\r\n\r\n            if (data == null || hashAlgorithm == null)\r\n            {\r\n                return hash;\r\n            }\r\n\r\n            byte[] rawHash = hashAlgorithm.ComputeHash(data);\r\n\r\n            for (int i = 0; i < rawHash.Length; i++)\r\n            {\r\n                hash += rawHash[i].ToString(\"x2\");\r\n            }\r\n\r\n            return hash;\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/Helpers/LogEntryHelper.cs",
    "content": "﻿using System;\r\nusing System.Collections.Generic;\r\nusing System.Reflection;\r\nusing DotDumper.HookHandlers;\r\nusing DotDumper.Hooks;\r\nusing DotDumper.Models;\r\n\r\nnamespace DotDumper.Helpers\r\n{\r\n    /// <summary>\r\n    /// This class is used to create DotDumper.Model.LogEntry objects based on as few parameters as possible\r\n    /// </summary>\r\n    class LogEntryHelper\r\n    {\r\n        /// <summary>\r\n        /// Creates a log entry object based on the given exception, with the given stack trace offset from the caller's position\r\n        /// </summary>\r\n        /// <param name=\"stackTraceOffset\">The amount of layers away from the original call flow, based on the caller's position</param>\r\n        /// <param name=\"ex\">The exception to base the log entry object on</param>\r\n        /// <returns>A log entry based on the given values</returns>\r\n        public static LogEntry Create(int stackTraceOffset, Exception ex)\r\n        {\r\n            stackTraceOffset++;\r\n            LogEntry entry = Create(stackTraceOffset, ex.TargetSite, null, ex);\r\n            return entry;\r\n        }\r\n\r\n        /// <summary>\r\n        /// Creates a log entry for an unmanaged function, along with its argument and return values\r\n        /// </summary>\r\n        /// <param name=\"unmanagedMethodInfo\">The unmanaged methodinfo object, corresponding to the original function that was hooked</param>\r\n        /// <param name=\"parameterValues\">An array of objects with the values of the function's arguments</param>\r\n        /// <param name=\"returnValue\">The value of the function's return value</param>\r\n        /// <returns>A log entry based on the given values</returns>\r\n        public static LogEntry Create(UnmanagedMethodInfo unmanagedMethodInfo, object[] parameterValues, object returnValue)\r\n        {\r\n            MethodInfo methodInfo = HookManager.GetMethodInfo(typeof(InteropFunctions), unmanagedMethodInfo.MethodName, unmanagedMethodInfo.ParameterTypes);\r\n            //A negative value for the stack trace, as the wrong value is obtained since this call is invoked based on async information that is shared via the unmanaged function hooks that share via a named pipe \r\n            return Create(-1, methodInfo, parameterValues, returnValue);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Creates a log entry based on the given stack trace offset (from the caller's position), method, the method values, and the return value of said method\r\n        /// </summary>\r\n        /// <param name=\"stackTraceOffset\">The amount of layers away from the original call flow, based on the caller's position. A value less than 0 is used to indicate that the stack trace is to be ignored (done for unmanaged function hooks, as the function is obtained from a different location than the actual call comes from)</param>\r\n        /// <param name=\"method\">The method that is of importance to log</param>\r\n        /// <param name=\"parameterValues\">The values of said method's parameters</param>\r\n        /// <param name=\"returnValue\">The return value of the function (use null if it's a void)</param>\r\n        /// <returns>A log entry based on the given values</returns>\r\n        public static LogEntry Create(int stackTraceOffset, MethodBase method, object[] parameterValues, object returnValue)\r\n        {\r\n            //Gets a list of arguments based on the given function\r\n            List<Argument> functionArguments = ArgumentHelper.Create(method, parameterValues);\r\n            //Initialises a list of related files\r\n            List<Hash> relatedFileHashes = new List<Hash>();\r\n\r\n            //Iterate over all extracted arguments\r\n            foreach (Argument argument in functionArguments)\r\n            {\r\n                //Iterate over all hashes\r\n                foreach (Hash hash in argument.RelatedFileHashes)\r\n                {\r\n                    //If there is no such hash in the list, add it. Otherwise, ignore it\r\n                    if (ArgumentHelper.ContainsHash(relatedFileHashes, hash) == false)\r\n                    {\r\n                        relatedFileHashes.Add(hash);\r\n                    }\r\n                }\r\n            }\r\n\r\n            //Declare and initialise the stack trace variable\r\n            List<string> stackTrace = new List<string>();\r\n\r\n            /*\r\n             * If the value is negative, its a hook for an unmanaged function and the only obtainable stack trace is useless. If it is zero or higher, its a managed hook\r\n             */\r\n            if (stackTraceOffset >= 0)\r\n            {\r\n                //Increment the stack trace offset, since this is another function deep into the trace\r\n                stackTraceOffset++;\r\n                //Get the stack trace\r\n                stackTrace = GenericHookHelper.GetStackTraceRaw(stackTraceOffset);\r\n            }\r\n\r\n            //Get the assembly and assembly object information based on the stack trace\r\n            Tuple<Assembly, List<AssemblyObject>> result = AssemblyMapper.ProcessStackTrace(stackTrace);\r\n\r\n            //Declare the originating assembly variable\r\n            Assembly originatingAssembly = null;\r\n\r\n            /*\r\n             * If the first tuple item (being the Assembly object) is null, the call is coming from either the DotNet Framework, or from DotDumper's code base.\r\n             * If the value is not-null, it is assigned.\r\n             */\r\n            if (result.Item1 == null)\r\n            {\r\n                HookManager.UnHookAll();\r\n                originatingAssembly = Assembly.GetAssembly(typeof(Program));\r\n                HookManager.HookAll();\r\n            }\r\n            else\r\n            {\r\n                originatingAssembly = result.Item1;\r\n            }\r\n\r\n\r\n            //Get the name from the originating assembly\r\n            string originatingAssemblyName = originatingAssembly.GetName().Name;\r\n\r\n            //Get the raw assembly as an unboxed byte array\r\n            byte[] rawAssembly = GenericHookHelper.GetAsByteArray(originatingAssembly);\r\n\r\n            //Get the hashes based on the given raw assembly byte array\r\n            string md5 = Hashes.Md5(rawAssembly);\r\n            string sha1 = Hashes.Sha1(rawAssembly);\r\n            string sha256 = Hashes.Sha256(rawAssembly);\r\n            string sha384 = Hashes.Sha384(rawAssembly);\r\n            string sha512 = Hashes.Sha512(rawAssembly);\r\n            string typeRef = Hashes.TypeRef(rawAssembly);\r\n            string importHash = Hashes.ImportHash(rawAssembly);\r\n            string authenticodeSha256 = Hashes.AuthenticodeSha256(rawAssembly);\r\n            //Create a hash object to store the values in\r\n            Hash originatingAssemblyHash = new Hash(md5, sha1, sha256, sha384, sha512, typeRef, importHash, authenticodeSha256);\r\n\r\n            //Get the originating assembly version\r\n            string originatingAssemblyVersion = originatingAssembly.GetName().Version.ToString();\r\n\r\n            //Get the originating assembly resource names\r\n            List<string> originatingAssemblyResourceNames = new List<string>(originatingAssembly.GetManifestResourceNames());\r\n\r\n            //Get the call order, which is the second item from the tuple\r\n            List<AssemblyObject> assemblyCallOrder = result.Item2;\r\n\r\n            //Declare and assign a value to the parent assembly hash string\r\n            string parentAssemblyHash = \"[none]\";\r\n\r\n            //Iterate over all assembly objects in the call order\r\n            foreach (AssemblyObject assemblyObject in assemblyCallOrder)\r\n            {\r\n                //If the hash is not equal to none nor to the current originating hash, it is set as the parent\r\n                if (assemblyObject.Hash.Equals(\"[none]\", StringComparison.InvariantCultureIgnoreCase) == false\r\n                    && assemblyObject.Hash.Equals(originatingAssemblyHash.Sha256, StringComparison.InvariantCultureIgnoreCase) == false)\r\n                {\r\n                    parentAssemblyHash = assemblyObject.Hash;\r\n                    //There is no need to continue the iteration, since only the first parent is stored (and the rest is visible in the call order)\r\n                    break;\r\n                }\r\n            }\r\n\r\n            //Get the function name\r\n            string functionName = Serialise.Method(method);\r\n\r\n            //The return value is stored in an argument object, with a hardcoded name\r\n            Argument returnValueArg = ArgumentHelper.Create(returnValue, \"ReturnValue\");\r\n\r\n            //The return value can also be related to a file\r\n            foreach (Hash hash in returnValueArg.RelatedFileHashes)\r\n            {\r\n                //Iterate over all the hashes, and add the ones that aren't in the list yet\r\n                if (ArgumentHelper.ContainsHash(relatedFileHashes, hash) == false)\r\n                {\r\n                    relatedFileHashes.Add(hash);\r\n                }\r\n            }\r\n\r\n            //Return a new LogEntry object based on all the gathered information\r\n            return new LogEntry(originatingAssemblyName, originatingAssemblyHash, originatingAssemblyVersion, originatingAssemblyResourceNames, parentAssemblyHash, relatedFileHashes, functionName, functionArguments, returnValueArg, stackTrace, assemblyCallOrder);\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/Helpers/MissedAssemblyDumper.cs",
    "content": "﻿using System;\r\nusing System.Collections.Generic;\r\nusing System.Reflection;\r\nusing DotDumper.HookHandlers;\r\nusing DotDumper.Hooks;\r\nusing DotDumper.Models;\r\n\r\nnamespace DotDumper.Helpers\r\n{\r\n    /// <summary>\r\n    /// This class is used to dump missed assembly objects from memory to the disk\r\n    /// </summary>\r\n    class MissedAssemblyDumper\r\n    {\r\n        /// <summary>\r\n        /// A list which contains the (partial) names of the assemblies to exclude during periodic dumping\r\n        /// </summary>\r\n        public static List<string> ExcludedAssemblies { get; set; }\r\n\r\n        /// <summary>\r\n        /// SHA-256 hashes of raw Assembly objects (their byte[] representation) that have been written to the disk during the execution of this run of DotDumper\r\n        /// </summary>\r\n        public static List<string> AssemblyHashes { get; set; }\r\n\r\n        /// <summary>\r\n        /// The static constructor of the class ensures the class scoped list is always initialised prior to its usage\r\n        /// </summary>\r\n        static MissedAssemblyDumper()\r\n        {\r\n            //Initialise the lists\r\n            AssemblyHashes = new List<string>();\r\n            ExcludedAssemblies = new List<string>();\r\n\r\n            //Populate the list\r\n            ExcludedAssemblies.Add(\"dotdumper\");\r\n            ExcludedAssemblies.Add(\"penet\");\r\n            ExcludedAssemblies.Add(\"system.memory\");\r\n            ExcludedAssemblies.Add(\"system.runtime.compilerservices.unsafe\");\r\n            ExcludedAssemblies.Add(\"system.numerics.vectors\");\r\n            ExcludedAssemblies.Add(\"microsoft.generatedcode\");\r\n        }\r\n\r\n        /// <summary>\r\n        /// Dumps all loaded assemblies that haven't been dumped before and are not part of the Global Assembly Cache (GAC). This function removes all hooks, dumps the missing data, after which all hooks are set again.\r\n        /// </summary>\r\n        public static void Dump()\r\n        {\r\n            //Temporarily remove all hooks\r\n            HookManager.UnHookAll();\r\n\r\n            //If the original assembly is not null, it can be added to the list of hashes, this avoids the sample to show up as a \"missed\" assembly object\r\n            if (GenericHookHelper.OriginalAssembly != null)\r\n            {\r\n                //Get the raw bytes\r\n                byte[] sample = GenericHookHelper.GetAsByteArray(GenericHookHelper.OriginalAssembly);\r\n                //Unhook all hooks, as these are set after the previous call\r\n                HookManager.UnHookAll();\r\n                //Get the SHA-256 hash\r\n                string sampleSha256 = Hashes.Sha256(sample);\r\n                //Check if the list does not contain this item\r\n                if (AssemblyHashes.Contains(sampleSha256) == false)\r\n                {\r\n                    //Add the hash to the list\r\n                    AssemblyHashes.Add(sampleSha256);\r\n                }\r\n            }\r\n\r\n            //Declare and initialise the list for the saved assemblies\r\n            List<Hash> savedAssemblies = new List<Hash>();\r\n\r\n            //Get all the assemblies in the current domain\r\n            Assembly[] assemblies = AppDomain.CurrentDomain.GetAssemblies();\r\n            //Iterate over all assemblies within the current domain\r\n            foreach (Assembly assembly in assemblies)\r\n            {\r\n                //Omit DotDumper itself, as well as used (DotNet Framework related) libraries \r\n                if (ExcludeAssembly(assembly))\r\n                {\r\n                    continue;\r\n                }\r\n                try\r\n                {\r\n                    //Get the raw bytes of the assembly\r\n                    byte[] rawAssembly = GenericHookHelper.GetAsByteArray(assembly);\r\n                    //Unhook all hooks, as these are set via the previous call\r\n                    HookManager.UnHookAll();\r\n                    //Get the SHA-256 hash of the given assembly object's bytes\r\n                    string sha256 = Hashes.Sha256(rawAssembly);\r\n\r\n                    //Only save assemblies that haven't been saved before during this run\r\n                    if (AssemblyHashes.Contains(sha256) == false)\r\n                    {\r\n                        //Save the file, and store the SHA-256 hash in the list of processed assembly objects, and store the Hash object in the saved assemblies list\r\n                        Tuple<string, Hash> result = GenericHookHelper.SaveFile(rawAssembly);\r\n                        HookManager.UnHookAll();\r\n                        savedAssemblies.Add(result.Item2);\r\n                        AssemblyHashes.Add(result.Item2.Sha256);\r\n                    }\r\n                }\r\n                catch (Exception)\r\n                {\r\n                    //Ignore errors when trying to save an assembly object in its raw form. In some cases, DotNet Framework related assembly objects cause errors when attempting to save them, i.e. when they are dynamically generated\r\n                }\r\n            }\r\n\r\n            //If at least 1 assembly has been saved (and was thus missed), this should be logged\r\n            if (savedAssemblies.Count > 0)\r\n            {\r\n                //Create a nearly empty log entry object with the relevant information\r\n                LogEntry entry = new LogEntry(null, null, null, null, null, savedAssemblies, \"periodic assembly dumping\", null, null, null, null);\r\n                //Log the entry to all relevant logs\r\n                GenericHookHelper._Logger.Log(entry, false, false);\r\n            }\r\n            //Set all hooks prior to returning to the caller\r\n            HookManager.HookAll();\r\n        }\r\n\r\n        /// <summary>\r\n        /// Checks if the given assembly is to be excluded or not. It will be if either of the following is true: the given assembly object is null, the given assembly is part of the global assembly cache, or if the fullname matches (in full or partially) the name of any of the names in the exclusion list.\r\n        /// </summary>\r\n        /// <param name=\"assembly\">The assembly to check for</param>\r\n        /// <returns>True if the assembly is to be excluded, false if not</returns>\r\n        private static bool ExcludeAssembly(Assembly assembly)\r\n        {\r\n            //If the given assembly object is null, it is to be excluded\r\n            if (assembly == null)\r\n            {\r\n                return true;\r\n            }\r\n\r\n            //Excludes the assembly if it's part of the global assembly cache\r\n            if (assembly.GlobalAssemblyCache)\r\n            {\r\n                return true;\r\n            }\r\n\r\n            //Get the assembly name in lower case\r\n            string assemblyName = assembly.GetName().FullName.ToLowerInvariant();\r\n\r\n            //Iterate over all excluded assembly names\r\n            foreach (string excludedName in ExcludedAssemblies)\r\n            {\r\n                //If the current assembly name (in lower case) contains the excluded name (also in lower case), it is to be skipped\r\n                if (assemblyName.Contains(excludedName.ToLowerInvariant()))\r\n                {\r\n                    return true;\r\n                }\r\n            }\r\n\r\n            //The assembly is not to be skipped if its not meeting any of the skip criteria\r\n            return false;\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/Helpers/RaceConditionHandler.cs",
    "content": "﻿using System.Threading;\r\nusing DotDumper.Hooks;\r\nusing System;\r\nusing System.Collections.Generic;\r\n\r\nnamespace DotDumper.Helpers\r\n{\r\n    /// <summary>\r\n    /// This class handles the race condition that allows to rehook invoke related functions during their execution\r\n    /// </summary>\r\n    class RaceConditionHandler\r\n    {\r\n        /// <summary>\r\n        /// The dictionary that contains all timers (as multiple can be created via multiple threads), where a GUID is the key, and the timer object is the value\r\n        /// </summary>\r\n        private static readonly Dictionary<string, Timer> timers = new Dictionary<string, Timer>();\r\n\r\n        /// <summary>\r\n        /// This function unhooks the given hook based on its name, after which it waits 20 milliseconds. It then calls the timer callback function, which rehooks the given hook. The timer callback is only called once, after which the Timer object is destroyed.\r\n        /// </summary>\r\n        /// <param name=\"hookName\">The function to unhook and rehook</param>\r\n        public static void StartTimer(string hookName)\r\n        {\r\n            //Create a string with the GUID and the hook name, split by a pipe\r\n            string data = hookName + \"|\" + Guid.NewGuid().ToString();\r\n            //Unhook the hook\r\n            HookManager.UnHookByHookName(hookName);\r\n            //Create a timer object which calls the callback function once, after a 20 ms delay, using the data string as an argument\r\n            Timer timer = new Timer(TimerCallback, data, Config.RaceConditionDueTime, Timeout.Infinite); //Timeout.Infinite (aka -1) means no repeated calls, see https://docs.microsoft.com/en-us/dotnet/api/system.threading.timeout.infinite\r\n            //Add the timer to the dictionary\r\n            timers.Add(data, timer);\r\n\r\n        }\r\n\r\n        /// <summary>\r\n        /// The callback function for the timer that rehooks the unhooked function\r\n        /// </summary>\r\n        /// <param name=\"o\">The function argument has to be an argument, but it is actually a string array in this case. The format should be \"my-guid|hookName\"</param>\r\n        private static void TimerCallback(object o)\r\n        {\r\n            //Split the string into the GUID and function name respectively\r\n            string[] array = ((string)o).Split('|');\r\n            //Set the hook again\r\n            HookManager.HookByHookName(array[0]);\r\n            //Get the GUID\r\n            string guid = array[1];\r\n            //Remove the GUID from the dictionary\r\n            timers.Remove(guid);\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/Helpers/Serialise.cs",
    "content": "﻿using System.IO;\r\nusing System.Reflection;\r\nusing System.Web.Script.Serialization;\r\nusing System.Xml.Serialization;\r\nusing DotDumper.Hooks;\r\n\r\nnamespace DotDumper.Helpers\r\n{\r\n    /// <summary>\r\n    /// This class is used to convert a given object to JSON using the built-in JavaScriptSerializer object\r\n    /// </summary>\r\n    class Serialise\r\n    {\r\n        /// <summary>\r\n        /// Converts the given object into its JSON equivalent\r\n        /// </summary>\r\n        /// <param name=\"input\">The object to obtain the JSON equivalent from</param>\r\n        /// <returns>The JSON equivalent of the given object</returns>\r\n        public static string ToJson(object input)\r\n        {\r\n            //If the input is null, return null in string format\r\n            if (input == null)\r\n            {\r\n                return \"null\";\r\n            }\r\n            //Remove all hooks\r\n            HookManager.UnHookAll();\r\n            //Initialise a serialiser object\r\n            JavaScriptSerializer serialiser = new JavaScriptSerializer();\r\n            //Serialise the input\r\n            string result = serialiser.Serialize(input);\r\n            //Restore all hooks\r\n            HookManager.HookAll();\r\n            //Return the result\r\n            return result;\r\n        }\r\n\r\n        /// <summary>\r\n        /// Converts the given object into its XML equivalent\r\n        /// </summary>\r\n        /// <param name=\"input\">The object to obtain the XML equivalent from</param>\r\n        /// <returns>The XML equivalent of the given object</returns>\r\n        public static string ToXml(object input)\r\n        {\r\n            //If the input is null, return null in string format\r\n            if (input == null)\r\n            {\r\n                return \"null\";\r\n            }\r\n            //Remove all hooks\r\n            HookManager.UnHookAll();\r\n            //Initialise the serialiser objects\r\n            StringWriter stringWriter = new StringWriter();\r\n            XmlSerializer serialiser = new XmlSerializer(input.GetType());\r\n            //Serialise the input\r\n            serialiser.Serialize(stringWriter, input);\r\n            string result = stringWriter.ToString();\r\n            //Restore all hooks\r\n            HookManager.HookAll();\r\n            //Return the result\r\n            return result;\r\n\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the given method as a string, formatted as \"Full.ReturnType Full.Class.Path.With.Function(Complete.Argument.Type argumentName)\". An example is \"System.Reflection.Assembly System.Reflection.Assembly.Load(System.Byte[] rawAssembly)\".\r\n        /// </summary>\r\n        /// <returns>The method's full name as a string, i.e. \"System.Reflection.Assembly System.Reflection.Assembly.Load(System.Byte[] rawAssembly)\"</returns>\r\n        public static string Method(MethodBase method)\r\n        {\r\n            //Declare and initialise the output variable\r\n            string output = \"\";\r\n            //If the input is null, the output is set to null in string form, which is then returned\r\n            if (method == null)\r\n            {\r\n                return \"null\";\r\n            }\r\n            //If the method is a MethodInfo instance (rather than the MethodBase object that is expected in the function's argument), which is possible as the MethodInfo object inherits the MethodBase class, the return type is accessible, and is subsequently used in the output\r\n            if (method is MethodInfo)\r\n            {\r\n                output += ((MethodInfo)method).ReturnType.FullName + \" \";\r\n            }\r\n            //Get the declaring type, the functino name, and open the arguments bracket\r\n            output += method.DeclaringType + \".\" + method.Name + \"(\";\r\n\r\n            //Iterate over all parameters\r\n            foreach (ParameterInfo parameterInfo in method.GetParameters())\r\n            {\r\n                //Get the parameter type and name, and include a comma for the potential following argument\r\n                output += parameterInfo.ParameterType + \" \" + parameterInfo.Name + \", \";\r\n            }\r\n\r\n            //If there is at least 1 argument, and all argumguments have been iterated over\r\n            if (method.GetParameters().Length > 0)\r\n            {\r\n                //The last two characters are to be removed, which equal the comma and a space, as there is no following argument\r\n                output = output.Substring(0, output.Length - 2);\r\n            }\r\n            //The closing bracket is then added\r\n            output += \")\";\r\n\r\n            //And finally the output is returned\r\n            return output;\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/Helpers/StagnationHandler.cs",
    "content": "﻿using System;\r\nusing DotDumper.HookHandlers;\r\nusing DotDumper.Hooks;\r\nusing DotDumper.Models;\r\n\r\nnamespace DotDumper.Helpers\r\n{\r\n    /// <summary>\r\n    /// A class which contains the stagnation timer's callback function. This function is called with an interval that is defined upon the timer's creation (see program.cs in the project's root). \r\n    /// If a third interval of the given time span passes without an increase logged messages, the callback function ensures that DotDumper is shut down. This is done to escape situations where\r\n    /// process injection took place (often with native functions) and DotDumper erroneously waits for the function to return (even though it wont until the malware stops its own execution).\r\n    /// When using a sandbox, this cuts down the runtime to the point where it only runs if DotDumper is actually active, thus saving time.\r\n    /// </summary>\r\n    class StagnationHandler\r\n    {\r\n        /// <summary>\r\n        /// The amount of logs that were logged by the logger\r\n        /// </summary>\r\n        private static int _Count = 0;\r\n\r\n        /// <summary>\r\n        /// The stage of the handler, where 0 is the start, and 2 is the moment to trigger the termination clause. The stage is increased with 1 every time the callback function is called and the amount of logs (as saved in count) is equal to the amount of logs the logger saved.\r\n        /// </summary>\r\n        private static int _Stage = 0;\r\n\r\n        /// <summary>\r\n        /// The stagnation handler timer's callback function, which is called at every interval of the timer\r\n        /// </summary>\r\n        /// <param name=\"o\">Optional parameters, as specified by the interface, but not used by this instance of the timer</param>\r\n        public static void TimerCallback(object o)\r\n        {\r\n            //If the logging count and the current count are equal, raise the stage variable. The condition where the logging is empty is not a real case, as the reflective loading of the sample already creates a single log.\r\n            if (GenericHookHelper._Logger.Count == _Count)\r\n            {\r\n                _Stage++;\r\n            }\r\n            else //If the values are not equal, the local count variable is made equal to the amount of logs that were written, and the stage is set back to 0\r\n            {\r\n                _Count = GenericHookHelper._Logger.Count;\r\n                _Stage = 0;\r\n            }\r\n\r\n            //If the stage is equal to, or more than, two, it means that the timer has called this callback twice without the creation of a single log\r\n            if (_Stage >= 2)\r\n            {\r\n                //If the DEBUG variable set to false, it means it is running in a normal environment\r\n                if (Program.DEBUG == false)\r\n                {\r\n                    //Remove all hooks\r\n                    HookManager.UnHookAll();\r\n                    //Create a new exception with a message\r\n                    Exception ex = new Exception(\"DotDumper stagnated, and is shutting down!\");\r\n                    //Create a new log entry with the exception\r\n                    LogEntry entry = LogEntryHelper.Create(0, ex);\r\n                    //Log the entry\r\n                    GenericHookHelper._Logger.Log(entry, true, true);\r\n                    //Remove all hooks\r\n                    HookManager.UnHookAll();\r\n                    //Set the time a year ahead, forcing the sandbox to time out\r\n                    SetTime();\r\n                    //Exit normally, which is called directly as all hooks are removed\r\n                    Environment.Exit(0);\r\n                }\r\n            }\r\n        }\r\n\r\n        /// <summary>\r\n        /// Sets the system date and time to a year in the future, forcing the sandbox to time out of its runtime\r\n        /// </summary>\r\n        public static void SetTime()\r\n        {\r\n            //Declares and initialises the SystemTime structure with a future time\r\n            InteropFunctions.SystemTime updatedTime = new InteropFunctions.SystemTime\r\n            {\r\n                Year = (ushort)(2200),\r\n                Month = (ushort)12,\r\n                Day = (ushort)30,\r\n                Hour = (ushort)12,\r\n                Minute = (ushort)00,\r\n                Second = (ushort)0\r\n            };\r\n\r\n            //Set the time to next year, forcing the sandbox to time out\r\n            InteropFunctions.SetSystemTime(ref updatedTime);\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/HookHandlers/Activator/ActivatorHooks.cs",
    "content": "﻿using System;\r\nusing System.Configuration.Assemblies;\r\nusing System.Globalization;\r\nusing System.Reflection;\r\nusing System.Runtime.CompilerServices;\r\nusing System.Runtime.Remoting;\r\nusing System.Security.Policy;\r\nusing DotDumper.Hooks;\r\n\r\nnamespace DotDumper.HookHandlers\r\n{\r\n    class ActivatorHooks\r\n    {\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static ObjectHandle CreateComInstanceFromHookStringStringByteArrayAssemblyHashAlgorithm(string assemblyName, string typeName, byte[] hashValue, AssemblyHashAlgorithm hashAlgorithm)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            ObjectHandle result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                HookManager.UnHookByHookName(\"CreateComInstanceFromHookStringStringByteArrayAssemblyHashAlgorithm\");\r\n                //Call the original function\r\n                result = Activator.CreateComInstanceFrom(assemblyName, typeName, hashValue, hashAlgorithm);\r\n                HookManager.HookByHookName(\"CreateComInstanceFromHookStringStringByteArrayAssemblyHashAlgorithm\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ActivatorCreateComInstanceFromStringStringByteArrayAssemblyHashAlgorithm(), new object[] { assemblyName, typeName, hashValue, hashAlgorithm }, result);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static ObjectHandle CreateComInstanceFromHookStringString(string assemblyName, string typeName)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            ObjectHandle result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Within the DotNet framework, another CreateComInstance function is used, which is also hooked. To avoid duplicate entries in the logging, both are unhooked and rehooked\r\n                HookManager.UnHookByHookName(\"CreateComInstanceFromHookStringString\");\r\n                HookManager.UnHookByHookName(\"CreateComInstanceFromHookStringStringByteArrayAssemblyHashAlgorithm\");\r\n                //Call the original function\r\n                result = Activator.CreateComInstanceFrom(assemblyName, typeName);\r\n                HookManager.HookByHookName(\"CreateComInstanceFromHookStringString\");\r\n                HookManager.HookByHookName(\"CreateComInstanceFromHookStringStringByteArrayAssemblyHashAlgorithm\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ActivatorCreateComInstanceFromStringString(), new object[] { assemblyName, typeName }, result);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static object CreateInstanceHookType(Type type)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            object result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Double unhook due to DotNet internal wrappers, thereby avoiding double logging\r\n                HookManager.UnHookByHookName(\"CreateInstanceHookType\");\r\n                HookManager.UnHookByHookName(\"CreateInstanceHookTypeBool\");\r\n                //Call the original function\r\n                result = Activator.CreateInstance(type);\r\n                HookManager.HookByHookName(\"CreateInstanceHookType\");\r\n                HookManager.HookByHookName(\"CreateInstanceHookTypeBool\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ActivatorCreateInstanceTypeBool(), new object[] { type }, result);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static object CreateInstanceHookTypeBool(Type type, bool nonPublic)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            object result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                HookManager.UnHookByHookName(\"CreateInstanceHookTypeBool\");\r\n                //Call the original function\r\n                result = Activator.CreateInstance(type, nonPublic);\r\n                HookManager.HookByHookName(\"CreateInstanceHookTypeBool\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ActivatorCreateInstanceTypeBool(), new object[] { type, nonPublic }, result);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static ObjectHandle CreateInstanceHookActivationContext(ActivationContext activationContext)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            ObjectHandle result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                HookManager.UnHookByHookName(\"CreateInstanceHookActivationContext\");\r\n                //Call the original function\r\n                result = Activator.CreateInstance(activationContext);\r\n                HookManager.HookByHookName(\"CreateInstanceHookActivationContext\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ActivatorCreateInstanceActivationContext(), new object[] { activationContext }, result);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static object CreateInstanceHookTypeObjectArray(Type type, params object[] args)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            object result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Double unhook due to internal calling of the function to an overload\r\n                HookManager.UnHookByHookName(\"CreateInstanceHookTypeObjectArray\");\r\n                HookManager.UnHookByHookName(\"CreateInstanceHookTypeBindingFlagsBinderObjectArrayCultureInfoObjectArray\");\r\n                //Call the original function\r\n                result = Activator.CreateInstance(type, args);\r\n                HookManager.HookByHookName(\"CreateInstanceHookTypeObjectArray\");\r\n                HookManager.HookByHookName(\"CreateInstanceHookTypeBindingFlagsBinderObjectArrayCultureInfoObjectArray\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ActivatorCreateInstanceActivationContext(), new object[] { type, args }, result);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static object CreateInstanceHookStringString(string assemblyName, string typeName)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            object result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                HookManager.UnHookByHookName(\"CreateInstanceHookTypeBindingFlagsBinderObjectArrayCultureInfoObjectArray\");\r\n                //Call the original function\r\n                result = Activator.CreateInstance(assemblyName, typeName);\r\n                HookManager.HookByHookName(\"CreateInstanceHookTypeBindingFlagsBinderObjectArrayCultureInfoObjectArray\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ActivatorCreateInstanceStringString(), new object[] { assemblyName, typeName }, result);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static object CreateInstanceHookTypeBindingFlagsBinderObjectArrayCultureInfo(Type type, BindingFlags bindingAttr, Binder binder, object[] args, CultureInfo culture)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            object result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Double unhook due to an internal wrapper within the DotNet framework\r\n                HookManager.UnHookByHookName(\"CreateInstanceHookTypeBindingFlagsBinderObjectArrayCultureInfo\");\r\n                HookManager.UnHookByHookName(\"CreateInstanceHookTypeBindingFlagsBinderObjectArrayCultureInfoObjectArray\");\r\n                //Call the original function\r\n                result = Activator.CreateInstance(type, bindingAttr, binder, args, culture);\r\n                HookManager.HookByHookName(\"CreateInstanceHookTypeBindingFlagsBinderObjectArrayCultureInfo\");\r\n                HookManager.HookByHookName(\"CreateInstanceHookTypeBindingFlagsBinderObjectArrayCultureInfoObjectArray\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ActivatorCreateInstanceActivationContext(), new object[] { type, bindingAttr, binder, args, culture }, result);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static object CreateInstanceHookTypeBindingFlagsBinderObjectArrayCultureInfoObjectArray(Type type, BindingFlags bindingAttr, Binder binder, object[] args, CultureInfo culture, object[] activationAttributes)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            object result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                HookManager.UnHookByHookName(\"CreateInstanceHookTypeBindingFlagsBinderObjectArrayCultureInfoObjectArray\");\r\n                //Call the original function\r\n                result = Activator.CreateInstance(type, bindingAttr, binder, args, culture, activationAttributes);\r\n                HookManager.HookByHookName(\"CreateInstanceHookTypeBindingFlagsBinderObjectArrayCultureInfoObjectArray\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ActivatorCreateInstanceActivationContext(), new object[] { type, bindingAttr, binder, args, culture, activationAttributes }, result);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static ObjectHandle CreateInstanceHookStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArray(string assemblyName, string typeName, bool ignoreCase, BindingFlags bindingAttr, Binder binder, object[] args, CultureInfo culture, object[] activationAttributes)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            ObjectHandle result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                HookManager.UnHookByHookName(\"CreateInstanceHookStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArray\");\r\n                //Call the original function\r\n                result = Activator.CreateInstance(assemblyName, typeName, ignoreCase, bindingAttr, binder, args, culture, activationAttributes);\r\n                HookManager.HookByHookName(\"CreateInstanceHookStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArray\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ActivatorCreateInstanceStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArray(), new object[] { assemblyName, typeName, ignoreCase, bindingAttr, binder, args, culture, activationAttributes }, result);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static ObjectHandle CreateInstanceHookActivationContextStringArray(ActivationContext activationContext, string[] activationCustomData)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            ObjectHandle result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                HookManager.UnHookByHookName(\"CreateInstanceHookActivationContextStringArray\");\r\n                //Call the original function\r\n                result = Activator.CreateInstance(activationContext, activationCustomData);\r\n                HookManager.HookByHookName(\"CreateInstanceHookActivationContextStringArray\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ActivatorCreateInstanceActivationContextStringArray(), new object[] { activationContext, activationCustomData }, result);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static ObjectHandle CreateInstanceHookStringStringObjectArray(string assemblyName, string typeName, object[] activationAttributes)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            ObjectHandle result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                HookManager.UnHookByHookName(\"CreateInstanceHookStringStringObjectArray\");\r\n                //Call the original function\r\n                result = Activator.CreateInstance(assemblyName, typeName, activationAttributes);\r\n                HookManager.HookByHookName(\"CreateInstanceHookStringStringObjectArray\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ActivatorCreateInstanceStringStringObjectArray(), new object[] { assemblyName, typeName, activationAttributes }, result);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static ObjectHandle CreateInstanceHookAppDomainStringString(AppDomain domain, string assemblyName, string typeName)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            ObjectHandle result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                HookManager.UnHookByHookName(\"CreateInstanceHookAppDomainStringString\");\r\n                //Call the original function\r\n                result = Activator.CreateInstance(domain, assemblyName, typeName);\r\n                HookManager.HookByHookName(\"CreateInstanceHookAppDomainStringString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ActivatorCreateInstanceAppDomainStringString(), new object[] { domain, assemblyName, typeName }, result);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static ObjectHandle CreateInstanceHookStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence(string assemblyName, string typeName, bool ignoreCase, BindingFlags bindingAttr, Binder binder, object[] args, CultureInfo culture, object[] activationAttributes, Evidence securityInfo)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            ObjectHandle result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                HookManager.UnHookByHookName(\"CreateInstanceHookStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence\");\r\n                //Call the original function\r\n                result = Activator.CreateInstance(assemblyName, typeName, ignoreCase, bindingAttr, binder, args, culture, activationAttributes, securityInfo);\r\n                HookManager.HookByHookName(\"CreateInstanceHookStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ActivatorCreateInstanceStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence(), new object[] { assemblyName, typeName, ignoreCase, bindingAttr, binder, args, culture, activationAttributes, securityInfo }, result);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static ObjectHandle CreateInstanceHookAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArray(AppDomain domain, string assemblyName, string typeName, bool ignoreCase, BindingFlags bindingAttr, Binder binder, object[] args, CultureInfo culture, object[] activationAttributes)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            ObjectHandle result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                HookManager.UnHookByHookName(\"CreateInstanceHookAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArray\");\r\n                //Call the original function\r\n                result = Activator.CreateInstance(domain, assemblyName, typeName, ignoreCase, bindingAttr, binder, args, culture, activationAttributes);\r\n                HookManager.HookByHookName(\"CreateInstanceHookAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArray\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ActivatorCreateInstanceAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArray(), new object[] { domain, assemblyName, typeName, ignoreCase, bindingAttr, binder, args, culture, activationAttributes }, result);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static ObjectHandle CreateInstanceHookAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence(AppDomain domain, string assemblyName, string typeName, bool ignoreCase, BindingFlags bindingAttr, Binder binder, object[] args, CultureInfo culture, object[] activationAttributes, Evidence securityAttributes)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            ObjectHandle result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                HookManager.UnHookByHookName(\"CreateInstanceHookAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence\");\r\n                //Call the original function\r\n                result = Activator.CreateInstance(domain, assemblyName, typeName, ignoreCase, bindingAttr, binder, args, culture, activationAttributes, securityAttributes);\r\n                HookManager.HookByHookName(\"CreateInstanceHookAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ActivatorCreateInstanceAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence(), new object[] { domain, assemblyName, typeName, ignoreCase, bindingAttr, binder, args, culture, activationAttributes, securityAttributes }, result);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static ObjectHandle CreateInstanceFromHookAppDomainStringString(AppDomain domain, string assemblyFile, string typeName)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            ObjectHandle result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                HookManager.UnHookByHookName(\"CreateInstanceFromHookAppDomainStringString\");\r\n                //Call the original function\r\n                result = Activator.CreateInstanceFrom(domain, assemblyFile, typeName);\r\n                HookManager.HookByHookName(\"CreateInstanceFromHookAppDomainStringString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ActivatorCreateInstanceFromAppDomainStringString(), new object[] { domain, assemblyFile, typeName }, result);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static ObjectHandle CreateInstanceFromHookStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence(string assemblyFile, string typeName, bool ignoreCase, BindingFlags bindingAttr, Binder binder, object[] args, CultureInfo culture, object[] activationAttributes, Evidence securityInfo)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            ObjectHandle result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                HookManager.UnHookByHookName(\"CreateInstanceFromHookStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence\");\r\n                //Call the original function\r\n                result = Activator.CreateInstanceFrom(assemblyFile, typeName, ignoreCase, bindingAttr, binder, args, culture, activationAttributes, securityInfo);\r\n                HookManager.HookByHookName(\"CreateInstanceFromHookStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ActivatorCreateInstanceFromStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence(), new object[] { assemblyFile, typeName, ignoreCase, bindingAttr, binder, args, culture, activationAttributes, securityInfo }, result);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static ObjectHandle CreateInstanceFromHookAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArray(AppDomain domain, string assemblyFile, string typeName, bool ignoreCase, BindingFlags bindingAttr, Binder binder, object[] args, CultureInfo culture, object[] activationAttributes)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            ObjectHandle result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                HookManager.UnHookByHookName(\"CreateInstanceFromHookAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArray\");\r\n                //Call the original function\r\n                result = Activator.CreateInstanceFrom(domain, assemblyFile, typeName, ignoreCase, bindingAttr, binder, args, culture, activationAttributes);\r\n                HookManager.HookByHookName(\"CreateInstanceFromHookAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArray\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ActivatorCreateInstanceFromAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArray(), new object[] { domain, assemblyFile, typeName, ignoreCase, bindingAttr, binder, args, culture, activationAttributes }, result);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static ObjectHandle CreateInstanceFromHookAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence(AppDomain domain, string assemblyFile, string typeName, bool ignoreCase, BindingFlags bindingAttr, Binder binder, object[] args, CultureInfo culture, object[] activationAttributes, Evidence securityAttributes)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            ObjectHandle result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                HookManager.UnHookByHookName(\"CreateInstanceFromHookAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence\");\r\n                //Call the original function\r\n                result = Activator.CreateInstanceFrom(domain, assemblyFile, typeName, ignoreCase, bindingAttr, binder, args, culture, activationAttributes, securityAttributes);\r\n                HookManager.HookByHookName(\"CreateInstanceFromHookAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ActivatorCreateInstanceFromAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence(), new object[] { domain, assemblyFile, typeName, ignoreCase, bindingAttr, binder, args, culture, activationAttributes, securityAttributes }, result);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static ObjectHandle CreateInstanceFromHookStringString(string assemblyFile, string typeName)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            ObjectHandle result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Multi unhooking due to DotNet wrapper calls\r\n                HookManager.UnHookByHookName(\"CreateInstanceFromHookStringString\");\r\n                HookManager.UnHookByHookName(\"CreateInstanceFromHookStringStringObjectArray\");\r\n                HookManager.UnHookByHookName(\"CreateInstanceFromHookStringStringBoolBindingFlagsBinderObjectArrayCultureInfoObjectArray\");\r\n                //Call the original function\r\n                result = Activator.CreateInstanceFrom(assemblyFile, typeName);\r\n                HookManager.HookByHookName(\"CreateInstanceFromHookStringString\");\r\n                HookManager.HookByHookName(\"CreateInstanceFromHookStringStringObjectArray\");\r\n                HookManager.HookByHookName(\"CreateInstanceFromHookStringStringBoolBindingFlagsBinderObjectArrayCultureInfoObjectArray\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ActivatorCreateInstanceFromStringString(), new object[] { assemblyFile, typeName }, result);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static ObjectHandle CreateInstanceFromHookStringStringObjectArray(string assemblyFile, string typeName, object[] activationAttributes)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            ObjectHandle result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                HookManager.UnHookByHookName(\"CreateInstanceFromHookStringStringObjectArray\");\r\n                HookManager.UnHookByHookName(\"CreateInstanceFromHookStringStringBoolBindingFlagsBinderObjectArrayCultureInfoObjectArray\");\r\n                //Call the original function\r\n                result = Activator.CreateInstanceFrom(assemblyFile, typeName, activationAttributes);\r\n                HookManager.HookByHookName(\"CreateInstanceFromHookStringStringObjectArray\");\r\n                HookManager.HookByHookName(\"CreateInstanceFromHookStringStringBoolBindingFlagsBinderObjectArrayCultureInfoObjectArray\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ActivatorCreateInstanceFromAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence(), new object[] { assemblyFile, typeName, activationAttributes }, result);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static ObjectHandle CreateInstanceFromHookStringStringBoolBindingFlagsBinderObjectArrayCultureInfoObjectArray(string assemblyFile, string typeName, bool ignoreCase, BindingFlags bindingAttr, Binder binder, object[] args, CultureInfo culture, object[] activationAttributes)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            ObjectHandle result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Multi unhook due to internal wrappers in the DotNet framework\r\n                HookManager.UnHookByHookName(\"CreateInstanceFromHookStringStringBoolBindingFlagsBinderObjectArrayCultureInfoObjectArray\");\r\n                //Call the original function\r\n                result = Activator.CreateInstanceFrom(assemblyFile, typeName, ignoreCase, bindingAttr, binder, args, culture, activationAttributes);\r\n                HookManager.HookByHookName(\"CreateInstanceFromHookStringStringBoolBindingFlagsBinderObjectArrayCultureInfoObjectArray\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ActivatorCreateInstanceFromAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence(), new object[] { assemblyFile, typeName, ignoreCase, bindingAttr, binder, args, culture, activationAttributes }, result);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/HookHandlers/Assembly/AssemblyHooks.cs",
    "content": "﻿using System.Configuration.Assemblies;\r\nusing System.Reflection;\r\nusing System.Runtime.CompilerServices;\r\nusing System.Security;\r\nusing System.Security.Policy;\r\nusing DotDumper.Hooks;\r\n\r\nnamespace DotDumper.HookHandlers\r\n{\r\n    class AssemblyHooks\r\n    {\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Assembly GetEntryAssemblyHook()\r\n        {\r\n            return GenericHookHelper.OriginalAssembly;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Assembly GetExecutingAssemblyHook()\r\n        {\r\n            return GenericHookHelper.OriginalAssembly;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Assembly LoadHookByteArray(byte[] rawAssembly)\r\n        {\r\n            //Declare the local variable to store the assembly in\r\n            Assembly assembly;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"LoadHookByteArray\");\r\n                //Call the original function\r\n                assembly = Assembly.Load(rawAssembly);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"LoadHookByteArray\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.AssemblyLoadByteArray(), new object[] { rawAssembly }, assembly);\r\n            }\r\n\r\n            //Return the assembly to the caller\r\n            return assembly;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Assembly LoadHookString(string assemblyString)\r\n        {\r\n            //Declare the local variable to store the assembly in\r\n            Assembly assembly;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"LoadHookString\");\r\n                //Call the original function\r\n                assembly = Assembly.Load(assemblyString);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"LoadHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.AssemblyLoadString(), new object[] { assemblyString }, assembly);\r\n            }\r\n\r\n            //Return the assembly to the caller\r\n            return assembly;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Assembly LoadHookStringEvidence(string assemblyString, Evidence assemblySecurity)\r\n        {\r\n            //Declare the local variable to store the assembly in\r\n            Assembly assembly;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"LoadHookStringEvidence\");\r\n                //Call the original function\r\n                assembly = Assembly.Load(assemblyString, assemblySecurity);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"LoadHookStringEvidence\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.AssemblyLoadStringEvidence(), new object[] { assemblyString, assemblySecurity }, assembly);\r\n            }\r\n\r\n            //Return the assembly to the caller\r\n            return assembly;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Assembly LoadHookByteArrayByteArrayEvidence(byte[] rawAssembly, byte[] rawSymbolStore, Evidence securityEvidence)\r\n        {\r\n            //Declare the local variable to store the assembly in\r\n            Assembly assembly;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"LoadHookByteArrayByteArrayEvidence\");\r\n                //Call the original function\r\n                assembly = Assembly.Load(rawAssembly, rawSymbolStore, securityEvidence);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"LoadHookByteArrayByteArrayEvidence\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.AssemblyLoadByteArrayByteArrayEvidence(), new object[] { rawAssembly, rawSymbolStore, securityEvidence }, assembly);\r\n            }\r\n\r\n            //Return the assembly to the caller\r\n            return assembly;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Assembly LoadHookAssemblyName(AssemblyName assemblyRef)\r\n        {\r\n            //Declare the local variable to store the assembly in\r\n            Assembly assembly;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"LoadHookAssemblyName\");\r\n                //Call the original function\r\n                assembly = Assembly.Load(assemblyRef);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"LoadHookAssemblyName\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.AssemblyLoadAssemblyName(), new object[] { assemblyRef }, assembly);\r\n            }\r\n\r\n            //Return the assembly to the caller\r\n            return assembly;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Assembly LoadHookAssemblyNameEvidence(AssemblyName assemblyRef, Evidence assemblySecurity)\r\n        {\r\n            //Declare the local variable to store the assembly in\r\n            Assembly assembly;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"LoadHookAssemblyNameEvidence\");\r\n                //Call the original function\r\n                assembly = Assembly.Load(assemblyRef, assemblySecurity);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"LoadHookAssemblyNameEvidence\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.AssemblyLoadAssemblyNameEvidence(), new object[] { assemblyRef, assemblySecurity }, assembly);\r\n            }\r\n\r\n            //Return the assembly to the caller\r\n            return assembly;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Assembly LoadHookByteArrayByteArraySecurityContextSource(byte[] rawAssembly, byte[] rawSymbolStore, SecurityContextSource securityContextSource)\r\n        {\r\n            //Declare the local variable to store the assembly in\r\n            Assembly assembly;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"LoadHookByteArrayByteArraySecurityContextSource\");\r\n                //Call the original function\r\n                assembly = Assembly.Load(rawAssembly, rawSymbolStore, securityContextSource);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"LoadHookByteArrayByteArraySecurityContextSource\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.AssemblyLoadByteArrayByteArraySecurityContextSource(), new object[] { rawAssembly, rawSymbolStore, securityContextSource }, assembly);\r\n            }\r\n\r\n            //Return the assembly to the caller\r\n            return assembly;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Assembly LoadHookByteArrayByteArray(byte[] rawAssembly, byte[] rawSymbolStore)\r\n        {\r\n            //Declare the local variable to store the assembly in\r\n            Assembly assembly;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"LoadHookByteArrayByteArray\");\r\n                //Call the original function\r\n                assembly = Assembly.Load(rawAssembly, rawSymbolStore);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"LoadHookByteArrayByteArray\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.AssemblyLoadByteArrayByteArray(), new object[] { rawAssembly, rawSymbolStore }, assembly);\r\n            }\r\n\r\n            //Return the assembly to the caller\r\n            return assembly;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Assembly LoadFileHookString(string path)\r\n        {\r\n            //Declare the local variable to store the assembly in\r\n            Assembly assembly;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"LoadFileHookString\");\r\n                //Call the original function\r\n                assembly = Assembly.LoadFile(path);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"LoadFileHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.AssemblyLoadFileString(), new object[] { path }, assembly);\r\n            }\r\n\r\n            //Return the assembly to the caller\r\n            return assembly;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Assembly LoadFileHookStringEvidence(string path, Evidence securityEvidence)\r\n        {\r\n            //Declare the local variable to store the assembly in\r\n            Assembly assembly;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"LoadFileHookStringEvidence\");\r\n                //Call the original function\r\n                assembly = Assembly.LoadFile(path, securityEvidence);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"LoadFileHookStringEvidence\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.AssemblyLoadFileStringEvidence(), new object[] { path, securityEvidence }, assembly);\r\n            }\r\n\r\n            //Return the assembly to the caller\r\n            return assembly;\r\n        }\r\n\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Assembly LoadFromHookString(string assemblyFile)\r\n        {\r\n            //Declare the local variable to store the assembly in\r\n            Assembly assembly;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"LoadFromHookString\");\r\n                //Call the original function\r\n                assembly = Assembly.LoadFrom(assemblyFile);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"LoadFromHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.AssemblyLoadFromString(), new object[] { assemblyFile }, assembly);\r\n            }\r\n\r\n            //Return the assembly to the caller\r\n            return assembly;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Assembly LoadFromHookStringEvidence(string assemblyFile, Evidence securityEvidence)\r\n        {\r\n            //Declare the local variable to store the assembly in\r\n            Assembly assembly;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"LoadFromHookStringEvidence\");\r\n                //Call the original function\r\n                assembly = Assembly.LoadFrom(assemblyFile, securityEvidence);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"LoadFromHookStringEvidence\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.AssemblyLoadFromStringEvidence(), new object[] { assemblyFile, securityEvidence }, assembly);\r\n            }\r\n\r\n            //Return the assembly to the caller\r\n            return assembly;\r\n        }\r\n\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Assembly LoadFromHookStringEvidenceByteArrayAssemblyHashAlgorithm(string assemblyFile, Evidence securityEvidence, byte[] hashValue, AssemblyHashAlgorithm hashAlgorithm)\r\n        {\r\n            //Declare the local variable to store the assembly in\r\n            Assembly assembly;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"LoadFromHookStringEvidenceByteArrayAssemblyHashAlgorithm\");\r\n                //Call the original function\r\n                assembly = Assembly.LoadFrom(assemblyFile, securityEvidence, hashValue, hashAlgorithm);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"LoadFromHookStringEvidenceByteArrayAssemblyHashAlgorithm\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.AssemblyLoadFromStringEvidenceByteArrayAssemblyHashAlgorithm(), new object[] { assemblyFile, securityEvidence, hashValue, hashAlgorithm }, assembly);\r\n            }\r\n\r\n            //Return the assembly to the caller\r\n            return assembly;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Assembly LoadFromHookStringByteArrayAssemblyHashAlgorithm(string assemblyFile, byte[] hashValue, AssemblyHashAlgorithm hashAlgorithm)\r\n        {\r\n            //Declare the local variable to store the assembly in\r\n            Assembly assembly;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"LoadFromHookStringByteArrayAssemblyHashAlgorithm\");\r\n                //Call the original function\r\n                assembly = Assembly.LoadFrom(assemblyFile, hashValue, hashAlgorithm);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"LoadFromHookStringByteArrayAssemblyHashAlgorithm\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.AssemblyLoadFromStringByteArrayAssemblyHashAlgorithm(), new object[] { assemblyFile, hashValue, hashAlgorithm }, assembly);\r\n            }\r\n\r\n            //Return the assembly to the caller\r\n            return assembly;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Assembly LoadWithPartialNameHookStringEvidence(string partialName, Evidence securityEvidence)\r\n        {\r\n            //Declare the local variable to store the assembly in\r\n            Assembly assembly;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"LoadWithPartialNameHookStringEvidence\");\r\n                //Call the original function\r\n                assembly = Assembly.LoadWithPartialName(partialName, securityEvidence);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"LoadWithPartialNameHookStringEvidence\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.AssemblyLoadWithPartialNameStringEvidence(), new object[] { partialName, securityEvidence }, assembly);\r\n            }\r\n\r\n            //Return the assembly to the caller\r\n            return assembly;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Assembly LoadWithPartialNameHookString(string partialName)\r\n        {\r\n            //Declare the local variable to store the assembly in\r\n            Assembly assembly;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"LoadWithPartialNameHookString\");\r\n                //Call the original function\r\n                assembly = Assembly.LoadWithPartialName(partialName);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"LoadWithPartialNameHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.AssemblyLoadWithPartialNameString(), new object[] { partialName }, assembly);\r\n            }\r\n\r\n            //Return the assembly to the caller\r\n            return assembly;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Assembly ReflectionOnlyLoadHookString(string assemblyString)\r\n        {\r\n            //Declare the local variable to store the assembly in\r\n            Assembly assembly;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"ReflectionOnlyLoadHookString\");\r\n                //Call the original function\r\n                assembly = Assembly.ReflectionOnlyLoad(assemblyString);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"ReflectionOnlyLoadHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.AssemblyReflectionOnlyLoadString(), new object[] { assemblyString }, assembly);\r\n            }\r\n\r\n            //Return the assembly to the caller\r\n            return assembly;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Assembly ReflectionOnlyLoadHookByteArray(byte[] rawAssembly)\r\n        {\r\n            //Declare the local variable to store the assembly in\r\n            Assembly assembly;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"ReflectionOnlyLoadHookByteArray\");\r\n                //Call the original function\r\n                assembly = Assembly.ReflectionOnlyLoad(rawAssembly);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"ReflectionOnlyLoadHookByteArray\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.AssemblyReflectionOnlyLoadByteArray(), new object[] { rawAssembly }, assembly);\r\n            }\r\n\r\n            //Return the assembly to the caller\r\n            return assembly;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Assembly ReflectionOnlyLoadFromHookString(string assemblyFile)\r\n        {\r\n            //Declare the local variable to store the assembly in\r\n            Assembly assembly;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"ReflectionOnlyLoadFromHookString\");\r\n                //Call the original function\r\n                assembly = Assembly.ReflectionOnlyLoadFrom(assemblyFile);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"ReflectionOnlyLoadFromHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.AssemblyReflectionOnlyLoadFromString(), new object[] { assemblyFile }, assembly);\r\n            }\r\n\r\n            //Return the assembly to the caller\r\n            return assembly;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Assembly UnsafeLoadFromHookString(string assemblyFile)\r\n        {\r\n            //Declare the local variable to store the assembly in\r\n            Assembly assembly;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"UnsafeLoadFromHookString\");\r\n                //Call the original function\r\n                assembly = Assembly.UnsafeLoadFrom(assemblyFile);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"UnsafeLoadFromHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.AssemblyUnsafeLoadFromString(), new object[] { assemblyFile }, assembly);\r\n            }\r\n\r\n            //Return the assembly to the caller\r\n            return assembly;\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/HookHandlers/Console/ConsoleHooks.cs",
    "content": "﻿using System;\r\nusing System.Runtime.CompilerServices;\r\nusing DotDumper.Hooks;\r\n\r\nnamespace DotDumper.HookHandlers\r\n{\r\n    class ConsoleHooks\r\n    {\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteHookString(string value)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteString(), new object[] { value }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteHookObject(object value)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteObject(), new object[] { value }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteHookUlong(ulong value)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteUlong(), new object[] { value }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteHookLong(long value)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteLong(), new object[] { value }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteHookInt(int value)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteInt(), new object[] { value }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteHookUint(uint value)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteUint(), new object[] { value }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteHookBool(bool value)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteBool(), new object[] { value }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteHookChar(char value)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteChar(), new object[] { value }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteHookDecimal(decimal value)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteDecimal(), new object[] { value }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteHookFloat(float value)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteFloat(), new object[] { value }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteHookDouble(double value)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteDouble(), new object[] { value }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteHookStringObject(string format, object arg0)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteStringObject(), new object[] { format, arg0 }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteHookStringObjectObject(string format, object arg0, object arg1)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteStringObjectObject(), new object[] { format, arg0, arg1 }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteHookStringObjectObjectObject(string format, object arg0, object arg1, object arg2)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteStringObjectObjectObject(), new object[] { format, arg0, arg1, arg2 }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteHookStringObjectObjectObjectObject(string format, object arg0, object arg1, object arg2, object arg3)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteStringObjectObjectObjectObject(), new object[] { format, arg0, arg1, arg2, arg3 }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteHookStringObjectArray(string format, params object[] arg)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteStringObjectArray(), new object[] { format, arg }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteHookCharArray(char[] buffer)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteCharArray(), new object[] { buffer }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteHookCharArrayIntInt(char[] buffer, int index, int count)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteCharArrayIntInt(), new object[] { buffer, index, count }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteLineHookString(string value)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteString(), new object[] { value }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteLineHookObject(object value)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteLineObject(), new object[] { value }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteLineHookUlong(ulong value)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteLineUlong(), new object[] { value }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteLineHookLong(long value)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteLineLong(), new object[] { value }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteLineHookInt(int value)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteLineInt(), new object[] { value }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteLineHookUint(uint value)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteLineUint(), new object[] { value }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteLineHookBool(bool value)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteLineBool(), new object[] { value }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteLineHookChar(char value)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteLineChar(), new object[] { value }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteLineHookDecimal(decimal value)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteLineDecimal(), new object[] { value }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteLineHookFloat(float value)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteLineFloat(), new object[] { value }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteLineHookDouble(double value)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteLineDouble(), new object[] { value }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteLineHookStringObject(string format, object arg0)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteLineStringObject(), new object[] { format, arg0 }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteLineHookStringObjectObject(string format, object arg0, object arg1)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteLineStringObjectObject(), new object[] { format, arg0, arg1 }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteLineHookStringObjectObjectObject(string format, object arg0, object arg1, object arg2)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteLineStringObjectObjectObject(), new object[] { format, arg0, arg1, arg2 }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteLineHookStringObjectObjectObjectObject(string format, object arg0, object arg1, object arg2, object arg3)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteLineStringObjectObjectObjectObject(), new object[] { format, arg0, arg1, arg2, arg3 }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteLineHookStringObjectArray(string format, params object[] arg)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteLineStringObjectArray(), new object[] { format, arg }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteLineHookCharArray(char[] buffer)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteLineCharArray(), new object[] { buffer }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteLineHookCharArrayIntInt(char[] buffer, int index, int count)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteLineCharArrayIntInt(), new object[] { buffer, index, count }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteLineHook()\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                Console.WriteLine();\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConsoleWriteLine(), new object[] { }, null);\r\n            }\r\n        }\r\n    }\r\n}"
  },
  {
    "path": "DotDumper/HookHandlers/Convert/ConvertHooks.cs",
    "content": "﻿using System;\r\nusing System.Runtime.CompilerServices;\r\nusing DotDumper.Hooks;\r\n\r\nnamespace DotDumper.HookHandlers\r\n{\r\n    class ConvertHooks\r\n    {\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static byte[] FromBase64StringString(string s)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            byte[] output;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"FromBase64StringString\");\r\n                //Call the original function\r\n                output = Convert.FromBase64String(s);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"FromBase64StringString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConvertFromBase64StringString(), new object[] { s }, output);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return output;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static byte[] FromBase64CharArrayCharyArrayIntInt(char[] inArray, int offset, int length)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            byte[] output;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"FromBase64CharArrayCharyArrayIntInt\");\r\n                //Call the original function\r\n                output = Convert.FromBase64CharArray(inArray, offset, length);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"FromBase64CharArrayCharyArrayIntInt\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ConvertFromBase64CharArrayCharArrayIntInt(), new object[] { inArray, offset, length }, output);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return output;\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/HookHandlers/Directory/DirectoryHooks.cs",
    "content": "﻿namespace DotDumper.HookHandlers\r\n{\r\n    class DirectoryHooks\r\n    {\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/HookHandlers/Environment/EnvironmentHooks.cs",
    "content": "﻿using System;\r\nusing System.Runtime.CompilerServices;\r\nusing System.Collections;\r\nusing static System.Environment;\r\nusing DotDumper.Hooks;\r\n\r\nnamespace DotDumper.HookHandlers\r\n{\r\n    class EnvironmentHooks\r\n    {\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void ExitHookInt(int exitCode)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.EnvironmentExitInt(), new object[] { exitCode }, null);\r\n\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"ExitHookInt\");\r\n                //Call the original function\r\n                Environment.Exit(exitCode);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"ExitHookInt\");\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string ExpandEnvironmentVariablesHookString(string name)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            string output;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"ExpandEnvironmentVariablesHookString\");\r\n                //Call the original function\r\n                output = Environment.ExpandEnvironmentVariables(name);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"ExpandEnvironmentVariablesHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.EnvironmentExpandEnvironmentVariablesString(), new object[] { name }, output);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return output;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void FailFastHookStringException(string message, Exception exception)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.EnvironmentFailFastStringException(), new object[] { message, exception }, null);\r\n\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"FailFastHookStringException\");\r\n                //Call the original function\r\n                Environment.FailFast(message, exception);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"FailFastHookStringException\");\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void FailFastHookString(string message)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.EnvironmentFailFastString(), new object[] { message }, null);\r\n\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"FailFastHookString\");\r\n                //Call the original function\r\n                Environment.FailFast(message);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"FailFastHookString\");\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string[] GetCommandLineArgsHook()\r\n        {\r\n            //Declare the local variable to store the object in\r\n            string[] output;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"GetCommandLineArgsHook\");\r\n                //Call the original function\r\n                //TODO obtain provided CLI arguments, if any, otherwise return an empty array, as this would return the CLI arguments of DotDumper itself\r\n                //output = Environment.GetCommandLineArgs();\r\n                output = new string[0];\r\n\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"GetCommandLineArgsHook\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.EnvironmentGetCommandLineArgs(), new object[] { }, output);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return output;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string GetEnvironmentVariableHookStringEnvironmentVariableTarget(string variable, EnvironmentVariableTarget target)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            string output;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"GetEnvironmentVariableHookStringEnvironmentVariableTarget\");\r\n                //Call the original function\r\n                output = Environment.GetEnvironmentVariable(variable, target);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"GetEnvironmentVariableHookStringEnvironmentVariableTarget\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.EnvironmentGetEnvironmentVariableStringEnvironmentVariableTarget(), new object[] { variable, target }, output);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return output;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string GetEnvironmentVariablesHookString(string variable)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            string output;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"GetEnvironmentVariablesHookString\");\r\n                //Call the original function\r\n                output = Environment.GetEnvironmentVariable(variable);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"GetEnvironmentVariablesHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.EnvironmentGetEnvironmentVariableString(), new object[] { variable }, output);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return output;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static IDictionary GetEnvironmentVariablesHookEnvironmentVariableTarget(EnvironmentVariableTarget target)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            IDictionary output;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"GetEnvironmentVariablesHookEnvironmentVariableTarget\");\r\n                //Call the original function\r\n                output = Environment.GetEnvironmentVariables(target);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"GetEnvironmentVariablesHookEnvironmentVariableTarget\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.EnvironmentGetEnvironmentVariablesEnvironmentVariableTarget(), new object[] { target }, output);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return output;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static IDictionary GetEnvironmentVariablesHook()\r\n        {\r\n            //Declare the local variable to store the object in\r\n            IDictionary output;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"GetEnvironmentVariablesHook\");\r\n                //Call the original function\r\n                output = Environment.GetEnvironmentVariables();\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"GetEnvironmentVariablesHook\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.EnvironmentGetEnvironmentVariables(), new object[] { }, output);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return output;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string GetFolderPathHookSpecialFolderSpecialFolderOption(SpecialFolder folder, SpecialFolderOption option)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            string output;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"GetFolderPathHookSpecialFolderSpecialFolderOption\");\r\n                //Call the original function\r\n                output = Environment.GetFolderPath(folder, option);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"GetFolderPathHookSpecialFolderSpecialFolderOption\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.EnvironmentGetFolderPathSpecialFolderSpecialFolderOption(), new object[] { folder, option }, output);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return output;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string GetFolderPathHookSpecialFolder(SpecialFolder folder)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            string output;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"GetFolderPathHookSpecialFolder\");\r\n                //Call the original function\r\n                output = Environment.GetFolderPath(folder);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"GetFolderPathHookSpecialFolder\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.EnvironmentGetFolderPathSpecialFolder(), new object[] { folder }, output);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return output;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string[] GetLogicalDrivesHook()\r\n        {\r\n            //Declare the local variable to store the object in\r\n            string[] output;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"GetLogicalDrivesHook\");\r\n                //Call the original function\r\n                output = Environment.GetLogicalDrives();\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"GetLogicalDrivesHook\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.EnvironmentGetLogicalDrives(), new object[] { }, output);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return output;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void SetEnvironmentVariableHookStringStringEnvironmentVariableTarget(string variable, string value, EnvironmentVariableTarget target)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"SetEnvironmentVariableHookStringStringEnvironmentVariableTarget\");\r\n                //Call the original function\r\n                Environment.SetEnvironmentVariable(variable, value, target);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"SetEnvironmentVariableHookStringStringEnvironmentVariableTarget\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.EnvironmentSetEnvironmentVariableStringStringEnvironmentVariableTarget(), new object[] { variable, value, target }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void SetEnvironmentVariableHookStringString(string variable, string value)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"SetEnvironmentVariableHookStringStringEnvironmentVariableTarget\");\r\n                //Call the original function\r\n                Environment.SetEnvironmentVariable(variable, value);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"SetEnvironmentVariableHookStringStringEnvironmentVariableTarget\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.EnvironmentSetEnvironmentVariableStringString(), new object[] { variable, value }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string GetResourceFromDefaultHookString(string key)\r\n        {\r\n            object result = null;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookAll();\r\n                //Call the original function\r\n                result = OriginalManagedFunctions.EnvironmentGetResourceFromDefaultString().Invoke(null, new object[] { key });\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.EnvironmentGetResourceFromDefaultString(), new object[] { key }, result);\r\n                //Restore the hook\r\n                HookManager.HookAll();\r\n            }\r\n            return (string)result;\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/HookHandlers/File/FileHooks.cs",
    "content": "﻿using System.Collections.Generic;\r\nusing System.IO;\r\nusing System.Runtime.CompilerServices;\r\nusing System.Security.AccessControl;\r\nusing System.Text;\r\nusing DotDumper.Hooks;\r\n\r\nnamespace DotDumper.HookHandlers\r\n{\r\n    class FileHooks\r\n    {\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void AppendAllLinesHookStringIenumerableString(string path, IEnumerable<string> contents)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"FileAppendAllLinesHookStringIenumerableString\");\r\n                //Call the original function\r\n                File.AppendAllLines(path, contents);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"FileAppendAllLinesHookStringIenumerableString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileAppendAllLinesStringIenumerableString(), new object[] { path, contents }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void AppendAllLinesHookStringIenumerableStringEncoding(string path, IEnumerable<string> contents, Encoding encoding)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"FileAppendAllLinesHookStringIenumerableStringEncoding\");\r\n                //Call the original function\r\n                File.AppendAllLines(path, contents, encoding);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"FileAppendAllLinesHookStringIenumerableStringEncoding\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileAppendAllLinesStringIenumerableString(), new object[] { path, contents, encoding }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void AppendAllTextHookStringStringEncoding(string path, string contents, Encoding encoding)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"FileAppendAllTextHookStringStringEncoding\");\r\n                //Call the original function\r\n                File.AppendAllText(path, contents, encoding);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"FileAppendAllTextHookStringStringEncoding\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileAppendAllTextStringStringEncoding(), new object[] { path, contents, encoding }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void AppendAllTextHookStringString(string path, string contents)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"FileAppendAllTextHookStringString\");\r\n                //Call the original function\r\n                File.AppendAllText(path, contents);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"FileAppendAllTextHookStringString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileAppendAllTextStringString(), new object[] { path, contents }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static StreamWriter AppendTextHookString(string path)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            StreamWriter stream;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"FileAppendTextHookString\");\r\n                //Call the original function\r\n                stream = File.AppendText(path);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"FileAppendTextHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileAppendTextString(), new object[] { path }, stream);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return stream;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void CopyHookStringString(string sourceFileName, string destFileName)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            //StreamWriter stream;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"CopyHookStringString\");\r\n                //Call the original function\r\n                File.Copy(sourceFileName, destFileName);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"CopyHookStringString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileCopyStringString(), new object[] { sourceFileName, destFileName }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void CopyHookStringStringBoolean(string sourceFileName, string destFileName, bool overwrite)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"CopyHookStringStringBoolean\");\r\n                //Call the original function\r\n                File.Copy(sourceFileName, destFileName, overwrite);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"CopyHookStringStringBoolean\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileCopyStringStringBoolean(), new object[] { sourceFileName, destFileName, overwrite }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static FileStream CreateHookString(string path)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            FileStream stream;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"CreateHookString\");\r\n                //Call the original function\r\n                stream = File.Create(path);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"CreateHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileCreateString(), new object[] { path }, stream);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return stream;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static FileStream CreateHookStringInt(string path, int bufferSize)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            FileStream stream;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"CreateHookStringInt\");\r\n                //Call the original function\r\n                stream = File.Create(path, bufferSize);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"CreateHookStringInt\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileCreateStringInt(), new object[] { path, bufferSize }, stream);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return stream;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static FileStream CreateHookStringIntFileOptions(string path, int bufferSize, FileOptions fileOptions)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            FileStream stream;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"CreateHookStringIntFileOptions\");\r\n                //Call the original function\r\n                stream = File.Create(path, bufferSize, fileOptions);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"CreateHookStringIntFileOptions\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileCreateStringIntFileOptions(), new object[] { path, bufferSize, fileOptions }, stream);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return stream;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static FileStream CreateHookStringIntFileOptionsFileSecurity(string path, int bufferSize, FileOptions fileOptions, FileSecurity fileSecurity)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            FileStream stream;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"CreateHookStringIntFileOptionsFileSecurity\");\r\n                //Call the original function\r\n                stream = File.Create(path, bufferSize, fileOptions, fileSecurity);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"CreateHookStringIntFileOptionsFileSecurity\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileCreateStringIntFileOptionsFileSecurity(), new object[] { path, bufferSize, fileOptions, fileSecurity }, stream);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return stream;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static StreamWriter CreateTextHookString(string path)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            StreamWriter stream;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"CreateTextHookString\");\r\n                //Call the original function\r\n                stream = File.CreateText(path);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"CreateTextHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileCreateTextString(), new object[] { path }, stream);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return stream;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void DecryptHookString(string path)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"DecryptHookString\");\r\n                //Call the original function\r\n                File.Decrypt(path);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"DecryptHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileDecryptString(), new object[] { path }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void DeleteHookString(string path)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"DeleteHookString\");\r\n                //Call the original function\r\n                File.Delete(path);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"DeleteHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileDeleteString(), new object[] { path }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void EncryptHookString(string path)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"EncryptHookString\");\r\n                //Call the original function\r\n                File.Encrypt(path);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"EncryptHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileEncryptString(), new object[] { path }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static bool ExiststHookString(string path)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            bool result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"ExiststHookString\");\r\n                //Call the original function\r\n                result = File.Exists(path);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"ExiststHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.FileExiststString(), new object[] { path }, result);\r\n            }\r\n\r\n            //Return the result to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void MoveHookStringString(string sourceFileName, string destFileName)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"MoveHookStringString\");\r\n                //Call the original function\r\n                File.Move(sourceFileName, destFileName);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"MoveHookStringString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileMoveStringString(), new object[] { sourceFileName, destFileName }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static FileStream OpenHookStringFileModeFileAccessFileShare(string path, FileMode mode, FileAccess access, FileShare share)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            FileStream stream;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"OpenHookStringFileModeFileAccessFileShare\");\r\n                //Call the original function\r\n                stream = File.Open(path, mode, access, share);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"OpenHookStringFileModeFileAccessFileShare\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileOpenStringFileModeFileAccessFileShare(), new object[] { path, mode, access, share }, stream);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return stream;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static FileStream OpenHookStringFileModeFileAccess(string path, FileMode mode, FileAccess access)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            FileStream stream;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"OpenHookStringFileModeFileAccess\");\r\n                //Call the original function\r\n                stream = File.Open(path, mode, access);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"OpenHookStringFileModeFileAccess\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileOpenStringFileModeFileAccess(), new object[] { path, mode, access }, stream);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return stream;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static FileStream OpenHookStringFileMode(string path, FileMode mode)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            FileStream stream;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"OpenHookStringFileMode\");\r\n                //Call the original function\r\n                stream = File.Open(path, mode);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"OpenHookStringFileMode\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileOpenStringFileMode(), new object[] { path, mode }, stream);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return stream;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static StreamReader OpenTextHookString(string path)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            StreamReader stream;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"OpenTextHookString\");\r\n                //Call the original function\r\n                stream = File.OpenText(path);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"OpenTextHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileOpenTextString(), new object[] { path }, stream);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return stream;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static FileStream OpenWriteHookString(string path)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            FileStream stream;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"OpenWriteHookString\");\r\n                //Call the original function\r\n                stream = File.OpenWrite(path);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"OpenWriteHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileOpenWriteString(), new object[] { path }, stream);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return stream;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string[] ReadAllLinesHookString(string path)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            string[] lines;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"ReadAllLinesHookString\");\r\n                //Call the original function\r\n                lines = File.ReadAllLines(path);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"ReadAllLinesHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileReadAllLinesString(), new object[] { path }, lines);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return lines;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string[] ReadAllLinesHookStringEncoding(string path, Encoding encoding)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            string[] lines;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"ReadAllLinesHookStringEncoding\");\r\n                //Call the original function\r\n                lines = File.ReadAllLines(path, encoding);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"ReadAllLinesHookStringEncoding\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileReadAllLinesStringEncoding(), new object[] { path, encoding }, lines);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return lines;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string ReadAllTextHookStringEncoding(string path, Encoding encoding)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            string text;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"ReadAllTextHookStringEncoding\");\r\n                //Call the original function\r\n                text = File.ReadAllText(path, encoding);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"ReadAllTextHookStringEncoding\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileReadAllTextStringEncoding(), new object[] { path, encoding }, text);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return text;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string ReadAllTextHookString(string path)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            string text;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"ReadAllTextHookString\");\r\n                //Call the original function\r\n                text = File.ReadAllText(path);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"ReadAllTextHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileReadAllTextString(), new object[] { path }, text);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return text;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static IEnumerable<string> ReadLinesHookString(string path)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            IEnumerable<string> lines;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"ReadLinesHookString\");\r\n                //Call the original function\r\n                lines = File.ReadLines(path);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"ReadLinesHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileReadLinesString(), new object[] { path }, lines);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return lines;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static IEnumerable<string> ReadLinesHookStringEncoding(string path, Encoding encoding)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            IEnumerable<string> lines;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"ReadLinesHookStringEncoding\");\r\n                //Call the original function\r\n                lines = File.ReadLines(path, encoding);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"ReadLinesHookStringEncoding\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileReadLinesStringEncoding(), new object[] { path, encoding }, lines);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return lines;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void ReplaceHookStringStringString(string sourceFileName, string destinationFileName, string destinationBackupFileName)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"ReplaceHookStringStringString\");\r\n                //Call the original function\r\n                File.Replace(sourceFileName, destinationFileName, destinationBackupFileName);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"ReplaceHookStringStringString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileReplaceStringStringString(), new object[] { sourceFileName, destinationFileName, destinationBackupFileName }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void ReplaceHookStringStringStringBoolean(string sourceFileName, string destinationFileName, string destinationBackupFileName, bool ignoreMetadataErrors)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"ReplaceHookStringStringStringBoolean\");\r\n                //Call the original function\r\n                File.Replace(sourceFileName, destinationFileName, destinationBackupFileName, ignoreMetadataErrors);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"ReplaceHookStringStringStringBoolean\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileReplaceStringStringStringBoolean(), new object[] { sourceFileName, destinationFileName, destinationBackupFileName, ignoreMetadataErrors }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void SetAccessControlHookStringFileSecurity(string path, FileSecurity fileSecurity)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"SetAccessControlHookStringFileSecurity\");\r\n                //Call the original function\r\n                File.SetAccessControl(path, fileSecurity);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"SetAccessControlHookStringFileSecurity\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileSetAccessControlStringFileSecurity(), new object[] { path, fileSecurity }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void SetAttributesHookStringFileAttributes(string path, FileAttributes fileAttributes)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"SetAttributesHookStringFileAttributes\");\r\n                //Call the original function\r\n                File.SetAttributes(path, fileAttributes);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"SetAttributesHookStringFileAttributes\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileSetAttributesStringFileAttributes(), new object[] { path, fileAttributes }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteAllBytesHookStringByteArray(string path, byte[] bytes)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"WriteAllBytesHookStringByteArray\");\r\n                //Call the original function\r\n                File.WriteAllBytes(path, bytes);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"WriteAllBytesHookStringByteArray\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileWriteAllBytesStringByteArray(), new object[] { path, bytes }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteAllLinesHookStringStringArray(string path, string[] lines)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"WriteAllLinesHookStringStringArray\");\r\n                //Call the original function\r\n                File.WriteAllLines(path, lines);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"WriteAllLinesHookStringStringArray\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileWriteAllLinesStringStringArray(), new object[] { path, lines }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteAllLinesHookStringStringArrayEncoding(string path, string[] lines, Encoding encoding)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"WriteAllLinesHookStringStringArrayEncoding\");\r\n                //Call the original function\r\n                File.WriteAllLines(path, lines, encoding);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"WriteAllLinesHookStringStringArrayEncoding\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileWriteAllLinesStringStringArrayEncoding(), new object[] { path, lines, encoding }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteAllLinesHookStringIenumerableString(string path, IEnumerable<string> contents)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"WriteAllLinesHookStringIenumerableString\");\r\n                //Call the original function\r\n                File.WriteAllLines(path, contents);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"WriteAllLinesHookStringIenumerableString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileWriteAllLinesStringIenumerableString(), new object[] { path, contents }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteAllLinesHookStringIenumerableStringEncoding(string path, IEnumerable<string> contents, Encoding encoding)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"WriteAllLinesHookStringIenumerableStringEncoding\");\r\n                //Call the original function\r\n                File.WriteAllLines(path, contents, encoding);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"WriteAllLinesHookStringIenumerableStringEncoding\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileWriteAllLinesStringIenumerableStringEncoding(), new object[] { path, contents, encoding }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteAllTextHookStringString(string path, string contents)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"WriteAllTextHookStringString\");\r\n                //Call the original function\r\n                File.WriteAllText(path, contents);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"WriteAllTextHookStringString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileWriteAllTextStringString(), new object[] { path, contents }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void WriteAllTextHookStringStringEncoding(string path, string contents, Encoding encoding)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"WriteAllTextHookStringStringEncoding\");\r\n                //Call the original function\r\n                File.WriteAllText(path, contents, encoding);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"WriteAllTextHookStringStringEncoding\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileWriteAllTextStringStringEncoding(), new object[] { path, contents, encoding }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static byte[] ReadAllBytesHookString(string path)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            byte[] bytes;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"ReadAllBytesHookString\");\r\n                //Call the original function\r\n                bytes = File.ReadAllBytes(path);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"ReadAllBytesHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.FileReadAllBytesString(), new object[] { path }, bytes);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return bytes;\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/HookHandlers/GenericHookHelper.cs",
    "content": "﻿using System;\r\nusing System.Collections.Generic;\r\nusing System.Reflection;\r\nusing System.Security.Policy;\r\nusing System.Text;\r\nusing System.Threading;\r\nusing System.IO;\r\nusing DotDumper.Helpers;\r\nusing DotDumper.Hooks;\r\n\r\nnamespace DotDumper.HookHandlers\r\n{\r\n    /// <summary>\r\n    /// This class provides helper functions that are used by multiple hook classes, thereby avoiding duplicate code blocks.\r\n    /// </summary>\r\n    class GenericHookHelper\r\n    {\r\n        /// <summary>\r\n        /// The synchornisation object to ensure that multi-threaded malware does not cause two hooks to call the logger at the same time\r\n        /// </summary>\r\n        public static readonly object SyncLock = new object();\r\n\r\n        /// <summary>\r\n        /// The original sample that was loaded by DotDumper\r\n        /// </summary>\r\n        public static Assembly OriginalAssembly;\r\n\r\n        /// <summary>\r\n        /// The logger object to log data\r\n        /// </summary>\r\n        public static Logger _Logger;\r\n\r\n        /// <summary>\r\n        /// Gets the stack trace that leads to this function call, the amount of offset lines from the start. The removal is done to exclude hook related functions to end up in the trace, as that would clutter the overview.\r\n        /// </summary>\r\n        /// <param name=\"offset\">The amount of lines to skip, equal to the amount of functions that are entered from the hook prior to this function (including the hook itself)</param>\r\n        /// <returns>The stack trace to the call in the original code</returns>\r\n        public static string GetStackTraceAndAssemblyMapping(int offset)\r\n        {\r\n            //Increment the offset, as the trace is requested in this function, which is another line/layer deep\r\n            offset++;\r\n            //Initialise the variable where the result will be stored\r\n            string result = \"---StackTrace information---\\n\";\r\n            //Get the trace, split by lines\r\n            List<string> stackTraceLines = GetStackTraceRaw(offset);\r\n\r\n            //Add all lines from the given offset to the result variable, including a newline for each added line\r\n            for (int i = 0; i < stackTraceLines.Count; i++)\r\n            {\r\n                result += stackTraceLines[i] + \"\\n\";\r\n            }\r\n            result += \"----------------------------\\n\\n\";\r\n\r\n            //Get the assembly call order from the mapper\r\n            result += \"-----Assembly call order-----\\n\";\r\n            result += AssemblyMapper.ProcessStackTrace(stackTraceLines);\r\n            result += \"-----------------------------\\n\\n\";\r\n\r\n            //Return the result\r\n            return result;\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the stack trace, based on the given offset\r\n        /// </summary>\r\n        /// <param name=\"offset\">the number of calls since the original function has been called</param>\r\n        /// <returns>A list of strings that make up the stack trace. All hooks will be set prior to this function's return</returns>\r\n        public static List<string> GetStackTraceRaw(int offset)\r\n        {\r\n            HookManager.UnHookAll();\r\n            List<string> stackTraceLines = new List<string>();\r\n            //Increment the offset, as the trace is requested in this function, which is another line/layer deep\r\n            offset++;\r\n            //Increment the offset by two as the stacktrace itself is two additional layers deep when requesting it\r\n            offset += 2;\r\n            //Initialise and simplify newlines in the stacktrace\r\n            string rawStackTrace = Environment.StackTrace.Replace(\"\\r\\n\", \"\\n\");\r\n            //Get the trace for each \r\n            string[] lines = rawStackTrace.Split(new char[] { '\\n' });\r\n\r\n            //If the given offset is too big or less than zero, ignore the value and simply return the complete stacktrace\r\n            if (offset >= lines.Length || offset < 0)\r\n            {\r\n                offset = 0;\r\n            }\r\n            //Add all lines from the given offset to the result variable, including a newline for each added line\r\n            for (int i = offset; i < lines.Length; i++)\r\n            {\r\n                stackTraceLines.Add(lines[i]);\r\n            }\r\n            HookManager.HookAll();\r\n            //Return the result\r\n            return stackTraceLines;\r\n        }\r\n\r\n        /// <summary>\r\n        /// Saves the given data in the logger folder as a file, with the given file name (not starting with a backslash). If such a file already exists, it is overwritten without warning! This function is only to be used after the hooks are set, as all hooks are set prior to returning.\r\n        /// </summary>\r\n        /// <param name=\"fileName\">The name of the file to save</param>\r\n        /// <param name=\"data\">The data to save</param>\r\n        /// <returns>The complete path to the newly saved file</returns>\r\n        public static string SaveFile(string fileName, byte[] data)\r\n        {\r\n            //Call Directory.CreateDirectory by unhooking the hooks, and hooking them afterwards\r\n            DirectoryCreateDirectory(_Logger.Folder);\r\n            //Create the full path, using the logging folder as the base\r\n            string path = _Logger.Folder + @\"\\\" + fileName;\r\n            //Write all bytes using File.WriteAllBytes to the given path\r\n            FileWriteAllBytes(path, data);\r\n            //Return the full path of the newly saved file\r\n            return path;\r\n        }\r\n\r\n        /// <summary>\r\n        /// Saves the given data in the logger folder as a file, using the SHA-256 hash of the data as the file name (not starting with a backslash). If the file already exists, it is overwritten without warning! This function is only to be used after the hooks are set, as all hooks are set prior to returning.\r\n        /// </summary>\r\n        /// <param name=\"data\">The data to save</param>\r\n        /// <returns>A tuple, with the complete path to the newly saved file, and a hash object with the MD-5, SHA-1, and SHA-256 hash of the newly saved file</returns>\r\n        public static Tuple<string, Models.Hash> SaveFile(byte[] data)\r\n        {\r\n            string md5 = Hashes.Md5(data);\r\n            string sha1 = Hashes.Sha1(data);\r\n            string sha256 = Hashes.Sha256(data);\r\n            string sha384 = Hashes.Sha384(data);\r\n            string sha512 = Hashes.Sha512(data);\r\n            string typeRef = Hashes.TypeRef(data);\r\n            string importHash = Hashes.ImportHash(data);\r\n            string authenticodeSha256 = Hashes.AuthenticodeSha256(data);\r\n\r\n            string path = SaveFile(sha256, data);\r\n\r\n            return Tuple.Create(path, new Models.Hash(md5, sha1, sha256, sha384, sha512, typeRef, importHash, authenticodeSha256));\r\n        }\r\n\r\n        /// <summary>\r\n        /// Saves the given string in the logger folder as a file, using the SHA-256 hash of the data as the file name (not starting with a backslash). If the file already exists, it is overwritten without warning! This function is only to be used after the hooks are set, as all hooks are set prior to returning.\r\n        /// </summary>\r\n        /// <param name=\"data\">The data to save</param>\r\n        /// <returns>The complete path to the newly saved file</returns>\r\n        public static Tuple<string, Models.Hash> SaveFile(string data)\r\n        {\r\n            byte[] rawData = Encoding.Default.GetBytes(data);\r\n            return SaveFile(rawData);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Removes all hooks, calls File.ReadAllBytes(string path) with the given path, and sets all hooks. The result of the function call is returned.\r\n        /// </summary>\r\n        /// <param name=\"path\">The path to read the data from</param>\r\n        /// <returns>The data that has been read from the given path</returns>\r\n        public static byte[] FileReadAllBytes(string path)\r\n        {\r\n            HookManager.UnHookAll();\r\n            byte[] data = File.ReadAllBytes(path);\r\n            HookManager.HookAll();\r\n            return data;\r\n        }\r\n\r\n        /// <summary>\r\n        /// Removes all hooks, calls File.AppendAllText(string path, string contents) with the given path and contents, and sets all hooks.\r\n        /// </summary>\r\n        /// <param name=\"path\">The path to append the contents to</param>\r\n        /// <param name=\"contents\">The text to append</param>\r\n        public static void FileAppendAllText(string path, string contents)\r\n        {\r\n            HookManager.UnHookAll();\r\n            File.AppendAllText(path, contents);\r\n            HookManager.HookAll();\r\n        }\r\n\r\n        /// <summary>\r\n        /// Removes all hooks, calls File.WriteAllBytes(string path, byte[] bytes) with the given path and bytes, and sets all hooks.\r\n        /// </summary>\r\n        /// <param name=\"path\">The path to write all bytes to</param>\r\n        /// <param name=\"bytes\">The bytes to write</param>\r\n        public static void FileWriteAllBytes(string path, byte[] bytes)\r\n        {\r\n            HookManager.UnHookAll();\r\n            File.WriteAllBytes(path, bytes);\r\n            HookManager.HookAll();\r\n        }\r\n\r\n        /// <summary>\r\n        /// Removes all hooks, calls Path.GetFileName(string path) with the given path, sets all hooks, and returns the file name\r\n        /// </summary>\r\n        /// <param name=\"path\">The path to get the file name from</param>\r\n        /// <returns>The file name of the file at the given path</returns>\r\n        public static string PathGetFileName(string path)\r\n        {\r\n            HookManager.UnHookAll();\r\n            string fileName = Path.GetFileName(path);\r\n            HookManager.HookAll();\r\n            return fileName;\r\n        }\r\n\r\n        /// <summary>\r\n        /// Removes the hook named \"SleepHookInt\", calls Thread.Sleep(int milliseconds) with the given milliseconds, and sets the hook named \"SleepHookInt\".\r\n        /// </summary>\r\n        /// <param name=\"milliseconds\">The amount of milliseconds to sleep</param>\r\n        public static void ThreadSleep(int milliseconds)\r\n        {\r\n            HookManager.UnHookByHookName(\"SleepHookInt\");\r\n            Thread.Sleep(milliseconds);\r\n            HookManager.HookByHookName(\"SleepHookInt\");\r\n        }\r\n\r\n        /// <summary>\r\n        /// Removes all hooks, calls Directory.CreateDirectory(string folder) with the given folder, and sets all hooks.\r\n        /// </summary>\r\n        /// <param name=\"folder\">The folder to create</param>\r\n        /// <returns>The relevant DirectoryInfo object</returns>\r\n        public static DirectoryInfo DirectoryCreateDirectory(string folder)\r\n        {\r\n            HookManager.UnHookAll();\r\n            DirectoryInfo directoryInfo = Directory.CreateDirectory(folder);\r\n            HookManager.HookAll();\r\n            return directoryInfo;\r\n        }\r\n\r\n        /// <summary>\r\n        /// Removes all hooks, calls Console.WriteLine(string value) with the given value, and sets all hooks\r\n        /// </summary>\r\n        /// <param name=\"value\">The value to write to the standard output</param>\r\n        public static void ConsoleWriteLine(string value)\r\n        {\r\n            HookManager.UnHookAll();\r\n            Console.WriteLine(value);\r\n            HookManager.HookAll();\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the raw data of the given Assembly object. This function removes all hooks, after which the raw data is obtained reflectively. All hooks are then set.\r\n        /// </summary>\r\n        /// <param name=\"assembly\">The Assembly object to get the raw data from</param>\r\n        /// <returns>The raw bytes of the given Assembly object</returns>\r\n        public static byte[] GetAsByteArray(Assembly assembly)\r\n        {\r\n            HookManager.UnHookAll();\r\n            //Taken from https://stackoverflow.com/a/46209735\r\n            Hash hash = new Hash(assembly);\r\n            byte[] rawAssembly = (byte[])hash.GetType().GetMethod(\"GetRawData\", BindingFlags.Instance | BindingFlags.NonPublic).Invoke(hash, new object[0]);\r\n            HookManager.HookAll();\r\n            return rawAssembly;\r\n        }\r\n    }\r\n}"
  },
  {
    "path": "DotDumper/HookHandlers/MethodBase/MethodBaseHooks.cs",
    "content": "﻿using System.Reflection;\r\nusing System.Runtime.CompilerServices;\r\nusing DotDumper.Helpers;\r\n\r\nnamespace DotDumper.HookHandlers\r\n{\r\n    class MethodBaseHooks\r\n    {\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static object InvokeHookObjectObjectArray(MethodBase methodBase, object obj, object[] parameters)\r\n        {\r\n            //Declare the local variable to store the assembly object in\r\n            object result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                int stackTraceOffset = 1;\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(stackTraceOffset, methodBase, parameters, null);\r\n            }\r\n\r\n            //Start the timer to induce the race condition\r\n            RaceConditionHandler.StartTimer(\"InvokeHookObjectObjectArray\");\r\n            //Call the original function\r\n            result = methodBase.Invoke(obj, parameters);\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/HookHandlers/Path/PathHooks.cs",
    "content": "﻿using System.IO;\r\nusing System.Runtime.CompilerServices;\r\nusing DotDumper.Hooks;\r\n\r\nnamespace DotDumper.HookHandlers\r\n{\r\n    class PathHooks\r\n    {\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string ChangeExtensionHookStringString(string path, string extension)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            string output;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"ChangeExtensionHookStringString\");\r\n                //Call the original function\r\n                output = Path.ChangeExtension(path, extension);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"ChangeExtensionHookStringString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.PathChangeExtensionStringString(), new object[] { path, extension }, output);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return output;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string CombineHookStringString(string path1, string path2)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            string output;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"CombineHookStringString\");\r\n                //Call the original function\r\n                output = Path.Combine(path1, path2);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"CombineHookStringString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.PathCombineStringString(), new object[] { path1, path2 }, output);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return output;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string CombineHookStringStringString(string path1, string path2, string path3)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            string output;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"CombineHookStringStringString\");\r\n                //Call the original function\r\n                output = Path.Combine(path1, path2, path3);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"CombineHookStringStringString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.PathCombineStringStringString(), new object[] { path1, path2, path3 }, output);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return output;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string CombineHookStringStringStringString(string path1, string path2, string path3, string path4)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            string output;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"CombineHookStringStringStringString\");\r\n                //Call the original function\r\n                output = Path.Combine(path1, path2, path3, path4);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"CombineHookStringStringStringString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.PathCombineStringStringStringString(), new object[] { path1, path2, path3, path4 }, output);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return output;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string CombineHookStringArray(string[] paths)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            string output;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"CombineHookStringArray\");\r\n                //Call the original function\r\n                output = Path.Combine(paths);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"CombineHookStringArray\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.PathCombineStringArray(), new object[] { paths }, output);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return output;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string GetDirectoryNameHookString(string path)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            string output;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"GetDirectoryNameHookString\");\r\n                //Call the original function\r\n                output = Path.GetDirectoryName(path);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"GetDirectoryNameHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.PathGetDirectoryNameString(), new object[] { path }, output);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return output;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string GetExtensionHookString(string path)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            string output;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"GetExtensionHookString\");\r\n                //Call the original function\r\n                output = Path.GetExtension(path);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"GetExtensionHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.PathGetExtensionString(), new object[] { path }, output);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return output;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string GetFileNameHookString(string path)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            string output;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"GetFileNameHookString\");\r\n                //Call the original function\r\n                output = Path.GetFileName(path);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"GetFileNameHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.PathGetFileNameString(), new object[] { path }, output);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return output;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string GetFileNameWithoutExtensionHookString(string path)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            string output;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"GetFileNameWithoutExtensionHookString\");\r\n                //Call the original function\r\n                output = Path.GetFileNameWithoutExtension(path);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"GetFileNameWithoutExtensionHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.PathGetFileNameWithoutExtensionString(), new object[] { path }, output);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return output;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string GetFullPathHookString(string path)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            string output;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"GetFullPathHookString\");\r\n                //Call the original function\r\n                output = Path.GetFullPath(path);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"GetFullPathHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.PathGetFullPathString(), new object[] { path }, output);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return output;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string GetPathRootHookString(string path)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            string output;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"GetPathRootHookString\");\r\n                //Call the original function\r\n                output = Path.GetPathRoot(path);\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"GetPathRootHookString\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.PathGetPathRootString(), new object[] { path }, output);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return output;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string GetRandomFileNameHook()\r\n        {\r\n            //Declare the local variable to store the object in\r\n            string output;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"GetRandomFileNameHook\");\r\n                //Call the original function\r\n                output = Path.GetRandomFileName();\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"GetRandomFileNameHook\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.PathGetRandomFileName(), new object[] { }, output);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return output;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string GetTempFileNameHook()\r\n        {\r\n            //Declare the local variable to store the object in\r\n            string output;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"GetTempFileNameHook\");\r\n                //Call the original function\r\n                output = Path.GetTempFileName();\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"GetTempFileNameHook\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.PathGetTempFileName(), new object[] { }, output);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return output;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string GetTempPathHook()\r\n        {\r\n            //Declare the local variable to store the object in\r\n            string output;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hook\r\n                HookManager.UnHookByHookName(\"GetTempPathHook\");\r\n                //Call the original function\r\n                output = Path.GetTempPath();\r\n                //Restore the hook\r\n                HookManager.HookByHookName(\"GetTempPathHook\");\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.PathGetTempPath(), new object[] { }, output);\r\n            }\r\n\r\n            //Return the object to the caller\r\n            return output;\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/HookHandlers/Process/ProcessHooks.cs",
    "content": "﻿using System.Diagnostics;\r\nusing System.Runtime.CompilerServices;\r\nusing System.Security;\r\nusing DotDumper.Hooks;\r\n\r\nnamespace DotDumper.HookHandlers\r\n{\r\n    class ProcessHooks\r\n    {\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Process GetCurrentProcessHook()\r\n        {\r\n            //Declare the local variable to store the process object in\r\n            Process process;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hooks\r\n                HookManager.UnHookAll();\r\n                //Call the original function\r\n                process = Process.GetCurrentProcess();\r\n                //Restore the hooks\r\n                HookManager.HookAll();\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ProcessGetCurrentProcess(), new object[] { }, process);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return process;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Process GetProcessByIdHookIntString(int processId, string machineName)\r\n        {\r\n            //Declare the local variable to store the process object in\r\n            Process process;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hooks\r\n                HookManager.UnHookAll();\r\n                //Call the original function\r\n                process = Process.GetProcessById(processId, machineName);\r\n                //Restore the hooks\r\n                HookManager.HookAll();\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ProcessGetProcessByIdIntString(), new object[] { processId, machineName }, process);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return process;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Process GetProcessByIdHookInt(int processId)\r\n        {\r\n            //Declare the local variable to store the process object in\r\n            Process process;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hooks\r\n                HookManager.UnHookAll();\r\n                //Call the original function\r\n                process = Process.GetProcessById(processId);\r\n                //Restore the hooks\r\n                HookManager.HookAll();\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ProcessGetProcessByIdInt(), new object[] { processId }, process);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return process;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Process[] GetProcessesHook()\r\n        {\r\n            //Declare the local variable to store the process objects in\r\n            Process[] processes;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hooks\r\n                HookManager.UnHookAll();\r\n                //Call the original function\r\n                processes = Process.GetProcesses();\r\n                //Restore the hooks\r\n                HookManager.HookAll();\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ProcessGetProcesses(), new object[] { }, processes);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return processes;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Process[] GetProcessesHookString(string machineName)\r\n        {\r\n            //Declare the local variable to store the process objects in\r\n            Process[] processes;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hooks\r\n                HookManager.UnHookAll();\r\n                //Call the original function\r\n                processes = Process.GetProcesses(machineName);\r\n                //Restore the hooks\r\n                HookManager.HookAll();\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ProcessGetProcessesString(), new object[] { machineName }, processes);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return processes;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Process[] GetProcessesByNameHookString(string processName)\r\n        {\r\n            //Declare the local variable to store the process objects in\r\n            Process[] processes;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hooks\r\n                HookManager.UnHookAll();\r\n                //Call the original function\r\n                processes = Process.GetProcessesByName(processName);\r\n                //Restore the hooks\r\n                HookManager.HookAll();\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ProcessGetProcessesByNameString(), new object[] { processName }, processes);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return processes;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Process[] GetProcessesByNameHookStringString(string processName, string machineName)\r\n        {\r\n            //Declare the local variable to store the process objects in\r\n            Process[] processes;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hooks\r\n                HookManager.UnHookAll();\r\n                //Call the original function\r\n                processes = Process.GetProcessesByName(processName, machineName);\r\n                //Restore the hooks\r\n                HookManager.HookAll();\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ProcessGetProcessesByNameStringString(), new object[] { processName, machineName }, processes);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return processes;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Process ProcessStartHookStringString(string fileName, string arguments)\r\n        {\r\n            //Declare the local variable to store the process object in\r\n            Process process;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hooks\r\n                HookManager.UnHookAll();\r\n                //Call the original function\r\n                process = Process.Start(fileName, arguments);\r\n                //Restore the hooks\r\n                HookManager.HookAll();\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ProcessStartStringString(), new object[] { fileName, arguments }, process);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return process;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Process ProcessStartHookProcessStartInfo(ProcessStartInfo startInfo)\r\n        {\r\n            //Declare the local variable to store the process object in\r\n            Process process;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hooks\r\n                HookManager.UnHookAll();\r\n                //Call the original function\r\n                process = Process.Start(startInfo);\r\n                //Restore the hooks\r\n                HookManager.HookAll();\r\n\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ProcessStartProcessStartInfo(), new object[] { startInfo }, process);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return process;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Process ProcessStartHookString(string fileName)\r\n        {\r\n            //Declare the local variable to store the process object in\r\n            Process process;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hooks\r\n                HookManager.UnHookAll();\r\n                //Call the original function\r\n                process = Process.Start(fileName);\r\n                //Restore the hooks\r\n                HookManager.HookAll();\r\n\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ProcessStartString(), new object[] { fileName }, process);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return process;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Process ProcessStartHookStringStringStringSecureStringString(string fileName, string arguments, string userName, SecureString password, string domain)\r\n        {\r\n            //Declare the local variable to store the process object in\r\n            Process process;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hooks\r\n                HookManager.UnHookAll();\r\n                //Call the original function\r\n                process = Process.Start(fileName, arguments, userName, password, domain);\r\n                //Restore the hooks\r\n                HookManager.HookAll();\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ProcessStartStringStringStringSecureStringString(), new object[] { fileName, arguments, userName, password, domain }, process);\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return process;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static Process ProcessStartHookStringStringSecureStringString(string fileName, string userName, SecureString password, string domain)\r\n        {\r\n            //Declare the local variable to store the process object in\r\n            Process process;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Disable the placed hooks\r\n                HookManager.UnHookAll();\r\n                //Call the original function\r\n                process = Process.Start(fileName, userName, password, domain);\r\n                //Restore the hooks\r\n                HookManager.HookAll();\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ProcessStartStringStringSecureStringString(), new object[] { fileName, userName, password, domain }, process);\r\n            }\r\n            //Return the process object to the caller\r\n            return process;\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/HookHandlers/ResourceManager/ResourceManagerHooks.cs",
    "content": "﻿using System;\r\nusing System.Globalization;\r\nusing System.IO;\r\nusing System.Reflection;\r\nusing System.Resources;\r\nusing System.Runtime.CompilerServices;\r\nusing DotDumper.Hooks;\r\n\r\nnamespace DotDumper.HookHandlers\r\n{\r\n    class ResourceManagerHooks\r\n    {\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static object GetObjectHookString(ResourceManager resourceManager, string name)\r\n        {\r\n            //Declare the local variable to store the result in\r\n            object result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                HookManager.UnHookAll();\r\n                result = null;\r\n                try\r\n                {\r\n                    result = resourceManager.GetObject(name);\r\n                }\r\n                catch (Exception)\r\n                {\r\n\r\n                }\r\n\r\n                if (result == null)\r\n                {\r\n                    result = BruteObjectGet(name);\r\n                }\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ResourceManagerGetObjectString(), new object[] { name }, result);\r\n\r\n                HookManager.HookAll();\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static object GetObjectHookStringCultureInfo(ResourceManager resourceManager, string name, CultureInfo cultureInfo)\r\n        {\r\n            //Declare the local variable to store the result in\r\n            object result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                HookManager.UnHookAll();\r\n\r\n                result = null;\r\n                try\r\n                {\r\n                    result = resourceManager.GetObject(name, cultureInfo);\r\n                }\r\n                catch (Exception)\r\n                {\r\n\r\n                }\r\n\r\n                if (result == null)\r\n                {\r\n                    result = BruteObjectGet(name);\r\n                }\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ResourceManagerGetObjectStringCultureInfo(), new object[] { name, cultureInfo }, result);\r\n\r\n                HookManager.HookAll();\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string GetStringHookString(ResourceManager resourceManager, string name)\r\n        {\r\n            //Declare the local variable to store the result in\r\n            string result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                HookManager.UnHookAll();\r\n                result = null;\r\n                try\r\n                {\r\n                    result = resourceManager.GetString(name);\r\n                }\r\n                catch (Exception)\r\n                {\r\n\r\n                }\r\n\r\n                if (result == null)\r\n                {\r\n                    result = BruteStringGet(name);\r\n                }\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ResourceManagerGetStringString(), new object[] { name }, result);\r\n\r\n                HookManager.HookAll();\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static string GetStringHookStringCultureInfo(ResourceManager resourceManager, string name, CultureInfo cultureInfo)\r\n        {\r\n            //Declare the local variable to store the result in\r\n            string result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                HookManager.UnHookAll();\r\n\r\n                result = null;\r\n                try\r\n                {\r\n                    result = resourceManager.GetString(name, cultureInfo);\r\n                }\r\n                catch (Exception)\r\n                {\r\n\r\n                }\r\n\r\n                if (result == null)\r\n                {\r\n                    result = BruteStringGet(name);\r\n                }\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ResourceManagerGetStringStringCultureInfo(), new object[] { name, cultureInfo }, result);\r\n\r\n                HookManager.HookAll();\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static UnmanagedMemoryStream GetStreamHookString(ResourceManager resourceManager, string name)\r\n        {\r\n            //Declare the local variable to store the result in\r\n            UnmanagedMemoryStream result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                HookManager.UnHookAll();\r\n\r\n                result = null;\r\n                try\r\n                {\r\n                    result = resourceManager.GetStream(name);\r\n                }\r\n                catch (Exception)\r\n                {\r\n\r\n                }\r\n\r\n                if (result == null)\r\n                {\r\n                    result = BruteStreamGet(name);\r\n                }\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ResourceManagerGetStreamString(), new object[] { name }, result);\r\n\r\n                HookManager.HookAll();\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static UnmanagedMemoryStream GetStreamHookStringCultureInfo(ResourceManager resourceManager, string name, CultureInfo cultureInfo)\r\n        {\r\n            //Declare the local variable to store the result in\r\n            UnmanagedMemoryStream result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                HookManager.UnHookAll();\r\n\r\n                result = null;\r\n                try\r\n                {\r\n                    result = resourceManager.GetStream(name, cultureInfo);\r\n                }\r\n                catch (Exception)\r\n                {\r\n\r\n                }\r\n\r\n                if (result == null)\r\n                {\r\n                    result = BruteStreamGet(name);\r\n                }\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.LogSampleCall(1, OriginalManagedFunctions.ResourceManagerGetStreamStringCultureInfo(), new object[] { name, cultureInfo }, result);\r\n\r\n                HookManager.HookAll();\r\n            }\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        private static string BruteStringGet(string resourceName)\r\n        {\r\n            string result = null;\r\n\r\n            Assembly[] assemblies = AppDomain.CurrentDomain.GetAssemblies();\r\n\r\n            foreach (Assembly assembly in assemblies)\r\n            {\r\n                string[] resourceNames = assembly.GetManifestResourceNames();\r\n\r\n                foreach (string resource in resourceNames)\r\n                {\r\n                    try\r\n                    {\r\n                        ResourceManager resourceManager = new ResourceManager(resourceName, assembly);\r\n                        result = resourceManager.GetString(resourceName);\r\n                        if (result != null)\r\n                        {\r\n                            return result;\r\n                        }\r\n                    }\r\n                    catch (Exception)\r\n                    {\r\n                        //Ignore exceptions, as this function returns null if the resource cannot be found\r\n                    }\r\n                }\r\n            }\r\n\r\n            return result;\r\n        }\r\n\r\n        private static object BruteObjectGet(string resourceName)\r\n        {\r\n            object result = null;\r\n\r\n            Assembly[] assemblies = AppDomain.CurrentDomain.GetAssemblies();\r\n\r\n            foreach (Assembly assembly in assemblies)\r\n            {\r\n                string[] resourceNames = assembly.GetManifestResourceNames();\r\n\r\n                foreach (string resource in resourceNames)\r\n                {\r\n                    try\r\n                    {\r\n                        ResourceManager resourceManager = new ResourceManager(resourceName, assembly);\r\n                        result = resourceManager.GetObject(resourceName);\r\n                        if (result != null)\r\n                        {\r\n                            return result;\r\n                        }\r\n                    }\r\n                    catch (Exception)\r\n                    {\r\n                        //Ignore exceptions, as this function returns null if the resource cannot be found\r\n                    }\r\n                }\r\n            }\r\n\r\n            return result;\r\n        }\r\n\r\n        private static UnmanagedMemoryStream BruteStreamGet(string resourceName)\r\n        {\r\n            UnmanagedMemoryStream result = null;\r\n\r\n            Assembly[] assemblies = AppDomain.CurrentDomain.GetAssemblies();\r\n\r\n            foreach (Assembly assembly in assemblies)\r\n            {\r\n                string[] resourceNames = assembly.GetManifestResourceNames();\r\n\r\n                foreach (string resource in resourceNames)\r\n                {\r\n                    try\r\n                    {\r\n                        ResourceManager resourceManager = new ResourceManager(resourceName, assembly);\r\n                        result = resourceManager.GetStream(resourceName, null);\r\n                        if (result != null)\r\n                        {\r\n                            return result;\r\n                        }\r\n                    }\r\n                    catch (Exception)\r\n                    {\r\n                        //Ignore exceptions, as this function returns null if the resource cannot be found\r\n                    }\r\n                }\r\n            }\r\n\r\n            return result;\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/HookHandlers/Thread/ThreadHooks.cs",
    "content": "﻿using System;\r\nusing System.Runtime.CompilerServices;\r\nusing System.Threading;\r\nusing DotDumper.Hooks;\r\n\r\nnamespace DotDumper.HookHandlers\r\n{\r\n    class ThreadHooks\r\n    {\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void SleepHookInt(int millisecondsTimeout)\r\n        {\r\n            //Avoids cluttering the log\r\n            if (millisecondsTimeout <= 1)\r\n            {\r\n                return;\r\n            }\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //If sleep is to be skipped, the function is never called\r\n                if (Config.SleepSkip == false)\r\n                {\r\n                    //Disable the placed hook\r\n                    HookManager.UnHookAll();\r\n                    //Call the original function\r\n                    Thread.Sleep(millisecondsTimeout);\r\n                    //Restore the hook\r\n                    HookManager.HookAll();\r\n                }\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ThreadSleepInt(), new object[] { millisecondsTimeout }, null);\r\n            }\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static void SleepHookTimeSpan(TimeSpan timeout)\r\n        {\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //If sleep is to be skipped, the function is never called\r\n                if (Config.SleepSkip == false)\r\n                {\r\n                    //Disable the placed hook\r\n                    HookManager.UnHookAll();\r\n                    //Call the original function\r\n                    Thread.Sleep(timeout);\r\n                    //Restore the hook\r\n                    HookManager.HookAll();\r\n                }\r\n\r\n                //Write the aggregated data to the log and the console\r\n                GenericHookHelper._Logger.Log(1, OriginalManagedFunctions.ThreadSleepTimeSpan(), new object[] { timeout }, null);\r\n            }\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/HookHandlers/Type/TypeHooks.cs",
    "content": "﻿using System;\r\nusing System.Globalization;\r\nusing System.Reflection;\r\nusing System.Runtime.CompilerServices;\r\nusing DotDumper.Helpers;\r\n\r\nnamespace DotDumper.HookHandlers\r\n{\r\n    class TypeHooks\r\n    {\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static object InvokeMemberHookStringBindingFlagsBinderObjectObjectArrayCultureInfo(Type type, string name, BindingFlags invokeAttr, Binder binder, object target, object[] args, CultureInfo culture)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            object result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Sets the title for the log\r\n                string functionName = \"Type.InvokeMember(string name, BindingFlags invokeAttr, Binder binder, object target, object[] args, CultureInfo culture)\";\r\n                //Process the given data via the helper class\r\n                TypeHooksHelper.InvokeMemberHandler(functionName, type, name, invokeAttr, binder, target, args, culture);\r\n            }\r\n\r\n            //Start the timer to induce the race condition\r\n            RaceConditionHandler.StartTimer(\"InvokeMemberHookStringBindingFlagsBinderObjectObjectArrayCultureInfo\");\r\n            //Call the original function\r\n            result = type.InvokeMember(name, invokeAttr, binder, target, args, culture);\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n\r\n        [MethodImpl(MethodImplOptions.NoInlining)]\r\n        public static object InvokeMemberHookStringBindingFlagsBinderObjectObjectArray(Type type, string name, BindingFlags invokeAttr, Binder binder, object target, object[] args)\r\n        {\r\n            //Declare the local variable to store the object in\r\n            object result;\r\n\r\n            //Enable the thread safe lock, as a launched program can be multi-threaded\r\n            lock (GenericHookHelper.SyncLock)\r\n            {\r\n                //Sets the title for the log\r\n                string functionName = \"Type.InvokeMember(string name, BindingFlags invokeAttr, Binder binder, object target, object[] args)\";\r\n                //Process the given data via the helper class\r\n                TypeHooksHelper.InvokeMemberHandler(functionName, type, name, invokeAttr, binder, target, args, null);\r\n            }\r\n\r\n            //Start the timer to induce the race condition\r\n            RaceConditionHandler.StartTimer(\"InvokeMemberHookStringBindingFlagsBinderObjectObjectArray\");\r\n            //Call the original function\r\n            result = type.InvokeMember(name, invokeAttr, binder, target, args);\r\n\r\n            //Return the process object to the caller\r\n            return result;\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/HookHandlers/Type/TypeHooksHelper.cs",
    "content": "﻿using System;\r\nusing System.Globalization;\r\nusing System.Reflection;\r\nusing DotDumper.Helpers;\r\nusing DotDumper.Hooks;\r\nusing DotDumper.Models;\r\n\r\nnamespace DotDumper.HookHandlers\r\n{\r\n    class TypeHooksHelper\r\n    {\r\n        public static void InvokeMemberHandler(string functionName, Type type, string name, BindingFlags invokeAttr, Binder binder, object target, object[] args, CultureInfo culture)\r\n        {\r\n            MethodInfo methodInfo = GetMethodInfo(type, name, args);\r\n            LogEntry entry = null;\r\n            if (methodInfo == null)\r\n            {\r\n                string fullName = type.FullName + \".\" + name;\r\n                if (culture == null)\r\n                {\r\n                    methodInfo = OriginalManagedFunctions.TypeInvokeMemberStringBindingFlagsBinderObjectObjectArray();\r\n                }\r\n                else\r\n                {\r\n                    methodInfo = OriginalManagedFunctions.TypeInvokeMemberStringBindingFlagsBinderObjectObjectArrayCultureInfo();\r\n                }\r\n            }\r\n            else\r\n            {\r\n                entry = LogEntryHelper.Create(2, methodInfo, args, null);\r\n\r\n            }\r\n\r\n            //Write the aggregated data to the log and the console\r\n            GenericHookHelper._Logger.Log(entry, false, true);\r\n        }\r\n\r\n        private static MethodInfo GetMethodInfo(Type type, string name, object[] args)\r\n        {\r\n            MethodInfo method = null;\r\n            foreach (MethodInfo methodInfo in type.GetMethods(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Static | BindingFlags.Instance))\r\n            {\r\n                if (methodInfo.Name.Equals(name, StringComparison.InvariantCultureIgnoreCase))\r\n                {\r\n                    ParameterInfo[] parameterInfos = methodInfo.GetParameters();\r\n                    int argsLength = -1;\r\n                    if (args == null)\r\n                    {\r\n                        argsLength = 0;\r\n                    }\r\n                    else\r\n                    {\r\n                        argsLength = args.Length;\r\n                    }\r\n\r\n                    if (parameterInfos.Length == argsLength)\r\n                    {\r\n                        bool match = true;\r\n                        if (argsLength > 0)\r\n                        {\r\n                            for (int i = 0; i < args.Length; i++)\r\n                            {\r\n                                if (parameterInfos[i].ParameterType != args[i].GetType())\r\n                                {\r\n                                    match = false;\r\n                                }\r\n                            }\r\n                        }\r\n                        if (match)\r\n                        {\r\n                            method = methodInfo;\r\n                            return method;\r\n                        }\r\n                    }\r\n                }\r\n            }\r\n            return method;\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/Hooks/Hook.cs",
    "content": "﻿using System;\r\nusing System.Reflection;\r\nusing System.Runtime.CompilerServices;\r\nusing System.Runtime.InteropServices;\r\nusing DotDumper.Helpers;\r\nusing DotDumper.Models;\r\n\r\nnamespace DotDumper.Hooks\r\n{\r\n    /// <summary>\r\n    /// The original hook code has been taken from a forum post of the first of May 2017 by Michael 'donrevan' Pekar on <a href = \"https://www.unknowncheats.me/forum/c-/213492-hook-managed-function.html\">UnknownCheats</a>. The code is also available in  <a href = \"https://gist.github.com/mipek/64d6d1ad08dc51c89e9f7d5ae369b203\">this</a> GitHub Gist. The code is licensed under the MIT license. Changes have been made by Max 'Libra' Kersten based on the original code in the linked posts.\r\n    /// </summary>\r\n    class Hook\r\n    {\r\n        /// <summary>\r\n        /// This summary is taken from <a href = \"https://docs.microsoft.com/en-us/windows/win32/api/memoryapi/nf-memoryapi-virtualprotect\">MSDN</a>. Changes the protection on a region of committed pages in the virtual address space of the calling process.\r\n        /// </summary>\r\n        /// <param name=\"address\">The address of the starting page of the region of pages whose access protection attributes are to be changed. All pages in the specified region must be within the same reserved region allocated when calling the VirtualAlloc or VirtualAllocEx function using MEM_RESERVE. The pages cannot span adjacent reserved regions that were allocated by separate calls to VirtualAlloc or VirtualAllocEx using MEM_RESERVE.</param>\r\n        /// <param name=\"size\">The size of the region whose access protection attributes are to be changed, in bytes. The region of affected pages includes all pages containing one or more bytes in the range from the lpAddress parameter to (lpAddress+dwSize). This means that a 2-byte range straddling a page boundary causes the protection attributes of both pages to be changed.</param>\r\n        /// <param name=\"newProtect\">The memory protection option. This parameter can be one of the <a href=\"https://docs.microsoft.com/en-us/windows/win32/memory/memory-protection-constants\">memory protection constants</a>. For mapped views, this value must be compatible with the access protection specified when the view was mapped(see MapViewOfFile, MapViewOfFileEx, and MapViewOfFileExNuma).</param>\r\n        /// <param name=\"oldProtect\">A pointer to a variable that receives the previous access protection value of the first page in the specified region of pages. If this parameter is NULL or does not point to a valid variable, the function fails.</param>\r\n        /// <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>\r\n        [DllImport(\"kernel32.dll\", SetLastError = true)]\r\n        internal static extern bool VirtualProtect(IntPtr address, uint size, uint newProtect, out uint oldProtect);\r\n\r\n        /// <summary>\r\n        /// A constant to resemble the RWX memory protection constant\r\n        /// </summary>\r\n        private const int PAGE_READ_WRITE_EXECUTE = 0x40;\r\n\r\n        /// <summary>\r\n        /// The amount of bytes that the jump to the hook requires on the x86 architecture\r\n        /// </summary>\r\n        private const uint HOOK_SIZE_X86 = 7;\r\n\r\n        /// <summary>\r\n        /// The amount of bytes that the jump to the hook requires on the x86_64 architecture\r\n        /// </summary>\r\n        private const uint HOOK_SIZE_X64 = 12;\r\n\r\n        /// <summary>\r\n        /// The bytes of the original method that are overwritten with the hook jump\r\n        /// </summary>\r\n        private byte[] originalBytes;\r\n\r\n        /// <summary>\r\n        /// The original method that is hooked\r\n        /// </summary>\r\n        public string OriginalMethod { get; private set; }\r\n\r\n        /// <summary>\r\n        /// The method which is called instead of the original method\r\n        /// </summary>\r\n        public string HookMethod { get; private set; }\r\n\r\n        /// <summary>\r\n        /// The method which is called instead of the original MethodInfo's name\r\n        /// </summary>\r\n        public string CompactHookMethod { get; private set; }\r\n\r\n        /// <summary>\r\n        /// The pointer to the original method\r\n        /// </summary>\r\n        private IntPtr OriginalMethodPointer { get; set; }\r\n\r\n        /// <summary>\r\n        /// The pointer to the hook\r\n        /// </summary>\r\n        private IntPtr HookMethodPointer { get; set; }\r\n\r\n        /// <summary>\r\n        /// Creates a hook object, which requires two non-null MethodInfo objects. The hook is not set upon the creation of this object. To set and remove a hook, use the SetHook and UnHook methods in this class respectively.\r\n        /// </summary>\r\n        /// <param name=\"originalMethod\">The original method, which is to be replaced by the hookMethod</param>\r\n        /// <param name=\"hookMethod\">The hook to replace the originalMethod</param>\r\n        public Hook(MethodInfo originalMethod, MethodInfo hookMethod)\r\n        {\r\n            //Checks if either of the arguments are null, throwing an error if one or more conditions are true\r\n            if (originalMethod == null || hookMethod == null)\r\n            {\r\n                throw new ArgumentException(\"Both the original and hook need to be valid methods\");\r\n            }\r\n\r\n            //Sets the original bytes variable to null, meaning the original method is not hooked\r\n            originalBytes = null;\r\n\r\n            //Prepares the method for execution within a constrained execution region\r\n            RuntimeHelpers.PrepareMethod(originalMethod.MethodHandle);\r\n            RuntimeHelpers.PrepareMethod(hookMethod.MethodHandle);\r\n\r\n            //Sets the variables in the class for later use\r\n            OriginalMethod = Serialise.Method(originalMethod);\r\n            OriginalMethodPointer = originalMethod.MethodHandle.GetFunctionPointer();\r\n            HookMethod = Serialise.Method(hookMethod);\r\n            HookMethodPointer = hookMethod.MethodHandle.GetFunctionPointer();\r\n            CompactHookMethod = hookMethod.Name;\r\n        }\r\n\r\n        /// <summary>\r\n        /// Creates a hook object, which requires two non-null UnmanagedMethodInfo objects. The hook is not set upon the creation of this object. To set and remove a hook, use the SetHook and UnHook methods in this class respectively.\r\n        /// </summary>\r\n        /// <param name=\"originalMethod\">The original method, which is to be replaced by the hookMethod</param>\r\n        /// <param name=\"hookMethod\">The hook to replace the originalMethod</param>\r\n        public Hook(UnmanagedMethodInfo originalMethod, UnmanagedMethodInfo hookMethod)\r\n        {\r\n            //Checks if either of the arguments are null, throwing an error if one or more conditions are true\r\n            if (originalMethod == null || hookMethod == null)\r\n            {\r\n                throw new ArgumentException(\"Some provided hook arguments are invalid!\");\r\n            }\r\n\r\n            //Sets the original bytes variable to null, meaning the original method is not hooked\r\n            originalBytes = null;\r\n\r\n            //Sets the variables in the class for later use\r\n            OriginalMethod = originalMethod.FullMethodName;\r\n            OriginalMethodPointer = originalMethod.Pointer;\r\n            HookMethod = hookMethod.FullMethodName;\r\n            HookMethodPointer = hookMethod.Pointer;\r\n            CompactHookMethod = hookMethod.MethodName;\r\n        }\r\n\r\n        /// <summary>\r\n        /// Creates a hook object, which requires a non-null UnmanagedMethodInfo object and a non-null MethodInfo object. The hook is not set upon the creation of this object. To set and remove a hook, use the SetHook and UnHook methods in this class respectively.\r\n        /// </summary>\r\n        /// <param name=\"originalMethod\">The original method, which is to be replaced by the hookMethod</param>\r\n        /// <param name=\"hookMethod\">The hook to replace the originalMethod</param>\r\n        public Hook(UnmanagedMethodInfo originalMethod, MethodInfo hookMethod)\r\n        {\r\n            //Checks if either of the arguments are null, throwing an error if one or more conditions are true\r\n            if (originalMethod == null || hookMethod == null)\r\n            {\r\n                throw new ArgumentException(\"Some provided hook arguments are invalid!\");\r\n            }\r\n\r\n            //Sets the original bytes variable to null, meaning the original method is not hooked\r\n            originalBytes = null;\r\n\r\n            //Prepares the method for execution within a constrained execution region\r\n            RuntimeHelpers.PrepareMethod(hookMethod.MethodHandle);\r\n\r\n            //Sets the variables in the class for later use\r\n            OriginalMethod = originalMethod.FullMethodName;\r\n            OriginalMethodPointer = originalMethod.Pointer;\r\n            HookMethod = Serialise.Method(hookMethod);\r\n            HookMethodPointer = hookMethod.MethodHandle.GetFunctionPointer();\r\n            CompactHookMethod = hookMethod.Name;\r\n        }\r\n\r\n        /// <summary>\r\n        /// Creates a hook object, which requires a non-null MethodInfo object and a non-null UnmanagedMethodInfo object. The hook is not set upon the creation of this object. To set and remove a hook, use the SetHook and UnHook methods in this class respectively.\r\n        /// </summary>\r\n        /// <param name=\"originalMethod\">The original method, which is to be replaced by the hookMethod</param>\r\n        /// <param name=\"hookMethod\">The hook to replace the originalMethod</param>\r\n        public Hook(MethodInfo originalMethod, UnmanagedMethodInfo hookMethod)\r\n        {\r\n            //Checks if either of the arguments are null, throwing an error if one or more conditions are true\r\n            if (originalMethod == null || hookMethod == null)\r\n            {\r\n                throw new ArgumentException(\"Some provided hook arguments are invalid!\");\r\n            }\r\n\r\n            //Sets the original bytes variable to null, meaning the original method is not hooked\r\n            originalBytes = null;\r\n\r\n            //Prepares the method for execution within a constrained execution region\r\n            RuntimeHelpers.PrepareMethod(originalMethod.MethodHandle);\r\n\r\n            //Sets the variables in the class for later use\r\n            OriginalMethod = Serialise.Method(originalMethod);\r\n            OriginalMethodPointer = originalMethod.MethodHandle.GetFunctionPointer();\r\n            HookMethod = hookMethod.FullMethodName;\r\n            HookMethodPointer = hookMethod.Pointer;\r\n            CompactHookMethod = hookMethod.MethodName;\r\n        }\r\n\r\n        /// <summary>\r\n        /// Sets the detour for the original method, redirecting it to the previously provided hook. If the original method is not hooked, this method simply returns.\r\n        /// </summary>\r\n        public void Enable()\r\n        {\r\n            /**\r\n             * The overwritten instructions of the original method are saved in a byte array, so they can be restored later on.\r\n             * Upon the creation of this object, and upon unhooking, this byte array is set to null. As such, any case where\r\n             * this byte array is not null, is a case where the hook is already in-place. To avoid overwriting the saved data \r\n             * with a hooked version, this method returns early.\r\n             */\r\n            if (originalBytes != null)\r\n            {\r\n                return;\r\n            }\r\n\r\n            //Declare the variable that is used to store the previous memory protection value in, as returned by the Interop VirtualProtect call, as the memory segment needs to be writable to write the hook\r\n            uint oldProt;\r\n\r\n            //Declare the variable that is used to store the size of the hook in\r\n            uint hookSize;\r\n\r\n            //Depending on the architecture, the hook size differs\r\n            if (IntPtr.Size == 8)\r\n            {\r\n                hookSize = HOOK_SIZE_X64;\r\n            }\r\n            else\r\n            {\r\n                hookSize = HOOK_SIZE_X86;\r\n            }\r\n\r\n            //Initialise the byte array to store the original data in using the architeture specific size\r\n            originalBytes = new byte[hookSize];\r\n\r\n            /**\r\n            * Ensure that the hook can be writen to the start of the original function in memory, by making the area from the start of the original method\r\n            * plus the size of the hook executable, readable, and writable\r\n            */\r\n            VirtualProtect(OriginalMethodPointer, hookSize, PAGE_READ_WRITE_EXECUTE, out oldProt);\r\n\r\n            //Starts the unsafe code block where the hook is set\r\n            unsafe\r\n            {\r\n                //Declares a byte pointer based on the original method\r\n                byte* ptr = (byte*)OriginalMethodPointer;\r\n\r\n                /**\r\n                 * Copies the original bytes into the byte array in this class. The data in this array is used to restore \r\n                 * the overwritten memory upon unhooking\r\n                 */\r\n                for (int i = 0; i < hookSize; ++i)\r\n                {\r\n                    originalBytes[i] = ptr[i];\r\n                }\r\n\r\n                /**\r\n                 * Depending on the architecture, the assembly instructions that need to be written to force the jump to the hook differ.\r\n                 * The location of the hook is writting into the accumulating register (EAX on x86, RAX on x86_64), after which an\r\n                 * unconditional jump to that location is taken. When the original function is called, the hook is called via the jump.\r\n                 * The hook itself can perform the required and desired actions, after which it simply returns, which transfers the \r\n                 * control back to the caller.\r\n                 */\r\n                if (IntPtr.Size == 8)\r\n                {\r\n                    /**\r\n                    * Writes the following x86_64 assembly instructions at the start of the original function:\r\n                    * movabs rax, addr\r\n                    * jmp rax\r\n                    */\r\n                    *(ptr) = 0x48;\r\n                    *(ptr + 1) = 0xb8;\r\n                    *(IntPtr*)(ptr + 2) = HookMethodPointer;\r\n                    *(ptr + 10) = 0xff;\r\n                    *(ptr + 11) = 0xe0;\r\n                }\r\n                else\r\n                {\r\n                    /**\r\n                     * Writes the following x86 assembly instructions at the start of the original function:\r\n                     * mov eax, addr\r\n                     * jmp eax\r\n                     */\r\n                    *(ptr) = 0xb8;\r\n                    *(IntPtr*)(ptr + 1) = HookMethodPointer;\r\n                    *(ptr + 5) = 0xff;\r\n                    *(ptr + 6) = 0xe0;\r\n                }\r\n            }\r\n            //Restores the memory permissions for the memory segment to the original value\r\n            VirtualProtect(OriginalMethodPointer, hookSize, oldProt, out oldProt);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Unhooks the hook of the original method, allowing calls of the original method to work as usual. If the original method has not been hooked, this call simply returns.\r\n        /// </summary>\r\n        public void Disable()\r\n        {\r\n            /**\r\n             * The overwritten instructions of the original method are saved in a byte array, so they can be restored later on.\r\n             * Upon the creation of this object, and upon unhooking, this byte array is set to null. As such, any case where\r\n             * this byte array is null, is a case where the hook is not in-place. If no hook is set, it cannot be removed either.\r\n             * Therefore, this method simply returns if it is called without having a hook in-place.\r\n             */\r\n            if (originalBytes == null)\r\n            {\r\n                return;\r\n            }\r\n\r\n\r\n            //Declare the variable that is used to store the previous memory protection value in, as returned by the Interop VirtualProtect call, as the memory segment needs to be writable to write the hook\r\n            uint oldProt;\r\n\r\n            //The amount of the original bytes\r\n            uint codeSize = (uint)originalBytes.Length;\r\n\r\n            /**\r\n            * Ensure that the hook can be writen to the start of the original function in memory, by making the area from the start of the original method\r\n            * plus the size of the hook executable, readable, and writable\r\n            */\r\n            VirtualProtect(OriginalMethodPointer, codeSize, PAGE_READ_WRITE_EXECUTE, out oldProt);\r\n\r\n            //Starts the unsafe code block where the hook is removed\r\n            unsafe\r\n            {\r\n                //Declares a byte pointer based on the original method\r\n                byte* ptr = (byte*)OriginalMethodPointer;\r\n\r\n                /**\r\n                 * Copies the original bytes from the byte array to the original method, on their original place, thus removing the hook\r\n                 */\r\n                for (var i = 0; i < codeSize; ++i)\r\n                {\r\n                    ptr[i] = originalBytes[i];\r\n                }\r\n            }\r\n            //Restores the memory permissions for the memory segment to the original value\r\n            VirtualProtect(OriginalMethodPointer, codeSize, oldProt, out oldProt);\r\n\r\n            //The function has been unhooked, meaning the original bytes need to be nulled again, to avoid a faulty (un)hook function to continue when called in the wrong order\r\n            originalBytes = null;\r\n        }\r\n\r\n        /// <summary>\r\n        /// Compares the given method with this instance's hook, based on a string representation of the function's signature, ignoring casing\r\n        /// </summary>\r\n        /// <param name=\"method\">The method to compare the hook with</param>\r\n        /// <returns>True if the two methods are equal in , false if not</returns>\r\n        public bool CompareHook(MethodInfo method)\r\n        {\r\n            return CompareHook(Serialise.Method(method));\r\n        }\r\n\r\n        /// <summary>\r\n        /// Compares the given method with this instance's hook, based on a string representation of the function's signature, ignoring casing\r\n        /// </summary>\r\n        /// <param name=\"method\">The method to compare the hook with</param>\r\n        /// <returns>True if the two methods are equal in , false if not</returns>\r\n        public bool CompareHook(string method)\r\n        {\r\n            return method.Equals(HookMethod, StringComparison.CurrentCultureIgnoreCase);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Compares the given method with this instance's original method, based on a string representation of the function's signature, ignoring casing\r\n        /// </summary>\r\n        /// <param name=\"method\">The method to compare the original method with</param>\r\n        /// <returns>True if the two methods are equal, false if not</returns>\r\n        public bool CompareOriginal(MethodInfo method)\r\n        {\r\n            return CompareOriginal(Serialise.Method(method));\r\n        }\r\n\r\n        /// <summary>\r\n        /// Compares the given method with this instance's original method, based on a string representation of the function's signature, ignoring casing\r\n        /// </summary>\r\n        /// <param name=\"method\">The method to compare the original method with</param>\r\n        /// <returns>True if the two methods are equal, false if not</returns>\r\n        public bool CompareOriginal(string method)\r\n        {\r\n            return method.Equals(OriginalMethod, StringComparison.CurrentCultureIgnoreCase);\r\n        }\r\n    }\r\n}"
  },
  {
    "path": "DotDumper/Hooks/HookManager.cs",
    "content": "﻿using System;\r\nusing System.Collections.Generic;\r\nusing System.IO;\r\nusing System.Reflection;\r\nusing DotDumper.HookHandlers;\r\nusing DotDumper.Models;\r\n\r\nnamespace DotDumper.Hooks\r\n{\r\n    /// <summary>\r\n    /// The HookManager is used to create all hook objects, which are stored in a private static list. Additionally, this class contains methods to set and remove hooks for a given hook, or for all hooks\r\n    /// </summary>\r\n    class HookManager\r\n    {\r\n        /// <summary>\r\n        /// The list where all initialised hooks are stored. Hooks should be added via the AddHook function, rather than directly via the Add function of this list\r\n        /// </summary>\r\n        private static List<Hook> Hooks = new List<Hook>();\r\n\r\n        /// <summary>\r\n        /// Adds a hook to the list of hooks, unless the string representation (disregarding the casing) of the original method or the hook is already present in the list. If this is the case, a warning will be printed via the logger.\r\n        /// </summary>\r\n        /// <param name=\"original\">The method to hook</param>\r\n        /// <param name=\"hook\">The hook to execute when the original method is called</param>\r\n        private static void AddHook(MethodInfo original, MethodInfo hook)\r\n        {\r\n            AddHook(new Hook(original, hook));\r\n        }\r\n\r\n        private static void AddHook(UnmanagedMethodInfo original, UnmanagedMethodInfo hook)\r\n        {\r\n            AddHook(new Hook(original, hook));\r\n        }\r\n\r\n        private static void AddHook(UnmanagedMethodInfo original, MethodInfo hook)\r\n        {\r\n            AddHook(new Hook(original, hook));\r\n        }\r\n\r\n        private static void AddHook(MethodInfo original, UnmanagedMethodInfo hook)\r\n        {\r\n            AddHook(new Hook(original, hook));\r\n        }\r\n\r\n        private static void AddHook(Hook hook)\r\n        {\r\n            bool toAdd = true;\r\n            foreach (Hook currentHook in Hooks)\r\n            {\r\n                if (currentHook.CompareOriginal(hook.OriginalMethod))\r\n                {\r\n                    string message = \"A hook for \\\"\" + currentHook.OriginalMethod + \"\\\" is already present in the set hooks!\\n\" +\r\n                        \"\\tThe hook that is already placed is named \\\"\" + currentHook.HookMethod + \"\\\"\\n\" +\r\n                        \"\\tThe hook that was attempted to be added is named \\\"\" + hook.HookMethod + \"\\\"\\n\" +\r\n                        \"\\n\";\r\n                    Console.WriteLine(message);\r\n                    toAdd = false;\r\n                    break;\r\n                }\r\n                if (currentHook.CompareHook(hook.HookMethod))\r\n                {\r\n                    string message = \"The hook function \\\"\" + currentHook.HookMethod + \"\\\" is already used in a different hook!\\n\" +\r\n                        \"\\tThe original function that is hooked is named \\\"\" + currentHook.OriginalMethod + \"\\\"\\n\" +\r\n                        \"\\tThe original function that was attempted to be added is named \\\"\" + hook.OriginalMethod + \"\\\"\\n\" +\r\n                        \"\\n\";\r\n                    Console.WriteLine(message);\r\n                    toAdd = false;\r\n                    break;\r\n                }\r\n            }\r\n            if (toAdd)\r\n            {\r\n                Hooks.Add(hook);\r\n            }\r\n        }\r\n\r\n        /// <summary>\r\n        /// Initialises all hook objects without setting the hooks. One can select the inclusion of deprecated functions with the first argument, whereas the second argument defines if the set hooks should be logged.\r\n        /// </summary>\r\n        public static void Initialise()\r\n        {\r\n            if (Config.IncludeDeprecatedFunctions)\r\n            {\r\n                #region Deprecated Assembly hooks\r\n                //Deprecated!\r\n                AddHook(OriginalManagedFunctions.AssemblyLoadStringEvidence(), GetMethodInfo(typeof(AssemblyHooks), \"LoadHookStringEvidence\", null));\r\n\r\n                //Deprecated!\r\n                AddHook(OriginalManagedFunctions.AssemblyLoadAssemblyNameEvidence(), GetMethodInfo(typeof(AssemblyHooks), \"LoadHookAssemblyNameEvidence\", null));\r\n\r\n                //Deprecated!\r\n                AddHook(OriginalManagedFunctions.AssemblyLoadByteArrayByteArrayEvidence(), GetMethodInfo(typeof(AssemblyHooks), \"LoadHookByteArrayByteArrayEvidence\", null));\r\n\r\n                //Deprecated!\r\n                AddHook(OriginalManagedFunctions.AssemblyLoadFileStringEvidence(), GetMethodInfo(typeof(AssemblyHooks), \"LoadFileHookStringEvidence\", null));\r\n\r\n                //Deprecated!\r\n                AddHook(OriginalManagedFunctions.AssemblyLoadFromStringEvidence(), GetMethodInfo(typeof(AssemblyHooks), \"LoadFromHookStringEvidence\", null));\r\n\r\n                //Deprecated!\r\n                AddHook(OriginalManagedFunctions.AssemblyLoadFromStringEvidenceByteArrayAssemblyHashAlgorithm(), GetMethodInfo(typeof(AssemblyHooks), \"LoadFromHookStringEvidenceByteArrayAssemblyHashAlgorithm\", null));\r\n\r\n                //Deprecated!\r\n                AddHook(OriginalManagedFunctions.AssemblyLoadWithPartialNameString(), GetMethodInfo(typeof(AssemblyHooks), \"LoadWithPartialNameHookString\", null));\r\n\r\n                //Deprecated!\r\n                AddHook(OriginalManagedFunctions.AssemblyLoadWithPartialNameStringEvidence(), GetMethodInfo(typeof(AssemblyHooks), \"LoadWithPartialNameHookStringEvidence\", null));\r\n                #endregion\r\n\r\n                #region Deprecated Activator hooks\r\n                //Deprecated!\r\n                AddHook(OriginalManagedFunctions.ActivatorCreateInstanceStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence(), GetMethodInfo(typeof(ActivatorHooks), \"CreateInstanceHookStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence\", null));\r\n\r\n                //Deprecated!\r\n                AddHook(OriginalManagedFunctions.ActivatorCreateInstanceAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence(), GetMethodInfo(typeof(ActivatorHooks), \"CreateInstanceHookAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence\", null));\r\n\r\n                //Deprecated!\r\n                AddHook(OriginalManagedFunctions.ActivatorCreateInstanceFromStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence(), GetMethodInfo(typeof(ActivatorHooks), \"CreateInstanceFromHookStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence\", null));\r\n\r\n                //Deprecated!\r\n                AddHook(OriginalManagedFunctions.ActivatorCreateInstanceFromAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence(), GetMethodInfo(typeof(ActivatorHooks), \"CreateInstanceFromHookAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence\", null));\r\n                #endregion\r\n            }\r\n\r\n            #region Assembly hooks\r\n            AddHook(OriginalManagedFunctions.AssemblyGetEntryAssembly(), GetMethodInfo(typeof(AssemblyHooks), \"GetEntryAssemblyHook\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.AssemblyGetExecutingAssembly(), GetMethodInfo(typeof(AssemblyHooks), \"GetExecutingAssemblyHook\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.AssemblyLoadByteArray(), GetMethodInfo(typeof(AssemblyHooks), \"LoadHookByteArray\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.AssemblyLoadAssemblyName(), GetMethodInfo(typeof(AssemblyHooks), \"LoadHookAssemblyName\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.AssemblyLoadString(), GetMethodInfo(typeof(AssemblyHooks), \"LoadHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.AssemblyLoadByteArrayByteArraySecurityContextSource(), GetMethodInfo(typeof(AssemblyHooks), \"LoadHookByteArrayByteArraySecurityContextSource\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.AssemblyLoadByteArrayByteArray(), GetMethodInfo(typeof(AssemblyHooks), \"LoadHookByteArrayByteArray\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.AssemblyLoadFileString(), GetMethodInfo(typeof(AssemblyHooks), \"LoadFileHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.AssemblyLoadFromString(), GetMethodInfo(typeof(AssemblyHooks), \"LoadFromHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.AssemblyLoadFromStringByteArrayAssemblyHashAlgorithm(), GetMethodInfo(typeof(AssemblyHooks), \"LoadFromHookStringByteArrayAssemblyHashAlgorithm\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.AssemblyReflectionOnlyLoadString(), GetMethodInfo(typeof(AssemblyHooks), \"ReflectionOnlyLoadHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.AssemblyReflectionOnlyLoadByteArray(), GetMethodInfo(typeof(AssemblyHooks), \"ReflectionOnlyLoadHookByteArray\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.AssemblyReflectionOnlyLoadFromString(), GetMethodInfo(typeof(AssemblyHooks), \"ReflectionOnlyLoadFromHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.AssemblyUnsafeLoadFromString(), GetMethodInfo(typeof(AssemblyHooks), \"UnsafeLoadFromHookString\", null));\r\n            #endregion\r\n\r\n            #region Convert hooks\r\n            AddHook(OriginalManagedFunctions.ConvertFromBase64StringString(), GetMethodInfo(typeof(ConvertHooks), \"FromBase64StringString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConvertFromBase64CharArrayCharArrayIntInt(), GetMethodInfo(typeof(ConvertHooks), \"FromBase64CharArrayCharyArrayIntInt\", null));\r\n            #endregion\r\n\r\n            #region Process hooks\r\n            AddHook(OriginalManagedFunctions.ProcessGetCurrentProcess(), GetMethodInfo(typeof(ProcessHooks), \"GetCurrentProcessHook\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ProcessGetProcessByIdIntString(), GetMethodInfo(typeof(ProcessHooks), \"GetProcessByIdHookIntString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ProcessGetProcessByIdInt(), GetMethodInfo(typeof(ProcessHooks), \"GetProcessByIdHookInt\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ProcessGetProcesses(), GetMethodInfo(typeof(ProcessHooks), \"GetProcessesHook\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ProcessGetProcessesString(), GetMethodInfo(typeof(ProcessHooks), \"GetProcessesHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ProcessGetProcessesByNameString(), GetMethodInfo(typeof(ProcessHooks), \"GetProcessesByNameHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ProcessGetProcessesByNameStringString(), GetMethodInfo(typeof(ProcessHooks), \"GetProcessesByNameHookStringString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ProcessStartStringString(), GetMethodInfo(typeof(ProcessHooks), \"ProcessStartHookStringString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ProcessStartProcessStartInfo(), GetMethodInfo(typeof(ProcessHooks), \"ProcessStartHookProcessStartInfo\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ProcessStartString(), GetMethodInfo(typeof(ProcessHooks), \"ProcessStartHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ProcessStartStringStringStringSecureStringString(), GetMethodInfo(typeof(ProcessHooks), \"ProcessStartHookStringStringStringSecureStringString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ProcessStartStringStringSecureStringString(), GetMethodInfo(typeof(ProcessHooks), \"ProcessStartHookStringStringSecureStringString\", null));\r\n            #endregion\r\n\r\n            #region File hooks\r\n            AddHook(OriginalManagedFunctions.FileAppendAllLinesStringIenumerableString(), GetMethodInfo(typeof(FileHooks), \"AppendAllLinesHookStringIenumerableString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileAppendAllLinesStringIenumerableStringEncoding(), GetMethodInfo(typeof(FileHooks), \"AppendAllLinesHookStringIenumerableStringEncoding\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileAppendAllTextStringStringEncoding(), GetMethodInfo(typeof(FileHooks), \"AppendAllTextHookStringStringEncoding\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileAppendAllTextStringString(), GetMethodInfo(typeof(FileHooks), \"AppendAllTextHookStringString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileAppendTextString(), GetMethodInfo(typeof(FileHooks), \"AppendTextHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileCopyStringString(), GetMethodInfo(typeof(FileHooks), \"CopyHookStringString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileCopyStringStringBoolean(), GetMethodInfo(typeof(FileHooks), \"CopyHookStringStringBoolean\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileCreateString(), GetMethodInfo(typeof(FileHooks), \"CreateHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileCreateStringInt(), GetMethodInfo(typeof(FileHooks), \"CreateHookStringInt\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileCreateStringIntFileOptions(), GetMethodInfo(typeof(FileHooks), \"CreateHookStringIntFileOptions\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileCreateStringIntFileOptionsFileSecurity(), GetMethodInfo(typeof(FileHooks), \"CreateHookStringIntFileOptionsFileSecurity\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileCreateTextString(), GetMethodInfo(typeof(FileHooks), \"CreateTextHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileDecryptString(), GetMethodInfo(typeof(FileHooks), \"DecryptHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileDeleteString(), GetMethodInfo(typeof(FileHooks), \"DeleteHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileEncryptString(), GetMethodInfo(typeof(FileHooks), \"EncryptHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileExiststString(), GetMethodInfo(typeof(FileHooks), \"ExiststHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileMoveStringString(), GetMethodInfo(typeof(FileHooks), \"MoveHookStringString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileOpenStringFileModeFileAccessFileShare(), GetMethodInfo(typeof(FileHooks), \"OpenHookStringFileModeFileAccessFileShare\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileOpenStringFileModeFileAccess(), GetMethodInfo(typeof(FileHooks), \"OpenHookStringFileModeFileAccess\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileOpenStringFileMode(), GetMethodInfo(typeof(FileHooks), \"OpenHookStringFileMode\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileOpenTextString(), GetMethodInfo(typeof(FileHooks), \"OpenTextHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileOpenWriteString(), GetMethodInfo(typeof(FileHooks), \"OpenWriteHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileReadAllLinesString(), GetMethodInfo(typeof(FileHooks), \"ReadAllLinesHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileReadAllLinesStringEncoding(), GetMethodInfo(typeof(FileHooks), \"ReadAllLinesHookStringEncoding\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileReadAllTextStringEncoding(), GetMethodInfo(typeof(FileHooks), \"ReadAllTextHookStringEncoding\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileReadAllTextString(), GetMethodInfo(typeof(FileHooks), \"ReadAllTextHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileReadLinesString(), GetMethodInfo(typeof(FileHooks), \"ReadLinesHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileReadLinesStringEncoding(), GetMethodInfo(typeof(FileHooks), \"ReadLinesHookStringEncoding\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileReplaceStringStringString(), GetMethodInfo(typeof(FileHooks), \"ReplaceHookStringStringString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileReplaceStringStringStringBoolean(), GetMethodInfo(typeof(FileHooks), \"ReplaceHookStringStringStringBoolean\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileSetAccessControlStringFileSecurity(), GetMethodInfo(typeof(FileHooks), \"SetAccessControlHookStringFileSecurity\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileSetAttributesStringFileAttributes(), GetMethodInfo(typeof(FileHooks), \"SetAttributesHookStringFileAttributes\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileWriteAllBytesStringByteArray(), GetMethodInfo(typeof(FileHooks), \"WriteAllBytesHookStringByteArray\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileWriteAllLinesStringStringArray(), GetMethodInfo(typeof(FileHooks), \"WriteAllLinesHookStringStringArray\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileWriteAllLinesStringStringArrayEncoding(), GetMethodInfo(typeof(FileHooks), \"WriteAllLinesHookStringStringArrayEncoding\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileWriteAllLinesStringIenumerableString(), GetMethodInfo(typeof(FileHooks), \"WriteAllLinesHookStringIenumerableString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileWriteAllLinesStringIenumerableStringEncoding(), GetMethodInfo(typeof(FileHooks), \"WriteAllLinesHookStringIenumerableStringEncoding\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileWriteAllTextStringString(), GetMethodInfo(typeof(FileHooks), \"WriteAllTextHookStringString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileWriteAllTextStringStringEncoding(), GetMethodInfo(typeof(FileHooks), \"WriteAllTextHookStringStringEncoding\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.FileReadAllBytesString(), GetMethodInfo(typeof(FileHooks), \"ReadAllBytesHookString\", null));\r\n            #endregion\r\n\r\n            #region Path hooks\r\n            AddHook(OriginalManagedFunctions.PathChangeExtensionStringString(), GetMethodInfo(typeof(PathHooks), \"ChangeExtensionHookStringString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.PathCombineStringString(), GetMethodInfo(typeof(PathHooks), \"CombineHookStringString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.PathCombineStringStringString(), GetMethodInfo(typeof(PathHooks), \"CombineHookStringStringString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.PathCombineStringStringStringString(), GetMethodInfo(typeof(PathHooks), \"CombineHookStringStringStringString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.PathCombineStringArray(), GetMethodInfo(typeof(PathHooks), \"CombineHookStringArray\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.PathGetDirectoryNameString(), GetMethodInfo(typeof(PathHooks), \"GetDirectoryNameHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.PathGetExtensionString(), GetMethodInfo(typeof(PathHooks), \"GetExtensionHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.PathGetFileNameString(), GetMethodInfo(typeof(PathHooks), \"GetFileNameHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.PathGetFileNameWithoutExtensionString(), GetMethodInfo(typeof(PathHooks), \"GetFileNameWithoutExtensionHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.PathGetFullPathString(), GetMethodInfo(typeof(PathHooks), \"GetFullPathHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.PathGetPathRootString(), GetMethodInfo(typeof(PathHooks), \"GetPathRootHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.PathGetRandomFileName(), GetMethodInfo(typeof(PathHooks), \"GetRandomFileNameHook\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.PathGetTempFileName(), GetMethodInfo(typeof(PathHooks), \"GetTempFileNameHook\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.PathGetTempPath(), GetMethodInfo(typeof(PathHooks), \"GetTempPathHook\", null));\r\n            #endregion\r\n\r\n            #region Thread hooks\r\n            AddHook(OriginalManagedFunctions.ThreadSleepInt(), GetMethodInfo(typeof(ThreadHooks), \"SleepHookInt\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ThreadSleepTimeSpan(), GetMethodInfo(typeof(ThreadHooks), \"SleepHookTimeSpan\", null));\r\n            #endregion\r\n\r\n            #region Environment hooks\r\n            AddHook(OriginalManagedFunctions.EnvironmentExitInt(), GetMethodInfo(typeof(EnvironmentHooks), \"ExitHookInt\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.EnvironmentExpandEnvironmentVariablesString(), GetMethodInfo(typeof(EnvironmentHooks), \"ExpandEnvironmentVariablesHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.EnvironmentFailFastStringException(), GetMethodInfo(typeof(EnvironmentHooks), \"FailFastHookStringException\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.EnvironmentFailFastString(), GetMethodInfo(typeof(EnvironmentHooks), \"FailFastHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.EnvironmentGetCommandLineArgs(), GetMethodInfo(typeof(EnvironmentHooks), \"GetCommandLineArgsHook\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.EnvironmentGetEnvironmentVariableStringEnvironmentVariableTarget(), GetMethodInfo(typeof(EnvironmentHooks), \"GetEnvironmentVariableHookStringEnvironmentVariableTarget\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.EnvironmentGetEnvironmentVariableString(), GetMethodInfo(typeof(EnvironmentHooks), \"GetEnvironmentVariablesHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.EnvironmentGetEnvironmentVariablesEnvironmentVariableTarget(), GetMethodInfo(typeof(EnvironmentHooks), \"GetEnvironmentVariablesHookEnvironmentVariableTarget\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.EnvironmentGetEnvironmentVariables(), GetMethodInfo(typeof(EnvironmentHooks), \"GetEnvironmentVariablesHook\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.EnvironmentGetFolderPathSpecialFolderSpecialFolderOption(), GetMethodInfo(typeof(EnvironmentHooks), \"GetFolderPathHookSpecialFolderSpecialFolderOption\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.EnvironmentGetFolderPathSpecialFolder(), GetMethodInfo(typeof(EnvironmentHooks), \"GetFolderPathHookSpecialFolder\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.EnvironmentGetLogicalDrives(), GetMethodInfo(typeof(EnvironmentHooks), \"GetLogicalDrivesHook\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.EnvironmentSetEnvironmentVariableStringStringEnvironmentVariableTarget(), GetMethodInfo(typeof(EnvironmentHooks), \"SetEnvironmentVariableHookStringStringEnvironmentVariableTarget\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.EnvironmentSetEnvironmentVariableStringString(), GetMethodInfo(typeof(EnvironmentHooks), \"SetEnvironmentVariableHookStringString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.EnvironmentGetResourceFromDefaultString(), GetMethodInfo(typeof(EnvironmentHooks), \"GetResourceFromDefaultHookString\", null));\r\n            #endregion\r\n\r\n            #region ResourceManager hooks\r\n            AddHook(OriginalManagedFunctions.ResourceManagerGetObjectString(), GetMethodInfo(typeof(ResourceManagerHooks), \"GetObjectHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ResourceManagerGetObjectStringCultureInfo(), GetMethodInfo(typeof(ResourceManagerHooks), \"GetObjectHookStringCultureInfo\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ResourceManagerGetStringString(), GetMethodInfo(typeof(ResourceManagerHooks), \"GetStringHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ResourceManagerGetStringStringCultureInfo(), GetMethodInfo(typeof(ResourceManagerHooks), \"GetStringHookStringCultureInfo\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ResourceManagerGetStreamString(), GetMethodInfo(typeof(ResourceManagerHooks), \"GetStreamHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ResourceManagerGetStreamStringCultureInfo(), GetMethodInfo(typeof(ResourceManagerHooks), \"GetStreamHookStringCultureInfo\", null));\r\n            #endregion\r\n\r\n            #region Console hooks\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteString(), GetMethodInfo(typeof(ConsoleHooks), \"WriteHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteObject(), GetMethodInfo(typeof(ConsoleHooks), \"WriteHookObject\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteUlong(), GetMethodInfo(typeof(ConsoleHooks), \"WriteHookUlong\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteLong(), GetMethodInfo(typeof(ConsoleHooks), \"WriteHookLong\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteStringObjectObject(), GetMethodInfo(typeof(ConsoleHooks), \"WriteHookStringObjectObject\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteInt(), GetMethodInfo(typeof(ConsoleHooks), \"WriteHookInt\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteStringObject(), GetMethodInfo(typeof(ConsoleHooks), \"WriteHookStringObject\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteUint(), GetMethodInfo(typeof(ConsoleHooks), \"WriteHookUint\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteStringObjectObjectObjectObject(), GetMethodInfo(typeof(ConsoleHooks), \"WriteHookStringObjectObjectObjectObject\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteStringObjectArray(), GetMethodInfo(typeof(ConsoleHooks), \"WriteHookStringObjectArray\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteBool(), GetMethodInfo(typeof(ConsoleHooks), \"WriteHookBool\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteChar(), GetMethodInfo(typeof(ConsoleHooks), \"WriteHookChar\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteCharArray(), GetMethodInfo(typeof(ConsoleHooks), \"WriteHookCharArray\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteCharArrayIntInt(), GetMethodInfo(typeof(ConsoleHooks), \"WriteHookCharArrayIntInt\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteStringObjectObjectObject(), GetMethodInfo(typeof(ConsoleHooks), \"WriteHookStringObjectObjectObject\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteDecimal(), GetMethodInfo(typeof(ConsoleHooks), \"WriteHookDecimal\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteFloat(), GetMethodInfo(typeof(ConsoleHooks), \"WriteHookFloat\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteDouble(), GetMethodInfo(typeof(ConsoleHooks), \"WriteHookDouble\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteLineString(), GetMethodInfo(typeof(ConsoleHooks), \"WriteLineHookString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteLineObject(), GetMethodInfo(typeof(ConsoleHooks), \"WriteLineHookObject\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteLineUlong(), GetMethodInfo(typeof(ConsoleHooks), \"WriteLineHookUlong\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteLineLong(), GetMethodInfo(typeof(ConsoleHooks), \"WriteLineHookLong\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteLineStringObjectObject(), GetMethodInfo(typeof(ConsoleHooks), \"WriteLineHookStringObjectObject\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteLineInt(), GetMethodInfo(typeof(ConsoleHooks), \"WriteLineHookInt\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteLineStringObject(), GetMethodInfo(typeof(ConsoleHooks), \"WriteLineHookStringObject\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteLineUint(), GetMethodInfo(typeof(ConsoleHooks), \"WriteLineHookUint\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteLineStringObjectObjectObjectObject(), GetMethodInfo(typeof(ConsoleHooks), \"WriteLineHookStringObjectObjectObjectObject\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteLineStringObjectArray(), GetMethodInfo(typeof(ConsoleHooks), \"WriteLineHookStringObjectArray\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteLineBool(), GetMethodInfo(typeof(ConsoleHooks), \"WriteLineHookBool\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteLineChar(), GetMethodInfo(typeof(ConsoleHooks), \"WriteLineHookChar\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteLineCharArray(), GetMethodInfo(typeof(ConsoleHooks), \"WriteLineHookCharArray\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteLineCharArrayIntInt(), GetMethodInfo(typeof(ConsoleHooks), \"WriteLineHookCharArrayIntInt\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteLineStringObjectObjectObject(), GetMethodInfo(typeof(ConsoleHooks), \"WriteLineHookStringObjectObjectObject\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteLineDecimal(), GetMethodInfo(typeof(ConsoleHooks), \"WriteLineHookDecimal\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteLineFloat(), GetMethodInfo(typeof(ConsoleHooks), \"WriteLineHookFloat\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteLineDouble(), GetMethodInfo(typeof(ConsoleHooks), \"WriteLineHookDouble\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ConsoleWriteLine(), GetMethodInfo(typeof(ConsoleHooks), \"WriteLineHook\", null));\r\n            #endregion\r\n\r\n            #region MethodBase hooks\r\n            AddHook(OriginalManagedFunctions.MethodBaseInvokeObjectObjectArray(), GetMethodInfo(typeof(MethodBaseHooks), \"InvokeHookObjectObjectArray\", null));\r\n\r\n            //Cannot hook abstract method\r\n            //AddHook(OriginalFunctions.MethodBaseInvokeObjectBindingFlagsBinderObjectArrayCultureInfo(), GetMethodInfo(typeof(MethodBaseHooks), \"InvokeHookObjectBindingFlagsBinderObjectArrayCultureInfo\", null));\r\n            #endregion\r\n\r\n            #region Type hooks\r\n            AddHook(OriginalManagedFunctions.TypeInvokeMemberStringBindingFlagsBinderObjectObjectArray(), GetMethodInfo(typeof(TypeHooks), \"InvokeMemberHookStringBindingFlagsBinderObjectObjectArray\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.TypeInvokeMemberStringBindingFlagsBinderObjectObjectArrayCultureInfo(), GetMethodInfo(typeof(TypeHooks), \"InvokeMemberHookStringBindingFlagsBinderObjectObjectArrayCultureInfo\", null));\r\n            #endregion\r\n\r\n            #region Activator hooks\r\n            AddHook(OriginalManagedFunctions.ActivatorCreateComInstanceFromStringStringByteArrayAssemblyHashAlgorithm(), GetMethodInfo(typeof(ActivatorHooks), \"CreateComInstanceFromHookStringStringByteArrayAssemblyHashAlgorithm\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ActivatorCreateComInstanceFromStringString(), GetMethodInfo(typeof(ActivatorHooks), \"CreateComInstanceFromHookStringString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ActivatorCreateInstanceType(), GetMethodInfo(typeof(ActivatorHooks), \"CreateInstanceHookType\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ActivatorCreateInstanceTypeBool(), GetMethodInfo(typeof(ActivatorHooks), \"CreateInstanceHookTypeBool\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ActivatorCreateInstanceActivationContext(), GetMethodInfo(typeof(ActivatorHooks), \"CreateInstanceHookActivationContext\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ActivatorCreateInstanceTypeObjectArray(), GetMethodInfo(typeof(ActivatorHooks), \"CreateInstanceHookTypeObjectArray\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ActivatorCreateInstanceStringString(), GetMethodInfo(typeof(ActivatorHooks), \"CreateInstanceHookStringString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ActivatorCreateInstanceTypeBindingFlagsBinderObjectArrayCultureInfo(), GetMethodInfo(typeof(ActivatorHooks), \"CreateInstanceHookTypeBindingFlagsBinderObjectArrayCultureInfo\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ActivatorCreateInstanceTypeBindingFlagsBinderObjectArrayCultureInfoObjectArray(), GetMethodInfo(typeof(ActivatorHooks), \"CreateInstanceHookTypeBindingFlagsBinderObjectArrayCultureInfoObjectArray\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ActivatorCreateInstanceStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArray(), GetMethodInfo(typeof(ActivatorHooks), \"CreateInstanceHookStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArray\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ActivatorCreateInstanceActivationContextStringArray(), GetMethodInfo(typeof(ActivatorHooks), \"CreateInstanceHookActivationContextStringArray\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ActivatorCreateInstanceStringStringObjectArray(), GetMethodInfo(typeof(ActivatorHooks), \"CreateInstanceHookStringStringObjectArray\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ActivatorCreateInstanceAppDomainStringString(), GetMethodInfo(typeof(ActivatorHooks), \"CreateInstanceHookAppDomainStringString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ActivatorCreateInstanceAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArray(), GetMethodInfo(typeof(ActivatorHooks), \"CreateInstanceHookAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArray\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ActivatorCreateInstanceFromAppDomainStringString(), GetMethodInfo(typeof(ActivatorHooks), \"CreateInstanceFromHookAppDomainStringString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ActivatorCreateInstanceFromAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArray(), GetMethodInfo(typeof(ActivatorHooks), \"CreateInstanceFromHookAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArray\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ActivatorCreateInstanceFromStringString(), GetMethodInfo(typeof(ActivatorHooks), \"CreateInstanceFromHookStringString\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ActivatorCreateInstanceFromStringStringObjectArray(), GetMethodInfo(typeof(ActivatorHooks), \"CreateInstanceFromHookStringStringObjectArray\", null));\r\n\r\n            AddHook(OriginalManagedFunctions.ActivatorCreateInstanceFromStringStringBoolBindingFlagsBinderObjectArrayCultureInfoObjectArray(), GetMethodInfo(typeof(ActivatorHooks), \"CreateInstanceFromHookStringStringBoolBindingFlagsBinderObjectArrayCultureInfoObjectArray\", null));\r\n            #endregion\r\n\r\n            #region kernel32.dll hooks\r\n\r\n            string hookPath = \"DotDumperNative\";\r\n\r\n            if (IntPtr.Size == 4)\r\n            {\r\n                hookPath += \"_x86\";\r\n            }\r\n            else if (IntPtr.Size == 8)\r\n            {\r\n                hookPath += \"_x64\";\r\n            }\r\n            hookPath += \".dll\";\r\n\r\n\r\n\r\n            //Working hooks\r\n            AddHook(OriginalUnmanagedFunctions.Kernel32WriteProcessMemory(), new UnmanagedMethodInfo(hookPath, \"WriteProcessMemoryHook\", \"WriteProcessMemoryHook\", null));\r\n            AddHook(OriginalUnmanagedFunctions.Kernel32CreateProcessW(), new UnmanagedMethodInfo(hookPath, \"CreateProcessWHook\", \"CreateProcessWHook\", null));\r\n            AddHook(OriginalUnmanagedFunctions.Kernel32CreateProcessA(), new UnmanagedMethodInfo(hookPath, \"CreateProcessAHook\", \"CreateProcessAHook\", null));\r\n            AddHook(OriginalUnmanagedFunctions.User32MessageBoxW(), new UnmanagedMethodInfo(hookPath, \"MessageBoxW\", \"MessageBoxWHook\", null));\r\n\r\n            //Download related API calls\r\n            #endregion\r\n\r\n            if (Config.LogHooks)\r\n            {\r\n                LogHooks();\r\n            }\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object from the given type, using the given name (disregarding the casing), and matching the given parameter types (disregarding the casing) and count. Note that only public methods from the given type are iterated!\r\n        /// </summary>\r\n        /// <param name=\"type\">The type to find the method in</param>\r\n        /// <param name=\"name\">The function name, case insensitive </param>\r\n        /// <param name=\"parameterTypes\">The parameter type(s), insensitive</param>\r\n        /// <returns>If a match is found, the corresponding MethodInfo object is returned. If no match is found, null is returned</returns>\r\n        public static MethodInfo GetMethodInfo(Type type, string name, List<string> parameterTypes)\r\n        {\r\n            //Get all public methods from the given type\r\n            MethodInfo[] methodInfos = type.GetMethods(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Static | BindingFlags.Instance);\r\n\r\n            //Iterate over all methods\r\n            foreach (MethodInfo methodInfo in methodInfos)\r\n            {\r\n                //If the name (disregarding casing) is the same, more checks follow, as the correct overloaded method needs to be selected (if present)\r\n                if (methodInfo.Name.Equals(name, StringComparison.InvariantCultureIgnoreCase))\r\n                {\r\n                    //If the given list is not null, include a check for the parameter types (and count)\r\n                    if (parameterTypes != null)\r\n                    {\r\n                        //Get the information regarding the parameters of the method\r\n                        ParameterInfo[] parameterInfos = methodInfo.GetParameters();\r\n                        //If the amount of parameters is the same, it is a potential match (though not a certain one, as overloads with different types can have the same amount of arguments)\r\n                        if (parameterInfos.Length == parameterTypes.Count)\r\n                        {\r\n                            //A local variable that states if the two functions match\r\n                            bool isMatching = true;\r\n\r\n                            //Iterate over all the user-provided parameters\r\n                            for (int i = 0; i < parameterTypes.Count; i++)\r\n                            {\r\n                                //Get the type from the parameter at the given index\r\n                                string parameterInfoType = parameterInfos[i].ParameterType.Name;\r\n                                //Compare the name (disregarding the casing) of the two parameters\r\n                                if (parameterInfoType.Equals(parameterTypes[i], StringComparison.InvariantCultureIgnoreCase) == false)\r\n                                {\r\n                                    //If the parameter types do not match at any point in time, the functions do not match\r\n                                    isMatching = false;\r\n                                    break;\r\n                                }\r\n                            }\r\n                            //If all types matched, the boolean's value remains true\r\n                            if (isMatching)\r\n                            {\r\n                                //Since everything matches, this function matches with the provided information\r\n                                return methodInfo;\r\n                            }\r\n                        }\r\n                    }\r\n                    else //If no parameters are provided, the first hit is returned\r\n                    {\r\n                        return methodInfo;\r\n                    }\r\n                }\r\n            }\r\n            //If no match is found, null is returned\r\n            return null;\r\n        }\r\n\r\n        /// <summary>\r\n        /// Logs all loaded hooks via the logger object\r\n        /// </summary>\r\n        private static void LogHooks()\r\n        {\r\n            string title = \"---------------Logging all \" + Hooks.Count + \" loaded hooks---------------\";\r\n            string message = title + \"\\n\";\r\n            foreach (Hook hook in Hooks)\r\n            {\r\n                message += hook.OriginalMethod + \"\\n\";\r\n            }\r\n            message += \"\\n\";\r\n\r\n            //Create a nearly empty log entry object with the relevant information\r\n            //LogEntry entry = new LogEntry(null, null, null, null, null, null, message, null, null, null, null);\r\n            //The creation of a log entry sets all hooks as it obtains the current time, which needs to be un-set\r\n            //UnHookAll();\r\n            //Write the entry to the log\r\n            //GenericHookHelper._Logger.Log(entry, true, false);\r\n            Console.WriteLine(message);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Sets all hooks\r\n        /// </summary>\r\n        public static void HookAll()\r\n        {\r\n            foreach (Hook hook in Hooks)\r\n            {\r\n                hook.Enable();\r\n            }\r\n        }\r\n\r\n        /// <summary>\r\n        /// Removes all the hooks\r\n        /// </summary>\r\n        public static void UnHookAll()\r\n        {\r\n            foreach (Hook hook in Hooks)\r\n            {\r\n                hook.Disable();\r\n            }\r\n        }\r\n\r\n        /// <summary>\r\n        /// Sets the hook, based on the given hook name, ignoring the casing\r\n        /// </summary>\r\n        /// <param name=\"hookName\">The name of the hook function (ignoring the return type or parameters)</param>\r\n        /// <returns>True if the hook is set, false if there is no hook with such a name</returns>\r\n        public static bool HookByHookName(string hookName)\r\n        {\r\n            foreach (Hook hook in Hooks)\r\n            {\r\n                if (hook.CompactHookMethod.Equals(hookName, StringComparison.InvariantCultureIgnoreCase))\r\n                {\r\n                    hook.Enable();\r\n                    return true;\r\n                }\r\n            }\r\n            return false;\r\n        }\r\n\r\n        /// <summary>\r\n        /// Removes the hook for the given original method, based on the given hook name, ignoring the casing\r\n        /// </summary>\r\n        /// <param name=\"hookName\">The name of the hook function (ignoring the return type or parameters)</param>\r\n        /// <returns>True if the hook is removed, false if there is no hook with such a name</returns>\r\n        public static bool UnHookByHookName(string hookName)\r\n        {\r\n            foreach (Hook hook in Hooks)\r\n            {\r\n                if (hook.CompactHookMethod.Equals(hookName, StringComparison.InvariantCultureIgnoreCase))\r\n                {\r\n                    hook.Disable();\r\n                    return true;\r\n                }\r\n            }\r\n            return false;\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/Hooks/InteropFunctions.cs",
    "content": "﻿using System;\r\nusing System.Runtime.InteropServices;\r\n\r\nnamespace DotDumper.Hooks\r\n{\r\n    class InteropFunctions\r\n    {\r\n        #region Structures\r\n        [StructLayout(LayoutKind.Sequential, Pack = 1)]\r\n        public struct PROCESS_INFORMATION\r\n        {\r\n            public IntPtr ProcessHandle;\r\n            public IntPtr ThreadHandle;\r\n            public uint ProcessId;\r\n            public uint ThreadId;\r\n        }\r\n\r\n        [StructLayout(LayoutKind.Sequential, Pack = 1)]\r\n        public struct STARTUP_INFORMATION\r\n        {\r\n            public uint Size;\r\n            public string Reserved1;\r\n            public string Desktop;\r\n            public string Title;\r\n            [MarshalAs(UnmanagedType.ByValArray, SizeConst = 36)]\r\n            public byte[] Misc;\r\n            public IntPtr Reserved2;\r\n            public IntPtr StdInput;\r\n            public IntPtr StdOutput;\r\n            public IntPtr StdError;\r\n        }\r\n\r\n        [StructLayout(LayoutKind.Sequential, Pack = 1)]\r\n        public struct SECURITY_ATTRIBUTES\r\n        {\r\n            uint nLength;\r\n            IntPtr lpSecurityDescriptor;\r\n            bool bInheritHandle;\r\n        }\r\n\r\n        /// <summary>\r\n        /// The struct definition for the SystemTime struct\r\n        /// </summary>\r\n        public struct SystemTime\r\n        {\r\n            public ushort Year;\r\n            public ushort Month;\r\n            public ushort DayOfWeek;\r\n            public ushort Day;\r\n            public ushort Hour;\r\n            public ushort Minute;\r\n            public ushort Second;\r\n            public ushort Millisecond;\r\n        };\r\n        #endregion\r\n\r\n        #region kernel32.dll\r\n        [DllImport(\"kernel32.dll\", SetLastError = true)]\r\n        public static extern bool WriteProcessMemory(IntPtr hProcess, int lpBaseAddress, byte[] lpBuffer, int nSize, out IntPtr lpNumberOfBytesWritten);\r\n\r\n        [DllImport(\"kernel32.dll\", SetLastError = true)]\r\n        public static extern uint GetProcessId(IntPtr handle);\r\n\r\n        [DllImport(\"kernel32.dll\", CharSet = CharSet.Auto, SetLastError = true)]\r\n        public static extern IntPtr LoadLibrary(string libname);\r\n\r\n        [DllImport(\"kernel32.dll\")]\r\n        public static extern IntPtr VirtualAlloc(IntPtr lpAddress, uint dwSize, uint flAllocationType, uint flProtect);\r\n\r\n        [DllImport(\"kernel32.dll\")]\r\n        public static extern int VirtualAllocEx(IntPtr handle, int address, int length, int type, int protect);\r\n\r\n        [DllImport(\"kernel32.dll\")]\r\n        public static extern bool ReadProcessMemory(IntPtr process, int baseAddress, ref int buffer, int bufferSize, ref int bytesRead);\r\n\r\n        [DllImport(\"kernel32.dll\")]\r\n        public static extern bool Wow64SetThreadContext(IntPtr thread, int[] context);\r\n\r\n        [DllImport(\"kernel32.dll\")]\r\n        public static extern bool SetThreadContext(IntPtr thread, int[] context);\r\n\r\n        [DllImport(\"kernel32.dll\")]\r\n        public static extern bool Wow64GetThreadContext(IntPtr thread, int[] context);\r\n\r\n        [DllImport(\"kernel32.dll\")]\r\n        public static extern bool GetThreadContext(IntPtr thread, int[] context);\r\n\r\n        [DllImport(\"kernel32.dll\", CharSet = CharSet.Ansi)]\r\n        public static extern bool CreateProcessA(string applicationName, string commandLine, IntPtr processAttributes, IntPtr threadAttributes, bool inheritHandles, uint creationFlags, IntPtr environment, string currentDirectory, ref STARTUP_INFORMATION startupInfo, ref PROCESS_INFORMATION processInformation);\r\n\r\n        [DllImport(\"kernel32.dll\", CharSet = CharSet.Unicode)]\r\n        public static extern bool CreateProcessW(IntPtr applicationName, IntPtr commandLine, IntPtr processAttributes, IntPtr threadAttributes, bool inheritHandles, int creationFlags, IntPtr environment, IntPtr currentDirectory, ref IntPtr startupInfo, ref IntPtr processInformation);\r\n\r\n        [DllImport(\"kernel32.dll\")]\r\n        public static extern int ResumeThread(IntPtr handle);\r\n\r\n        [DllImport(\"kernel32.dll\", SetLastError = true)]\r\n        internal static extern bool VirtualProtect(IntPtr address, uint size, uint newProtect, out uint oldProtect);\r\n\r\n        [DllImport(\"kernel32.dll\", SetLastError = true)]\r\n        public static extern bool VirtualProtectEx(IntPtr hProcess, int lpAddress, UIntPtr dwSize, uint flNewProtect, out uint lpflOldProtect);\r\n\r\n        [DllImport(\"kernel32\", CharSet = CharSet.Ansi, SetLastError = true)]\r\n        public static extern IntPtr GetProcAddress(IntPtr hModule, string procName);\r\n\r\n        [DllImport(\"kernel32.dll\", CharSet = CharSet.Auto)]\r\n        public static extern IntPtr GetModuleHandle(string lpModuleName);\r\n\r\n        /// <summary>\r\n        /// The native import of the SetSystemTime function from kernel32.dll\r\n        /// </summary>\r\n        /// <param name=\"sysTime\">A reference to an instance of the SystemTime struct</param>\r\n        /// <returns>True if set correctly, false if not</returns>\r\n        [DllImport(\"kernel32.dll\", EntryPoint = \"SetSystemTime\", SetLastError = true)]\r\n        public extern static bool SetSystemTime(ref SystemTime sysTime);\r\n        #endregion\r\n\r\n        #region ntdll.dll\r\n        [DllImport(\"ntdll.dll\")]\r\n        public static extern int NtUnmapViewOfSection(IntPtr process, int baseAddress);\r\n        #endregion\r\n\r\n        #region user32.dll\r\n        [DllImport(\"user32.dll\", CharSet = CharSet.Unicode)]\r\n        public static extern int MessageBoxW(int hWnd, String text, String caption, uint type);\r\n        #endregion\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/Hooks/OriginalManagedFunctions.cs",
    "content": "﻿using System;\r\nusing System.Collections.Generic;\r\nusing System.Diagnostics;\r\nusing System.IO;\r\nusing System.Net;\r\nusing System.Reflection;\r\nusing System.Resources;\r\nusing System.Threading;\r\n\r\nnamespace DotDumper.Hooks\r\n{\r\n    /// <summary>\r\n    /// All methods within this class refer to managed functions. This class contains static functions which obtain the MethodInfo object. This object, for the corresponding function, is used in the hooks of DotDumper, and when logging certain calls.\r\n    /// </summary>\r\n    class OriginalManagedFunctions\r\n    {\r\n        #region Original ResourceManager methods\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for ResourceManager.GetObject(string name)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ResourceManagerGetObjectString()\r\n        {\r\n            Type type = typeof(ResourceManager);\r\n            string name = \"GetObject\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for ResourceManager.GetObject(string name, CultureInfo cultureInfo)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ResourceManagerGetObjectStringCultureInfo()\r\n        {\r\n            Type type = typeof(ResourceManager);\r\n            string name = \"GetObject\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"cultureInfo\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for ResourceManager.GetString(string name)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ResourceManagerGetStringString()\r\n        {\r\n            Type type = typeof(ResourceManager);\r\n            string name = \"GetString\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for ResourceManager.GetString(string name, CultureInfo cultureInfo)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ResourceManagerGetStringStringCultureInfo()\r\n        {\r\n            Type type = typeof(ResourceManager);\r\n            string name = \"GetString\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"cultureInfo\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for ResourceManager.GetString(string name)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ResourceManagerGetStreamString()\r\n        {\r\n            Type type = typeof(ResourceManager);\r\n            string name = \"GetStream\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for ResourceManager.GetString(string name, CultureInfo cultureInfo)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ResourceManagerGetStreamStringCultureInfo()\r\n        {\r\n            Type type = typeof(ResourceManager);\r\n            string name = \"GetStream\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"cultureInfo\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n        #endregion\r\n\r\n        #region Original Environment methods\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Environment.Exit(int exitCode)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo EnvironmentExitInt()\r\n        {\r\n            Type type = typeof(Environment);\r\n            string name = \"Exit\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"int32\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Environment.ExpandEnvironmentVariables(string name)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo EnvironmentExpandEnvironmentVariablesString()\r\n        {\r\n            Type type = typeof(Environment);\r\n            string name = \"ExpandEnvironmentVariables\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Environment.FailFast(string message, Exception exception)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo EnvironmentFailFastStringException()\r\n        {\r\n            Type type = typeof(Environment);\r\n            string name = \"FailFast\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"exception\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Environment.FailFast(string message)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo EnvironmentFailFastString()\r\n        {\r\n            Type type = typeof(Environment);\r\n            string name = \"FailFast\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Environment.GetCommandLineArgs()\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo EnvironmentGetCommandLineArgs()\r\n        {\r\n            Type type = typeof(Environment);\r\n            string name = \"GetCommandLineArgs\";\r\n            List<string> parameterTypes = new List<string>();\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Environment.GetEnvironmentVariable(string variable, EnvironmentVariableTarget target)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo EnvironmentGetEnvironmentVariableStringEnvironmentVariableTarget()\r\n        {\r\n            Type type = typeof(Environment);\r\n            string name = \"GetEnvironmentVariable\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"EnvironmentVariableTarget\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Environment.GetEnvironmentVariable(string variable)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo EnvironmentGetEnvironmentVariableString()\r\n        {\r\n            Type type = typeof(Environment);\r\n            string name = \"GetEnvironmentVariable\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Environment.GetEnvironmentVariables(EnvironmentVariableTarget target)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo EnvironmentGetEnvironmentVariablesEnvironmentVariableTarget()\r\n        {\r\n            Type type = typeof(Environment);\r\n            string name = \"GetEnvironmentVariables\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"EnvironmentVariableTarget\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Environment.GetEnvironmentVariables()\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo EnvironmentGetEnvironmentVariables()\r\n        {\r\n            Type type = typeof(Environment);\r\n            string name = \"GetEnvironmentVariables\";\r\n            List<string> parameterTypes = new List<string>();\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Environment.GetFolderPath(SpecialFolder folder, SpecialFolderOption option)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo EnvironmentGetFolderPathSpecialFolderSpecialFolderOption()\r\n        {\r\n            Type type = typeof(Environment);\r\n            string name = \"GetFolderPath\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"SpecialFolder\");\r\n            parameterTypes.Add(\"SpecialFolderOption\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Environment.GetFolderPath(SpecialFolder folder)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo EnvironmentGetFolderPathSpecialFolder()\r\n        {\r\n            Type type = typeof(Environment);\r\n            string name = \"GetFolderPath\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"SpecialFolder\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Environment.GetLogicalDrives()\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo EnvironmentGetLogicalDrives()\r\n        {\r\n            Type type = typeof(Environment);\r\n            string name = \"GetLogicalDrives\";\r\n            List<string> parameterTypes = new List<string>();\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Environment.SetEnvironmentVariable(string variable, string value, EnvironmentVariableTarget target)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo EnvironmentSetEnvironmentVariableStringStringEnvironmentVariableTarget()\r\n        {\r\n            Type type = typeof(Environment);\r\n            string name = \"SetEnvironmentVariable\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"EnvironmentVariableTarget\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Environment.SetEnvironmentVariable(string variable, string value)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo EnvironmentSetEnvironmentVariableStringString()\r\n        {\r\n            Type type = typeof(Environment);\r\n            string name = \"SetEnvironmentVariable\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Environment.GetResourceFromDefault(string key)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo EnvironmentGetResourceFromDefaultString()\r\n        {\r\n            Type type = typeof(Environment);\r\n            string name = \"GetResourceFromDefault\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n        #endregion\r\n\r\n        #region Original Thread methods\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Thread.Sleep(int millisecondsTimeout)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ThreadSleepInt()\r\n        {\r\n            Type type = typeof(Thread);\r\n            string name = \"Sleep\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"int32\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Thread.Sleep(TimeSpan timeout)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ThreadSleepTimeSpan()\r\n        {\r\n            Type type = typeof(Thread);\r\n            string name = \"Sleep\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"timespan\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n        #endregion\r\n\r\n        #region Original Path methods\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Path.ChangeExtension(string path, string extension)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo PathChangeExtensionStringString()\r\n        {\r\n            Type type = typeof(Path);\r\n            string name = \"ChangeExtension\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Path.Combine(string path1, string path2)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo PathCombineStringString()\r\n        {\r\n            Type type = typeof(Path);\r\n            string name = \"Combine\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Path.Combine(string path1, string path2, string path3)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo PathCombineStringStringString()\r\n        {\r\n            Type type = typeof(Path);\r\n            string name = \"Combine\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Path.Combine(string path1, string path2, string path3, string path4)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo PathCombineStringStringStringString()\r\n        {\r\n            Type type = typeof(Path);\r\n            string name = \"Combine\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Path.Combine(params string[] paths)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo PathCombineStringArray()\r\n        {\r\n            Type type = typeof(Path);\r\n            string name = \"Combine\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string[]\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Path.GetDirectoryName(string path)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo PathGetDirectoryNameString()\r\n        {\r\n            Type type = typeof(Path);\r\n            string name = \"GetDirectoryName\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Path.GetExtension(string path)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo PathGetExtensionString()\r\n        {\r\n            Type type = typeof(Path);\r\n            string name = \"GetExtension\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Path.GetFileName(string path)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo PathGetFileNameString()\r\n        {\r\n            Type type = typeof(Path);\r\n            string name = \"GetFileName\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Path.GetFileNameWithoutExtension(string path)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo PathGetFileNameWithoutExtensionString()\r\n        {\r\n            Type type = typeof(Path);\r\n            string name = \"GetFileNameWithoutExtension\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Path.GetFullPath(string path)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo PathGetFullPathString()\r\n        {\r\n            Type type = typeof(Path);\r\n            string name = \"GetFullPath\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Path.GetPathRoot(string path)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo PathGetPathRootString()\r\n        {\r\n            Type type = typeof(Path);\r\n            string name = \"GetPathRoot\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Path.GetRandomFileName()\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo PathGetRandomFileName()\r\n        {\r\n            Type type = typeof(Path);\r\n            string name = \"GetRandomFileName\";\r\n            List<string> parameterTypes = new List<string>();\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Path.GetTempFileName()\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo PathGetTempFileName()\r\n        {\r\n            Type type = typeof(Path);\r\n            string name = \"GetTempFileName\";\r\n            List<string> parameterTypes = new List<string>();\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Path.GetTempPath()\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo PathGetTempPath()\r\n        {\r\n            Type type = typeof(Path);\r\n            string name = \"GetTempPath\";\r\n            List<string> parameterTypes = new List<string>();\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n        #endregion\r\n\r\n        #region Original File methods\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.AppendAllLines(string path, IEnumerable<string> contents)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileAppendAllLinesStringIenumerableString()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"AppendAllLines\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"IEnumerable`1\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.AppendAllLines(string path, IEnumerable<string> contents, Encoding encoding)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileAppendAllLinesStringIenumerableStringEncoding()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"AppendAllLines\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"IEnumerable`1\");\r\n            parameterTypes.Add(\"encoding\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.AppendAllText(string path, string contents, Encoding encoding)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileAppendAllTextStringStringEncoding()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"AppendAllText\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"encoding\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.AppendAllText(string path, string contents)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileAppendAllTextStringString()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"AppendAllText\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.AppendText(string path)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileAppendTextString()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"AppendText\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.Copy(string sourceFileName, string destFileName)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileCopyStringString()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"Copy\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.Copy(string sourceFileName, string destFileName, bool overwrite)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileCopyStringStringBoolean()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"Copy\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"boolean\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.Create(string path)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileCreateString()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"Create\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.Create(string path, int bufferSize)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileCreateStringInt()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"Create\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"int32\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.Create(string path, int bufferSize, FileOptions options)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileCreateStringIntFileOptions()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"Create\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"int32\");\r\n            parameterTypes.Add(\"FileOptions\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.Create(string path, int bufferSize, FileOptions options, FileSecurity fileSecurity)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileCreateStringIntFileOptionsFileSecurity()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"Create\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"int32\");\r\n            parameterTypes.Add(\"FileOptions\");\r\n            parameterTypes.Add(\"FileSecurity\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.CreateText(string path)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileCreateTextString()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"CreateText\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.Decrypt(string path)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileDecryptString()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"Decrypt\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.Delete(string path)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileDeleteString()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"Delete\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.Encrypt(string path)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileEncryptString()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"Encrypt\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.Exists(string path)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileExiststString()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"Exists\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.Move(string sourceFileName, string destFileName)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileMoveStringString()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"Move\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.Open(string path, FileMode mode, FileAccess access, FileShare share)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileOpenStringFileModeFileAccessFileShare()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"Open\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"FileMode\");\r\n            parameterTypes.Add(\"FileAccess\");\r\n            parameterTypes.Add(\"FileShare\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.Open(string path, FileMode mode)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileOpenStringFileMode()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"Open\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"FileMode\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.Open(string path, FileMode mode, FileAccess access)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileOpenStringFileModeFileAccess()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"Open\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"FileMode\");\r\n            parameterTypes.Add(\"FileAccess\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.OpenRead(string path)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileOpenReadString()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"OpenRead\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.OpenText(string path)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileOpenTextString()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"OpenText\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.OpenWrite(string path)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileOpenWriteString()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"OpenWrite\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.ReadAllLines(string path, Encoding encoding)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileReadAllLinesStringEncoding()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"ReadAllLines\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"encoding\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.ReadAllLines(string path)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileReadAllLinesString()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"ReadAllLines\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.ReadAllText(string path)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileReadAllTextString()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"ReadAllText\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.ReadAllText(string path, Encoding encoding)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileReadAllTextStringEncoding()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"ReadAllText\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"encoding\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.ReadLines(string path, Encoding encoding)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileReadLinesStringEncoding()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"ReadLines\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"encoding\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.ReadLines(string path)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileReadLinesString()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"ReadLines\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.Replace(string sourceFileName, string destinationFileName, string destinationBackupFileName)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileReplaceStringStringString()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"Replace\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.Replace(string sourceFileName, string destinationFileName, string destinationBackupFileName, bool ignoreMetadataErrors)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileReplaceStringStringStringBoolean()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"Replace\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"boolean\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.SetAccessControl(string path, FileSecurity fileSecurity)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileSetAccessControlStringFileSecurity()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"SetAccessControl\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"FileSecurity\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.SetAttributes(string path, FileAttributes fileAttributes)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileSetAttributesStringFileAttributes()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"SetAttributes\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"FileAttributes\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.WriteAllBytes(string path, byte[] bytes)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileWriteAllBytesStringByteArray()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"WriteAllBytes\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"byte[]\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.WriteAllLines(string path, string[] contents)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileWriteAllLinesStringStringArray()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"WriteAllLines\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string[]\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.WriteAllLines(string path, string[] contents, Encoding encoding)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileWriteAllLinesStringStringArrayEncoding()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"WriteAllLines\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string[]\");\r\n            parameterTypes.Add(\"encoding\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.WriteAllLines(string path, IEnumerable<string> contents)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileWriteAllLinesStringIenumerableString()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"WriteAllLines\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"ienumerable`1\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.WriteAllLines(string path, IEnumerable<string> contents, Encoding encoding)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileWriteAllLinesStringIenumerableStringEncoding()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"WriteAllLines\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"ienumerable`1\");\r\n            parameterTypes.Add(\"encoding\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.WriteAllText(string path, string contents)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileWriteAllTextStringString()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"WriteAllText\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.WriteAllText(string path, string contents, Encoding encoding)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileWriteAllTextStringStringEncoding()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"WriteAllText\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"encoding\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for File.ReadAllBytes(string path)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo FileReadAllBytesString()\r\n        {\r\n            Type type = typeof(File);\r\n            string name = \"ReadAllBytes\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n        #endregion\r\n\r\n        #region Original Convert methods\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Convert.FromBase64String(string s)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConvertFromBase64StringString()\r\n        {\r\n            Type type = typeof(Convert);\r\n            string name = \"FromBase64String\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Convert.FromBase64CharArray(char[] inArray, int offset, int length)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConvertFromBase64CharArrayCharArrayIntInt()\r\n        {\r\n            Type type = typeof(Convert);\r\n            string name = \"FromBase64CharArray\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"char[]\");\r\n            parameterTypes.Add(\"int32\");\r\n            parameterTypes.Add(\"int32\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n        #endregion\r\n\r\n        #region Original Process methods\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Process.GetCurrentProcess()\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ProcessGetCurrentProcess()\r\n        {\r\n            Type type = typeof(Process);\r\n            string name = \"GetCurrentProcess\";\r\n            List<string> parameterTypes = new List<string>();\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Process.GetProcessById(int processId, string machineName)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ProcessGetProcessByIdIntString()\r\n        {\r\n            Type type = typeof(Process);\r\n            string name = \"GetProcessById\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"int32\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Process.GetProcessById(int processId)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ProcessGetProcessByIdInt()\r\n        {\r\n            Type type = typeof(Process);\r\n            string name = \"GetProcessById\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"int32\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Process.GetProcesses()\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ProcessGetProcesses()\r\n        {\r\n            Type type = typeof(Process);\r\n            string name = \"GetProcesses\";\r\n            List<string> parameterTypes = new List<string>();\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Process.GetProcesses(string machineName)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ProcessGetProcessesString()\r\n        {\r\n            Type type = typeof(Process);\r\n            string name = \"GetProcesses\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Process.GetProcessesByName(string processName)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ProcessGetProcessesByNameString()\r\n        {\r\n            Type type = typeof(Process);\r\n            string name = \"GetProcessesByName\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Process.GetProcessesByName(string processName, string machineName)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ProcessGetProcessesByNameStringString()\r\n        {\r\n            Type type = typeof(Process);\r\n            string name = \"GetProcessesByName\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Process.Start(string fileName, string arguments)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ProcessStartStringString()\r\n        {\r\n            Type type = typeof(Process);\r\n            string name = \"Start\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Process.Start(ProcessStartInfo startInfo)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ProcessStartProcessStartInfo()\r\n        {\r\n            Type type = typeof(Process);\r\n            string name = \"Start\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"ProcessStartInfo\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Process.Start(string fileName)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ProcessStartString()\r\n        {\r\n            Type type = typeof(Process);\r\n            string name = \"Start\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Process.Start(string fileName, string arguments, string userName, SecureString password, string domain)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ProcessStartStringStringStringSecureStringString()\r\n        {\r\n            Type type = typeof(Process);\r\n            string name = \"Start\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"securestring\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Process.Start(string fileName, string userName, SecureString password, string domain)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ProcessStartStringStringSecureStringString()\r\n        {\r\n            Type type = typeof(Process);\r\n            string name = \"Start\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"securestring\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Process.Start()\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ProcessStart()\r\n        {\r\n            Type type = typeof(Process);\r\n            string name = \"Start\";\r\n            List<string> parameterTypes = new List<string>();\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n        #endregion\r\n\r\n        #region Original WebClient methods\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().DownloadData(string address)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientDownloadDataString()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"DownloadData\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().DownloadData(Uri address)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientDownloadDataUri()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"DownloadData\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"uri\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().DownloadString(string address)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientDownloadStringString()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"DownloadString\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().DownloadString(Uri address)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientDownloadStringUri()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"DownloadString\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"uri\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().DownloadFile(string address, string filename)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientDownloadFileStringString()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"DownloadFile\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().DownloadFile(Uri address, string filename)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientDownloadFileUriString()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"DownloadFile\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"uri\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().OpenRead(string address)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientOpenReadString()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"OpenRead\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().OpenRead(Uri address)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientOpenReadUri()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"OpenRead\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"uri\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().OpenWrite(string address)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientOpenWriteString()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"OpenWrite\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().OpenWrite(string address, string method)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientOpenWriteStringString()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"OpenWrite\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().OpenWrite(Uri address)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientOpenWriteUri()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"OpenWrite\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"uri\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().OpenWrite(Uri address, string method)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientOpenWriteUriString()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"OpenWrite\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"uri\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().UploadData(Uri address, string method, byte[] data)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientUploadDataUriStringByteArray()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"UploadData\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"uri\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"byte[]\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().UploadData(string address, string method, byte[] data)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientUploadDataStringStringByteArray()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"UploadData\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"byte[]\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().UploadData(string address, byte[] data)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientUploadDataStringByteArray()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"UploadData\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"byte[]\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().UploadData(Uri address, byte[] data)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientUploadDataUriByteArray()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"UploadData\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"uri\");\r\n            parameterTypes.Add(\"byte[]\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().UploadFile(Uri address, string method, string fileName)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientUploadFileUriStringString()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"UploadFile\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"uri\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().UploadFile(string address, string method, string fileName)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientUploadFileStringStringString()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"UploadFile\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().UploadFile(Uri address, string fileName)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientUploadFileUriString()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"UploadFile\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"uri\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().UploadFile(String address, string fileName)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientUploadFileStringString()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"UploadFile\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().UploadString(string address, string data)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientUploadStringStringString()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"UploadString\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().UploadString(Uri address, string data)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientUploadStringUriString()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"UploadString\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"uri\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().UploadString(string address, string method, string data)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientUploadStringStringStringString()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"UploadString\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().UploadString(Uri address, string method, string data)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientUploadStringUriStringString()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"UploadString\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"uri\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().UploadValues(Uri address, string method, NameValueCollection data)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientUploadValuesUriStringNameValueCollection()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"UploadValues\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"uri\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"NameValueCollection\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().UploadValues(string address, string method, NameValueCollection data)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientUploadValuesStringStringNameValueCollection()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"UploadValues\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"NameValueCollection\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().UploadValues(Uri address, NameValueCollection data)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientUploadValuesUriNameValueCollection()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"UploadValues\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"uri\");\r\n            parameterTypes.Add(\"NameValueCollection\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for new WebClient().UploadValues(string address, NameValueCollection data)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo WebClientUploadValuesStringNameValueCollection()\r\n        {\r\n            Type type = typeof(WebClient);\r\n            string name = \"UploadValues\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"NameValueCollection\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n        #endregion\r\n\r\n        #region Original Type methods\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Type.InvokeMember(string name, BindingFlags invokeAttr, Binder binder, object target, object[] args, CultureInfo culture)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo TypeInvokeMemberStringBindingFlagsBinderObjectObjectArrayCultureInfo()\r\n        {\r\n            Type type = typeof(Type);\r\n            string name = \"InvokeMember\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"BindingFlags\");\r\n            parameterTypes.Add(\"binder\");\r\n            parameterTypes.Add(\"object\");\r\n            parameterTypes.Add(\"object[]\");\r\n            parameterTypes.Add(\"CultureInfo\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Type.InvokeMember(string name, BindingFlags invokeAttr, Binder binder, object target, object[] args)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo TypeInvokeMemberStringBindingFlagsBinderObjectObjectArray()\r\n        {\r\n            Type type = typeof(Type);\r\n            string name = \"InvokeMember\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"BindingFlags\");\r\n            parameterTypes.Add(\"binder\");\r\n            parameterTypes.Add(\"object\");\r\n            parameterTypes.Add(\"object[]\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n        #endregion\r\n\r\n        #region Original MethodBase methods\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for MethodBase.Invoke(object obj, BindingFlags invokeAttr, Binder binder, object[] parameters, CultureInfo culture)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo MethodBaseInvokeObjectBindingFlagsBinderObjectArrayCultureInfo()\r\n        {\r\n            Type type = typeof(MethodBase);\r\n            string name = \"Invoke\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"object\");\r\n            parameterTypes.Add(\"BindingFlags\");\r\n            parameterTypes.Add(\"binder\");\r\n            parameterTypes.Add(\"object[]\");\r\n            parameterTypes.Add(\"CultureInfo\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for MethodBase.Invoke(object obj, object[] parameters)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo MethodBaseInvokeObjectObjectArray()\r\n        {\r\n            Type type = typeof(MethodBase);\r\n            string name = \"Invoke\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"object\");\r\n            parameterTypes.Add(\"object[]\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n        #endregion\r\n\r\n        #region Original Assembly methods\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Assembly.GetEntryAssembly()\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo AssemblyGetEntryAssembly()\r\n        {\r\n            Type type = typeof(Assembly);\r\n            string name = \"GetEntryAssembly\";\r\n            List<string> parameterTypes = new List<string>();\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Assembly.GetExecutingAssembly()\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo AssemblyGetExecutingAssembly()\r\n        {\r\n            Type type = typeof(Assembly);\r\n            string name = \"GetExecutingAssembly\";\r\n            List<string> parameterTypes = new List<string>();\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Assembly.ReflectionOnlyLoadFrom(string assemblyFile)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo AssemblyReflectionOnlyLoadFromString()\r\n        {\r\n            Type type = typeof(Assembly);\r\n            string name = \"ReflectionOnlyLoadFrom\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Assembly.UnsafeLoadFrom(string assemblyFile)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo AssemblyUnsafeLoadFromString()\r\n        {\r\n            Type type = typeof(Assembly);\r\n            string name = \"UnsafeLoadFrom\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Assembly.ReflectionOnlyLoad(byte[] rawAssembly)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo AssemblyReflectionOnlyLoadByteArray()\r\n        {\r\n            Type type = typeof(Assembly);\r\n            string name = \"ReflectionOnlyLoad\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"byte[]\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Assembly.ReflectionOnlyLoad(string assemblyString)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo AssemblyReflectionOnlyLoadString()\r\n        {\r\n            Type type = typeof(Assembly);\r\n            string name = \"ReflectionOnlyLoad\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Assembly.LoadWithPartialName(string partialName)\r\n        /// \r\n        /// Note that this function is deprecated, see http://go.microsoft.com/fwlink/?LinkID=155570 for more information\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo AssemblyLoadWithPartialNameString()\r\n        {\r\n            Type type = typeof(Assembly);\r\n            string name = \"LoadWithPartialName\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Assembly.LoadWithPartialName(string partialName, Evidence securityEvidence)\r\n        /// \r\n        /// Note that this function is deprecated, see http://go.microsoft.com/fwlink/?LinkID=14202 for more information\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo AssemblyLoadWithPartialNameStringEvidence()\r\n        {\r\n            Type type = typeof(Assembly);\r\n            string name = \"LoadWithPartialName\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"evidence\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Assembly.LoadFrom(string assemblyFile, Evidence securityEvidence, byte[] hashValue, AssemblyHashAlgorithm hashAlgorithm)\r\n        /// \r\n        /// Note that this function is deprecated, see http://go.microsoft.com/fwlink/?LinkID=14202 for more information\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo AssemblyLoadFromStringEvidenceByteArrayAssemblyHashAlgorithm()\r\n        {\r\n            Type type = typeof(Assembly);\r\n            string name = \"LoadFrom\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"evidence\");\r\n            parameterTypes.Add(\"byte[]\");\r\n            parameterTypes.Add(\"AssemblyHashAlgorithm\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Assembly.LoadFrom(string assemblyFile, byte[] hashValue, AssemblyHashAlgorithm hashAlgorithm)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo AssemblyLoadFromStringByteArrayAssemblyHashAlgorithm()\r\n        {\r\n            Type type = typeof(Assembly);\r\n            string name = \"LoadFrom\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"byte[]\");\r\n            parameterTypes.Add(\"AssemblyHashAlgorithm\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Assembly.LoadFrom(string path)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo AssemblyLoadFromString()\r\n        {\r\n            Type type = typeof(Assembly);\r\n            string name = \"LoadFrom\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Assembly.LoadFrom(string path, Evidence securityEvidence)\r\n        /// \r\n        /// Note that this function is deprecated, see http://go.microsoft.com/fwlink/?LinkID=155570 for more information\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo AssemblyLoadFromStringEvidence()\r\n        {\r\n            Type type = typeof(Assembly);\r\n            string name = \"LoadFrom\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"evidence\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Assembly.LoadFile(string path, Evidence securityEvidence)\r\n        /// \r\n        /// Note that this function is deprecated, see http://go.microsoft.com/fwlink/?LinkID=155570 for more information\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo AssemblyLoadFileStringEvidence()\r\n        {\r\n            Type type = typeof(Assembly);\r\n            string name = \"LoadFile\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"evidence\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Assembly.LoadFile(string path)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo AssemblyLoadFileString()\r\n        {\r\n            Type type = typeof(Assembly);\r\n            string name = \"LoadFile\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Assembly.Load(byte[] rawAssembly, byte[] rawSymbolStore)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo AssemblyLoadByteArrayByteArray()\r\n        {\r\n            Type type = typeof(Assembly);\r\n            string name = \"Load\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"byte[]\");\r\n            parameterTypes.Add(\"byte[]\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Assembly.Load(byte[] rawAssembly, byte[] rawSymbolStore, SecurityContextSource securityContextSource)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo AssemblyLoadByteArrayByteArraySecurityContextSource()\r\n        {\r\n            Type type = typeof(Assembly);\r\n            string name = \"Load\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"byte[]\");\r\n            parameterTypes.Add(\"byte[]\");\r\n            parameterTypes.Add(\"SecurityContextSource\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Assembly.Load(AssemblyName assemblyRef, Evidence securityEvidence)\r\n        /// \r\n        /// Note that this function is deprecated, see http://go.microsoft.com/fwlink/?LinkID=155570 for more information\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo AssemblyLoadAssemblyNameEvidence()\r\n        {\r\n            Type type = typeof(Assembly);\r\n            string name = \"Load\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"AssemblyName\");\r\n            parameterTypes.Add(\"evidence\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Assembly.Load(AssemblyName assemblyRef)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo AssemblyLoadAssemblyName()\r\n        {\r\n            Type type = typeof(Assembly);\r\n            string name = \"Load\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"AssemblyName\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Assembly.Load(byte[] rawAssembly, byte[] rawSymbolStore, Evidence securityEvidence)\r\n        /// \r\n        /// Note that this function is deprecated, see http://go.microsoft.com/fwlink/?LinkID=155570 for more information\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo AssemblyLoadByteArrayByteArrayEvidence()\r\n        {\r\n            Type type = typeof(Assembly);\r\n            string name = \"Load\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"byte[]\");\r\n            parameterTypes.Add(\"byte[]\");\r\n            parameterTypes.Add(\"evidence\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Assembly.Load(string assemblyString, Evidence assemblySecurity)\r\n        /// \r\n        /// Note that this function is deprecated, see http://go.microsoft.com/fwlink/?LinkID=155570 for more information\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo AssemblyLoadStringEvidence()\r\n        {\r\n            Type type = typeof(Assembly);\r\n            string name = \"Load\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"evidence\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Assembly.Load(String assemblyString)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo AssemblyLoadString()\r\n        {\r\n            Type type = typeof(Assembly);\r\n            string name = \"Load\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Assembly.Load(Byte[] rawAssembly)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo AssemblyLoadByteArray()\r\n        {\r\n            Type type = typeof(Assembly);\r\n            string name = \"Load\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"byte[]\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n        #endregion\r\n\r\n        #region Original Console methods\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.Write(string value)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteString()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"Write\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.Write(object value)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteObject()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"Write\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"object\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.Write(ulong value)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteUlong()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"Write\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"uint64\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.Write(long value)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteLong()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"Write\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"int64\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.Write(int value)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteInt()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"Write\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"int32\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.Write(uint value)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteUint()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"Write\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"uint32\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.Write(bool value)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteBool()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"Write\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"boolean\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.Write(char value)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteChar()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"Write\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"char\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.Write(decimal value)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteDecimal()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"Write\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"decimal\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.Write(float value)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteFloat()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"Write\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"single\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.Write(double value)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteDouble()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"Write\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"double\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.Write(string format, object arg0)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteStringObject()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"Write\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"object\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.Write(string format, object arg0, object arg1)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteStringObjectObject()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"Write\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"object\");\r\n            parameterTypes.Add(\"object\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.Write(string format, object arg0, object arg1, object arg2)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteStringObjectObjectObject()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"Write\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"object\");\r\n            parameterTypes.Add(\"object\");\r\n            parameterTypes.Add(\"object\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.Write(string format, object arg0, object arg1, object arg2, object arg3)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteStringObjectObjectObjectObject()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"Write\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"object\");\r\n            parameterTypes.Add(\"object\");\r\n            parameterTypes.Add(\"object\");\r\n            parameterTypes.Add(\"object\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.Write(string format, object[] arg)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteStringObjectArray()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"Write\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"object[]\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.Write(char[] buffer)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteCharArray()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"Write\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"char[]\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.Write(char[] buffer, int index, int count)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteCharArrayIntInt()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"Write\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"char[]\");\r\n            parameterTypes.Add(\"int32\");\r\n            parameterTypes.Add(\"int32\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.WriteLine()\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteLine()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"WriteLine\";\r\n            List<string> parameterTypes = new List<string>();\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.WriteLine(float value)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteLineFloat()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"WriteLine\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"single\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.WriteLine(int value)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteLineInt()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"WriteLine\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"int32\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.WriteLine(uint value)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteLineUint()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"WriteLine\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"uint32\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.WriteLine(long value)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteLineLong()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"WriteLine\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"int64\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.WriteLine(ulong value)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteLineUlong()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"WriteLine\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"uint64\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.WriteLine(object value)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteLineObject()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"WriteLine\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"object\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.WriteLine(string value)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteLineString()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"WriteLine\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.WriteLine(decimal value)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteLineDecimal()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"WriteLine\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"decimal\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.WriteLine(char[] value)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteLineCharArray()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"WriteLine\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"char[]\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.WriteLine(char value)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteLineChar()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"WriteLine\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"char\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.WriteLine(bool value)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteLineBool()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"WriteLine\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"boolean\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.WriteLine(double value)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteLineDouble()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"WriteLine\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"double\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.WriteLine(string format, object arg0)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteLineStringObject()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"WriteLine\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"object\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.WriteLine(string format, object arg0, object arg1)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteLineStringObjectObject()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"WriteLine\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"object\");\r\n            parameterTypes.Add(\"object\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.WriteLine(string format, object arg0, object arg1, object arg2)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteLineStringObjectObjectObject()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"WriteLine\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"object\");\r\n            parameterTypes.Add(\"object\");\r\n            parameterTypes.Add(\"object\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.WriteLine(string format, object arg0, object arg1, object arg2, object arg3)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteLineStringObjectObjectObjectObject()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"WriteLine\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"object\");\r\n            parameterTypes.Add(\"object\");\r\n            parameterTypes.Add(\"object\");\r\n            parameterTypes.Add(\"object\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.WriteLine(string format, object[] arg)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteLineStringObjectArray()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"WriteLine\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"object[]\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Console.WriteLine(char[] buffer, int index, int count)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ConsoleWriteLineCharArrayIntInt()\r\n        {\r\n            Type type = typeof(Console);\r\n            string name = \"WriteLine\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"char[]\");\r\n            parameterTypes.Add(\"int32\");\r\n            parameterTypes.Add(\"int32\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n        #endregion\r\n\r\n        #region Original Activator methods\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Activator.CreateComInstanceFrom(string assemblyName, string typeName, byte[] hashValue, AssemblyHashAlgorithm hashAlgorithm)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ActivatorCreateComInstanceFromStringStringByteArrayAssemblyHashAlgorithm()\r\n        {\r\n            Type type = typeof(Activator);\r\n            string name = \"CreateComInstanceFrom\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"byte[]\");\r\n            parameterTypes.Add(\"AssemblyHashAlgorithm\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Activator.CreateComInstanceFrom(string assemblyName, string typeName)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ActivatorCreateComInstanceFromStringString()\r\n        {\r\n            Type type = typeof(Activator);\r\n            string name = \"CreateComInstanceFrom\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Activator.CreateInstanceFrom(Type type, bool nonPublic)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ActivatorCreateInstanceTypeBool()\r\n        {\r\n            Type type = typeof(Activator);\r\n            string name = \"CreateInstance\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"type\");\r\n            parameterTypes.Add(\"boolean\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Activator.CreateInstanceFrom(Type type)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ActivatorCreateInstanceType()\r\n        {\r\n            Type type = typeof(Activator);\r\n            string name = \"CreateInstance\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"type\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Activator.CreateInstanceFrom(ActivationContext activationContext)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ActivatorCreateInstanceActivationContext()\r\n        {\r\n            Type type = typeof(Activator);\r\n            string name = \"CreateInstance\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"ActivationContext\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Activator.CreateInstanceFrom(string assemblyName, string typeName)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ActivatorCreateInstanceStringString()\r\n        {\r\n            Type type = typeof(Activator);\r\n            string name = \"CreateInstance\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Activator.CreateInstance(Type type, object[] args)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ActivatorCreateInstanceTypeObjectArray()\r\n        {\r\n            Type type = typeof(Activator);\r\n            string name = \"CreateInstance\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"type\");\r\n            parameterTypes.Add(\"object[]\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, object[] args, CultureInfo culture)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ActivatorCreateInstanceTypeBindingFlagsBinderObjectArrayCultureInfo()\r\n        {\r\n            Type type = typeof(Activator);\r\n            string name = \"CreateInstance\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"type\");\r\n            parameterTypes.Add(\"bindingflags\");\r\n            parameterTypes.Add(\"binder\");\r\n            parameterTypes.Add(\"object[]\");\r\n            parameterTypes.Add(\"cultureInfo\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, object[] args, CultureInfo culture, object[] activationAttributes)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ActivatorCreateInstanceTypeBindingFlagsBinderObjectArrayCultureInfoObjectArray()\r\n        {\r\n            Type type = typeof(Activator);\r\n            string name = \"CreateInstance\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"type\");\r\n            parameterTypes.Add(\"bindingflags\");\r\n            parameterTypes.Add(\"binder\");\r\n            parameterTypes.Add(\"object[]\");\r\n            parameterTypes.Add(\"cultureInfo\");\r\n            parameterTypes.Add(\"object[]\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Activator.CreateInstance(string assemblyName, string typeName, bool ignoreCase, BindingFlags bindingAttr, Binder binder, object[] args, CultureInfo culture, object[] activationAttributes)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ActivatorCreateInstanceStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArray()\r\n        {\r\n            Type type = typeof(Activator);\r\n            string name = \"CreateInstance\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"boolean\");\r\n            parameterTypes.Add(\"bindingFlags\");\r\n            parameterTypes.Add(\"binder\");\r\n            parameterTypes.Add(\"object[]\");\r\n            parameterTypes.Add(\"cultureInfo\");\r\n            parameterTypes.Add(\"object[]\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Activator.CreateInstance(ActivationContext activationContext, string[] activationCustomData)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ActivatorCreateInstanceActivationContextStringArray()\r\n        {\r\n            Type type = typeof(Activator);\r\n            string name = \"CreateInstance\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"activationContext\");\r\n            parameterTypes.Add(\"string[]\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Activator.CreateInstance(string assemblyName, string typeName, object[] activationAttributes)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ActivatorCreateInstanceStringStringObjectArray()\r\n        {\r\n            Type type = typeof(Activator);\r\n            string name = \"CreateInstance\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"object[]\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Activator.CreateInstance(string assemblyName, string typeName, object[] activationAttributes)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ActivatorCreateInstanceAppDomainStringString()\r\n        {\r\n            Type type = typeof(Activator);\r\n            string name = \"CreateInstance\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"appDomain\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Activator.CreateInstance(string assemblyName, string typeName, bool ignoreCase, BindingFlags bindingAttr, Binder binder, object[] args, CultureInfo culture, object[] activationAttributes, Evidence securityInfo)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ActivatorCreateInstanceStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence()\r\n        {\r\n            Type type = typeof(Activator);\r\n            string name = \"CreateInstance\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"boolean\");\r\n            parameterTypes.Add(\"bindingFlags\");\r\n            parameterTypes.Add(\"binder\");\r\n            parameterTypes.Add(\"object[]\");\r\n            parameterTypes.Add(\"cultureInfo\");\r\n            parameterTypes.Add(\"object[]\");\r\n            parameterTypes.Add(\"evidence\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Activator.CreateInstance(AppDomain domain, string assemblyName, string typeName, bool ignoreCase, BindingFlags bindingAttr, Binder binder, object[] args, CultureInfo culture, object[] activationAttributes)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ActivatorCreateInstanceAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArray()\r\n        {\r\n            Type type = typeof(Activator);\r\n            string name = \"CreateInstance\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"AppDomain\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"boolean\");\r\n            parameterTypes.Add(\"bindingFlags\");\r\n            parameterTypes.Add(\"binder\");\r\n            parameterTypes.Add(\"object[]\");\r\n            parameterTypes.Add(\"cultureInfo\");\r\n            parameterTypes.Add(\"object[]\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Activator.CreateInstance(AppDomain domain, string assemblyName, string typeName, bool ignoreCase, BindingFlags bindingAttr, Binder binder, object[] args, CultureInfo culture, object[] activationAttributes, Evidence securityAttributes)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ActivatorCreateInstanceAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence()\r\n        {\r\n            Type type = typeof(Activator);\r\n            string name = \"CreateInstance\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"AppDomain\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"boolean\");\r\n            parameterTypes.Add(\"bindingFlags\");\r\n            parameterTypes.Add(\"binder\");\r\n            parameterTypes.Add(\"object[]\");\r\n            parameterTypes.Add(\"cultureInfo\");\r\n            parameterTypes.Add(\"object[]\");\r\n            parameterTypes.Add(\"evidence\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Activator.CreateInstanceFrom(AppDomain domain, string assemblyName, string typeName)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ActivatorCreateInstanceFromAppDomainStringString()\r\n        {\r\n            Type type = typeof(Activator);\r\n            string name = \"CreateInstanceFrom\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"AppDomain\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Activator.CreateInstanceFrom(string assemblyFile, string typeName, bool ignoreCase, BindingFlags bindingAttr, Binder binder, object[] args, CultureInfo culture, object[] activationAttributes, Evidence securityInfo)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ActivatorCreateInstanceFromStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence()\r\n        {\r\n            Type type = typeof(Activator);\r\n            string name = \"CreateInstanceFrom\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"boolean\");\r\n            parameterTypes.Add(\"bindingFlags\");\r\n            parameterTypes.Add(\"binder\");\r\n            parameterTypes.Add(\"object[]\");\r\n            parameterTypes.Add(\"cultureInfo\");\r\n            parameterTypes.Add(\"object[]\");\r\n            parameterTypes.Add(\"evidence\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Activator.CreateInstanceFrom(AppDomain domain, string assemblyFile, string typeName, bool ignoreCase, BindingFlags bindingAttr, Binder binder, object[] args, CultureInfo culture, object[] activationAttributes)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ActivatorCreateInstanceFromAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArray()\r\n        {\r\n            Type type = typeof(Activator);\r\n            string name = \"CreateInstanceFrom\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"AppDomain\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"boolean\");\r\n            parameterTypes.Add(\"bindingFlags\");\r\n            parameterTypes.Add(\"binder\");\r\n            parameterTypes.Add(\"object[]\");\r\n            parameterTypes.Add(\"cultureInfo\");\r\n            parameterTypes.Add(\"object[]\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Activator.CreateInstanceFrom(AppDomain domain, string assemblyFile, string typeName, bool ignoreCase, BindingFlags bindingAttr, Binder binder, object[] args, CultureInfo culture, object[] activationAttributes, Evidence securityAttributes)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ActivatorCreateInstanceFromAppDomainStringStringBooleanBindingFlagsBinderObjectArrayCultureInfoObjectArrayEvidence()\r\n        {\r\n            Type type = typeof(Activator);\r\n            string name = \"CreateInstanceFrom\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"AppDomain\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"boolean\");\r\n            parameterTypes.Add(\"bindingFlags\");\r\n            parameterTypes.Add(\"binder\");\r\n            parameterTypes.Add(\"object[]\");\r\n            parameterTypes.Add(\"cultureInfo\");\r\n            parameterTypes.Add(\"object[]\");\r\n            parameterTypes.Add(\"evidence\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Activator.CreateInstanceFrom(string assemblyFile, string typeName)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ActivatorCreateInstanceFromStringString()\r\n        {\r\n            Type type = typeof(Activator);\r\n            string name = \"CreateInstanceFrom\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Activator.CreateInstanceFrom(string assemblyFile, string typeName, object[] activationAttributes)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ActivatorCreateInstanceFromStringStringObjectArray()\r\n        {\r\n            Type type = typeof(Activator);\r\n            string name = \"CreateInstanceFrom\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"object[]\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the MethodInfo object for Activator.CreateInstanceFrom(string assemblyFile, string typeName, object[] activationAttributes)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static MethodInfo ActivatorCreateInstanceFromStringStringBoolBindingFlagsBinderObjectArrayCultureInfoObjectArray()\r\n        {\r\n            Type type = typeof(Activator);\r\n            string name = \"CreateInstanceFrom\";\r\n            List<string> parameterTypes = new List<string>();\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"string\");\r\n            parameterTypes.Add(\"boolean\");\r\n            parameterTypes.Add(\"BindingFlags\");\r\n            parameterTypes.Add(\"Binder\");\r\n            parameterTypes.Add(\"object[]\");\r\n            parameterTypes.Add(\"CultureInfo\");\r\n            parameterTypes.Add(\"object[]\");\r\n            return HookManager.GetMethodInfo(type, name, parameterTypes);\r\n        }\r\n        #endregion\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/Hooks/OriginalUnmanagedFunctions.cs",
    "content": "﻿using System.Collections.Generic;\r\nusing DotDumper.Models;\r\n\r\nnamespace DotDumper.Hooks\r\n{\r\n    /// <summary>\r\n    /// All methods within this class refer to unmanaged functions. This class contains static functions which obtain the pointer to the unmanaged function. The pointer, for the corresponding function, is used in the hooks of DotDumper, and when logging certain calls.\r\n    /// </summary>\r\n    class OriginalUnmanagedFunctions\r\n    {\r\n        #region kernel32.dll\r\n        /// <summary>\r\n        /// Gets the UnmanagedMethodInfo object for bool WriteProcessMemory(IntPtr process, int baseAddress, IntPtr buffer, int bufferSize, ref int bytesWritten)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static UnmanagedMethodInfo Kernel32WriteProcessMemory()\r\n        {\r\n            string dll = \"kernel32.dll\";\r\n            string fullMethodName = \"bool WriteProcessMemory(IntPtr hProcess, int lpBaseAddress, IntPtr lpBuffer, int nSize, ref int lpNumberOfBytesWritten)\";\r\n            string methodName = \"WriteProcessMemory\";\r\n            List<string> argumentTypes = new List<string>();\r\n            argumentTypes.Add(\"IntPtr\");\r\n            argumentTypes.Add(\"int32\");\r\n            argumentTypes.Add(\"byte[]\");\r\n            argumentTypes.Add(\"int32\");\r\n            argumentTypes.Add(\"IntPtr&\");\r\n            return new UnmanagedMethodInfo(dll, fullMethodName, methodName, argumentTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the UnmanagedMethodInfo object for bool CreateProcessA(string applicationName, string commandLine, IntPtr processAttributes, IntPtr threadAttributes, bool inheritHandles, uint creationFlags, IntPtr environment, string currentDirectory, ref STARTUP_INFORMATION startupInfo, ref PROCESS_INFORMATION processInformation)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static UnmanagedMethodInfo Kernel32CreateProcessA()\r\n        {\r\n            string dll = \"kernel32.dll\";\r\n            string fullMethodName = \"bool CreateProcessA(string applicationName, string commandLine, IntPtr processAttributes, IntPtr threadAttributes, bool inheritHandles, uint creationFlags, IntPtr environment, string currentDirectory, ref STARTUP_INFORMATION startupInfo, ref PROCESS_INFORMATION processInformation)\";\r\n            string methodName = \"CreateProcessA\";\r\n            List<string> argumentTypes = new List<string>();\r\n            argumentTypes.Add(\"string\");\r\n            argumentTypes.Add(\"string\");\r\n            argumentTypes.Add(\"IntPtr\");\r\n            argumentTypes.Add(\"IntPtr\");\r\n            argumentTypes.Add(\"Boolean\");\r\n            argumentTypes.Add(\"UInt32\");\r\n            argumentTypes.Add(\"IntPtr\");\r\n            argumentTypes.Add(\"string\");\r\n            argumentTypes.Add(\"STARTUP_INFORMATION&\");\r\n            argumentTypes.Add(\"PROCESS_INFORMATION&\");\r\n            return new UnmanagedMethodInfo(dll, fullMethodName, methodName, argumentTypes);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the UnmanagedMethodInfo object for bool CreateProcessW(string applicationName, string commandLine, IntPtr processAttributes, IntPtr threadAttributes, bool inheritHandles, uint creationFlags, IntPtr environment, string currentDirectory, ref STARTUP_INFORMATION startupInfo, ref PROCESS_INFORMATION processInformation)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static UnmanagedMethodInfo Kernel32CreateProcessW()\r\n        {\r\n            string dll = \"kernel32.dll\";\r\n            string fullMethodName = \"bool CreateProcessW(string applicationName, string commandLine, IntPtr processAttributes, IntPtr threadAttributes, bool inheritHandles, uint creationFlags, IntPtr environment, string currentDirectory, ref STARTUP_INFORMATION startupInfo, ref PROCESS_INFORMATION processInformation)\";\r\n            string methodName = \"CreateProcessW\";\r\n            List<string> argumentTypes = new List<string>();\r\n            argumentTypes.Add(\"IntPtr\");\r\n            argumentTypes.Add(\"IntPtr\");\r\n            argumentTypes.Add(\"IntPtr\");\r\n            argumentTypes.Add(\"IntPtr\");\r\n            argumentTypes.Add(\"Boolean\");\r\n            argumentTypes.Add(\"Int32\");\r\n            argumentTypes.Add(\"IntPtr\");\r\n            argumentTypes.Add(\"IntPtr\");\r\n            argumentTypes.Add(\"IntPtr&\");\r\n            argumentTypes.Add(\"IntPtr&\");\r\n            return new UnmanagedMethodInfo(dll, fullMethodName, methodName, argumentTypes);\r\n        }\r\n        #endregion\r\n\r\n        #region user32.dll\r\n        /// <summary>\r\n        /// Gets the UnmanagedMethodInfo object for int MessageBoxW([in, optional] HWND hWnd, [in, optional] LPCWSTR lpText, [in, optional] LPCWSTR lpCaption, [in] UINT uType)\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static UnmanagedMethodInfo User32MessageBoxW()\r\n        {\r\n            string dll = \"user32.dll\";\r\n            string fullMethodName = \"int MessageBoxW([in, optional] HWND hWnd, [in, optional] LPCWSTR lpText, [in, optional] LPCWSTR lpCaption, [in] UINT uType);\";\r\n            string methodName = \"MessageBoxW\";\r\n            List<string> argumentTypes = new List<string>();\r\n            argumentTypes.Add(\"int32\");\r\n            argumentTypes.Add(\"string\");\r\n            argumentTypes.Add(\"string\");\r\n            argumentTypes.Add(\"uint32\");\r\n            return new UnmanagedMethodInfo(dll, fullMethodName, methodName, argumentTypes);\r\n        }\r\n        #endregion\r\n\r\n        #region ntdll.dll\r\n        /// <summary>\r\n        /// Gets the UnmanagedMethodInfo object for bool ZwMapViewOfSection()\r\n        /// </summary>\r\n        /// <returns></returns>\r\n        public static UnmanagedMethodInfo NtdllZwMapViewOfSection()\r\n        {\r\n            string dll = \"ntdll.dll\";\r\n            string fullMethodName = \"bool ZwMapViewOfSection(IntPtr hProcess, int lpBaseAddress, IntPtr lpBuffer, int nSize, ref int lpNumberOfBytesWritten)\";\r\n            string methodName = \"WriteProcessMemory\";\r\n            List<string> argumentTypes = new List<string>();\r\n            argumentTypes.Add(\"IntPtr\");\r\n            argumentTypes.Add(\"int32\");\r\n            argumentTypes.Add(\"byte[]\");\r\n            argumentTypes.Add(\"int32\");\r\n            argumentTypes.Add(\"IntPtr&\");\r\n            return new UnmanagedMethodInfo(dll, fullMethodName, methodName, argumentTypes);\r\n        }\r\n        //ZwMapViewOfSection //ntdll.dll\r\n        //NtMapViewOfSection //ntdll.dll\r\n        //NtWriteVirtualMemory //ntdll.dll\r\n        #endregion\r\n\r\n        #region urlmon.dll\r\n        //URLDownloadToFile \r\n        //URLDownloadToCacheFile\r\n        #endregion\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/Logger.cs",
    "content": "﻿using System;\r\nusing System.Collections.Generic;\r\nusing System.IO;\r\nusing System.Reflection;\r\nusing System.Text;\r\nusing DotDumper.Helpers;\r\nusing DotDumper.HookHandlers;\r\nusing DotDumper.Hooks;\r\nusing DotDumper.Models;\r\n\r\nnamespace DotDumper\r\n{\r\n    /// <summary>\r\n    /// This class is used to log data to both the standard output, as well as the designated logging file. This allows the analyst to view DotDumper's output in real time, if so desired.\r\n    /// </summary>\r\n    class Logger\r\n    {\r\n        /// <summary>\r\n        /// The list of log entries that were logged during the current run of DotDumper\r\n        /// </summary>\r\n        private List<LogEntry> _logEntries;\r\n\r\n        /// <summary>\r\n        /// The folder where the log file, as well as other files, are stored. This folder is based in the current directory of DotDumper.exe, where the name is user defined. This string does not end with a backslash.\r\n        /// </summary>\r\n        public readonly string Folder;\r\n\r\n        /// <summary>\r\n        /// The full path to the log file, called log.txt\r\n        /// </summary>\r\n        private readonly string LogFileText;\r\n\r\n        /// <summary>\r\n        /// The full path to the log file, called log.json\r\n        /// </summary>\r\n        private readonly string LogFileJson;\r\n\r\n        /// <summary>\r\n        /// The full path to the log file, called log.xml\r\n        /// </summary>\r\n        private readonly string LogFileXml;\r\n\r\n        /// <summary>\r\n        /// The amount of logs that were written using this instance of the logger\r\n        /// </summary>\r\n        public int Count { get; set; }\r\n\r\n        /// <summary>\r\n        /// Creates a logger object, which can then be used to log data to the standard output, and the log file. The log file, as well as dropped artifacts, are stored in a subfolder of DotDumper's folder. The subfolder's name is provided as a parameter in this constructor. This subfolder does not need to exist yet, as it will be created if need be.\r\n        /// </summary>\r\n        public Logger()\r\n        {\r\n            //Initialises the log entry list\r\n            _logEntries = new List<LogEntry>();\r\n            Count = 0;\r\n\r\n            //Sets the variables\r\n            Folder = Directory.GetCurrentDirectory() + @\"\\\" + Config.LoggerFolder;\r\n            LogFileText = Folder + @\"\\log.txt\";\r\n            LogFileJson = Folder + @\"\\log.json\";\r\n            LogFileXml = Folder + @\"\\log.xml\";\r\n\r\n            /*\r\n             * The logger is initialised prior to the hooks being set, \r\n             * meaning these calls do not need to be unhooked and hooked.\r\n             * In fact, doing so would create errors later on\r\n             */\r\n\r\n            //Creates the directory if it doesn't already. If the directory already exists, this call is redundant\r\n            Directory.CreateDirectory(Folder);\r\n\r\n            //Create the opening message with DotDumper's version\r\n            string message = Program.VERSION + \"\\n\";\r\n            //Add the text to the log file. If the file does not exist, it is created, after which the data is then appended\r\n            File.AppendAllText(LogFileText, message);\r\n            //Write the text to the standard output, if the configuration allows\r\n            if (Config.PrintLogsToConsole)\r\n            {\r\n                Console.WriteLine(message);\r\n            }\r\n        }\r\n\r\n        /// <summary>\r\n        /// Log a call, but only if it is coming from a sample, based on the stack trace, it should not originate from DotDumper or any GAC module.\r\n        /// Logging means that the human readable log is written to the log.txt file, as well as printed in the console window. Additionally, JSON\r\n        /// and XML versions of the logs are written to log.json and log.xml respectively. All files reside in the logging folder, which is either \r\n        /// provided by the user upon the start-up of DotDumper. If it is not provided, the name of the sample (without an extension, if there is one)\r\n        /// is used as the base for a folder name, which is then appended with \"_DotDumper\" until there is no such folder already.\r\n        /// \r\n        /// Note that this function will set all hooks upon returning\r\n        /// </summary>\r\n        /// <param name=\"stackTraceOffset\">The amount of layers the caller of this function is away from the original flow of the program</param>\r\n        /// <param name=\"method\">The method of importance, which corresponds with the other arguments in this function call</param>\r\n        /// <param name=\"parameterValues\">The values (in order of calling them as-if they were code) of the arguments of the given method</param>\r\n        /// <param name=\"returnValue\">The return value of the method (use null if the return type is void)</param>\r\n        public void LogSampleCall(int stackTraceOffset, MethodBase method, object[] parameterValues, object returnValue)\r\n        {\r\n            //Increment by one since this function has been entered\r\n            stackTraceOffset++;\r\n            List<string> stackTraceLines = GenericHookHelper.GetStackTraceRaw(stackTraceOffset);\r\n            bool isFromSample = AssemblyMapper.IsComingFromSample(stackTraceLines);\r\n            if (isFromSample)\r\n            {\r\n                Log(stackTraceOffset, method, parameterValues, returnValue);\r\n            }\r\n            else\r\n            {\r\n                MissedAssemblyDumper.Dump();\r\n            }\r\n        }\r\n\r\n        /// <summary>\r\n        /// Log a call. Logging means that the human readable log is written to the log.txt file, as well as printed in the console window. \r\n        /// Additionally, JSON and XML versions of the logs are written to log.json and log.xml respectively. All files reside in the \r\n        /// logging folder, which is either provided by the user upon the start-up of DotDumper. If it is not provided, the name of the \r\n        /// sample (without an extension, if there is one) is used as the base for a folder name, which is then appended with \"_DotDumper\"\r\n        /// until there is no such folder already.\r\n        /// \r\n        /// Note that this function will set all hooks upon returning\r\n        /// </summary>\r\n        /// <param name=\"stackTraceOffset\">The amount of layers the caller of this function is away from the original flow of the program</param>\r\n        /// <param name=\"method\">The method of importance, which corresponds with the other arguments in this function call</param>\r\n        /// <param name=\"parameterValues\">The values (in order of calling them as-if they were code) of the arguments of the given method</param>\r\n        /// <param name=\"returnValue\">The return value of the method (use null if the return type is void)</param>\r\n        public void Log(int stackTraceOffset, MethodBase method, object[] parameterValues, object returnValue)\r\n        {\r\n            //Increment by one since this function has been entered\r\n            stackTraceOffset++;\r\n            //Create the log entry\r\n            LogEntry entry = LogEntryHelper.Create(stackTraceOffset, method, parameterValues, returnValue);\r\n            //Call the logging function\r\n            Log(entry, false, true);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Log a call. Logging means that the human readable log is written to the log.txt file, as well as printed in the console window. \r\n        /// Additionally, JSON and XML versions of the logs are written to log.json and log.xml respectively. All files reside in the \r\n        /// logging folder, which is either provided by the user upon the start-up of DotDumper. If it is not provided, the name of the \r\n        /// sample (without an extension, if there is one) is used as the base for a folder name, which is then appended with \"_DotDumper\"\r\n        /// until there is no such folder already.\r\n        /// </summary>\r\n        /// <param name=\"entry\">The entry to log</param>\r\n        /// <param name=\"ignoreHooks\">Defines if the hooks should be ignored (meaning it operates via normal calls), or if the hooks should be disabled prior to logging, and enabled afterwards</param>\r\n        /// <param name=\"periodicDump\">Defines if the periodic dump check should be performed, which dumps missed Assembly objects when they are found</param>\r\n        public void Log(LogEntry entry, bool ignoreHooks, bool periodicDump)\r\n        {\r\n            //If the entry is null, no logs are written\r\n            if (entry != null)\r\n            {\r\n                Count++;\r\n                //Add the entry to the list of entries, seeing as it's not null\r\n                _logEntries.Add(entry);\r\n                //Get the entries in JSON format\r\n                string json = Serialise.ToJson(_logEntries);\r\n                //Get the entries in XML format\r\n                string xml = Serialise.ToXml(_logEntries);\r\n                //Get the entries in human readable format\r\n                string plaintext = LogEntry2HumanReadablePlaintext(entry);\r\n\r\n                /*\r\n                 * Write data to the respective files by appending the human readable log, \r\n                 * and by overwriting the JSON and XML lists, as those cannot be appended to \r\n                 * in the same manner\r\n                 * \r\n                 * If the hooks are to  be ignored, the nromal functions should be called\r\n                 */\r\n                if (ignoreHooks)\r\n                {\r\n                    HookManager.UnHookAll();\r\n                    //Creates the folder where the log files are stored if it doesn't exist\r\n                    Directory.CreateDirectory(Folder);\r\n                    File.AppendAllText(LogFileText, plaintext);\r\n                    File.WriteAllText(LogFileJson, json);\r\n                    File.WriteAllText(LogFileXml, xml);\r\n                    if (Config.PrintLogsToConsole)\r\n                    {\r\n                        Console.WriteLine(plaintext);\r\n                    }\r\n                    HookManager.HookAll();\r\n                }\r\n                else //If not, the functions need to be unhooked, called, and hooked again\r\n                { //Unhooks all hooks, calls the original function, and sets all hooks again, for each call\r\n                    GenericHookHelper.DirectoryCreateDirectory(Folder);\r\n                    GenericHookHelper.FileAppendAllText(LogFileText, plaintext);\r\n                    GenericHookHelper.FileWriteAllBytes(LogFileJson, Encoding.Default.GetBytes(json));\r\n                    GenericHookHelper.FileWriteAllBytes(LogFileXml, Encoding.Default.GetBytes(xml));\r\n                    if (Config.PrintLogsToConsole)\r\n                    {\r\n                        GenericHookHelper.ConsoleWriteLine(plaintext);\r\n                    }\r\n                }\r\n            }\r\n\r\n            /*\r\n             * Dump the missing assemblies, depending on the specified boolean. The dumping is \r\n             * not used in several cases when logging data before the hooks are set. Calling this function\r\n             * restores all hooks, which leads to errors in those cases, hence this split set-up\r\n             */\r\n            if (periodicDump)\r\n            {\r\n                MissedAssemblyDumper.Dump();\r\n            }\r\n        }\r\n\r\n        /// <summary>\r\n        /// Creates a human readable plaintext version of the given LogEntry object\r\n        /// </summary>\r\n        /// <param name=\"entry\">The entry to convert</param>\r\n        /// <returns>The converted entry, human readable in a string</returns>\r\n        private string LogEntry2HumanReadablePlaintext(LogEntry entry)\r\n        {\r\n            //Assume the complete LogEntry instance is not null, the caller should check this\r\n            //The date time stamp is made in the entry's constructor, meaning it's never null\r\n            string functionName = \"[no_function_name_found]\";\r\n            if (entry != null && entry.FunctionName != null)\r\n            {\r\n                functionName = entry.FunctionName;\r\n            }\r\n            string title = \"[\" + entry.DateTimeStamp + \"] Hook for \" + functionName + \" hit!\\n\";\r\n\r\n            /*\r\n             * The message lay-out for human readable logs is as follows:\r\n             * \r\n             * 1. Stack Trace\r\n             * 2. Assembly call order\r\n             * 3. Originating assembly information (name, version, resource names, hash)\r\n             * 4. Parent assembly hash, if present\r\n             * 5. Function argument names, types, and their respective values\r\n             * 6. The return value and type\r\n             * 7. Related files (by their SHA-256 hashes), if any\r\n             * \r\n             * Entries that are empty or null are omitted, as are the headers for the section\r\n             * if the complete section is missing or null. This ensures the log is easy\r\n             * to read and contains as little clutter as possible.\r\n             */\r\n\r\n            //Initialise the string\r\n            string message = \"\";\r\n\r\n            //Add the stack trace\r\n            if (entry.StackTrace != null && entry.StackTrace.Count > 0)\r\n            {\r\n                message += \"--------StackTrace information--------\\n\";\r\n                foreach (string line in entry.StackTrace)\r\n                {\r\n                    message += line + \"\\n\";\r\n                }\r\n                message += \"--------------------------------------\\n\\n\";\r\n            }\r\n\r\n\r\n            //Add the assembly call order\r\n            if (entry.AssemblyCallOrder != null && entry.AssemblyCallOrder.Count > 0)\r\n            {\r\n                message += \"---------Assembly call order----------\\n\";\r\n                foreach (AssemblyObject assembly in entry.AssemblyCallOrder)\r\n                {\r\n                    message += assembly.Name;\r\n                    if (assembly.Hash.Equals(\"[none]\", StringComparison.InvariantCultureIgnoreCase) == false)\r\n                    {\r\n                        message += \" (SHA-256: \" + assembly.Hash + \")\";\r\n                    }\r\n                    message += \"\\n\";\r\n\r\n                }\r\n                message += \"--------------------------------------\\n\\n\";\r\n            }\r\n\r\n            //Add originating information\r\n            if (entry.OriginatingAssemblyName != null &&\r\n                entry.OriginatingAssemblyVersion != null &&\r\n                entry.OriginatingAssemblyHash != null &&\r\n                entry.OriginatingAssemblyResourceNames != null &&\r\n                entry.OriginatingAssemblyName.Equals(\"DotDumper\", StringComparison.InvariantCultureIgnoreCase) == false)\r\n            {\r\n                message += \"---Originating assembly information---\\n\";\r\n                message += \"Name: \" + entry.OriginatingAssemblyName + \"\\n\";\r\n                message += \"Version: \" + entry.OriginatingAssemblyVersion + \"\\n\";\r\n                message += \"MD-5: \" + entry.OriginatingAssemblyHash.Md5 + \"\\n\";\r\n                message += \"SHA-1: \" + entry.OriginatingAssemblyHash.Sha1 + \"\\n\";\r\n                message += \"SHA-256: \" + entry.OriginatingAssemblyHash.Sha256 + \"\\n\";\r\n                message += \"SHA-384: \" + entry.OriginatingAssemblyHash.Sha384 + \"\\n\";\r\n                message += \"SHA-512: \" + entry.OriginatingAssemblyHash.Sha512 + \"\\n\";\r\n                if (entry.OriginatingAssemblyHash.TypeRef != null && entry.OriginatingAssemblyHash.TypeRef.Length > 0)\r\n                {\r\n                    message += \"TypeRef: \" + entry.OriginatingAssemblyHash.TypeRef + \"\\n\";\r\n                }\r\n                if (entry.OriginatingAssemblyHash.ImportHash != null && entry.OriginatingAssemblyHash.ImportHash.Length > 0)\r\n                {\r\n                    message += \"ImportHash: \" + entry.OriginatingAssemblyHash.ImportHash + \"\\n\";\r\n                }\r\n                if (entry.OriginatingAssemblyHash.AuthenticodeSha256 != null && entry.OriginatingAssemblyHash.AuthenticodeSha256.Length > 0)\r\n                {\r\n                    message += \"Authenticode (SHA-256 based): \" + entry.OriginatingAssemblyHash.AuthenticodeSha256 + \"\\n\";\r\n                }\r\n\r\n                if (entry.OriginatingAssemblyResourceNames != null && entry.OriginatingAssemblyResourceNames.Count > 0)\r\n                {\r\n                    message += \"Resource names:\\n\";\r\n                    foreach (string resourceName in entry.OriginatingAssemblyResourceNames)\r\n                    {\r\n                        message += \"\\t\" + resourceName + \"\\n\";\r\n                    }\r\n                }\r\n\r\n                message += \"--------------------------------------\\n\\n\";\r\n            }\r\n\r\n            //Add parent assembly hash\r\n\r\n            if (entry.ParentAssemblyHash != null && entry.ParentAssemblyHash.Equals(\"[none]\", StringComparison.InvariantCultureIgnoreCase) == false)\r\n            {\r\n                message += \"---------Parent assembly hash---------\\n\";\r\n                message += entry.ParentAssemblyHash;\r\n                message += \"\\n--------------------------------------\\n\\n\";\r\n            }\r\n\r\n\r\n            //Add argument names, types, and values\r\n            if (entry.FunctionArguments != null && entry.FunctionArguments.Count > 0)\r\n            {\r\n                message += \"----Function argument information-----\\n\";\r\n                for (int i = 0; i < entry.FunctionArguments.Count; i++)\r\n                {\r\n                    //Get the current object\r\n                    Argument argument = entry.FunctionArguments[i];\r\n\r\n                    //Add details for the current argument to the message\r\n                    message += \"Type:  \\\"\" + argument.Type + \"\\\"\\n\";\r\n                    message += \"Name:  \\\"\" + argument.Name + \"\\\"\\n\";\r\n                    message += \"Value: \\\"\" + argument.Value + \"\\\"\\n\";\r\n\r\n                    //If there are more arguments after this, add a new line for readability\r\n                    if ((entry.FunctionArguments.Count - 1) > i)\r\n                    {\r\n                        message += \"\\n\";\r\n                    }\r\n                }\r\n                message += \"--------------------------------------\\n\\n\";\r\n            }\r\n\r\n            //Add the return value\r\n            if (entry.ReturnValue != null)\r\n            {\r\n                message += \"-------------Return value-------------\\n\";\r\n                message += \"Type:  \\\"\" + entry.ReturnValue.Type + \"\\\"\\n\";\r\n                message += \"Name:  \\\"\" + entry.ReturnValue.Name + \"\\\"\\n\";\r\n                message += \"Value: \\\"\" + entry.ReturnValue.Value + \"\\\"\\n\";\r\n                message += \"--------------------------------------\\n\\n\";\r\n            }\r\n\r\n            //Add related files\r\n            if (entry.RelatedFileHashes != null && entry.RelatedFileHashes.Count > 0)\r\n            {\r\n                message += \"------------Related files-------------\\n\";\r\n                for (int i = 0; i < entry.RelatedFileHashes.Count; i++)\r\n                {\r\n                    //Get the current object\r\n                    Hash hash = entry.RelatedFileHashes[i];\r\n\r\n                    //Add details for the current argument to the message\r\n                    message += \"MD-5:  \\\"\" + hash.Md5 + \"\\\"\\n\";\r\n                    message += \"SHA-1:  \\\"\" + hash.Sha1 + \"\\\"\\n\";\r\n                    message += \"SHA-256: \\\"\" + hash.Sha256 + \"\\\"\\n\";\r\n                    message += \"SHA-384: \\\"\" + hash.Sha384 + \"\\\"\\n\";\r\n                    message += \"SHA-512: \\\"\" + hash.Sha512 + \"\\\"\\n\";\r\n                    if (hash.TypeRef != null && hash.TypeRef.Length > 0)\r\n                    {\r\n                        message += \"TypeRef: \\\"\" + hash.TypeRef + \"\\\"\\n\";\r\n                    }\r\n                    if (hash.ImportHash != null && hash.ImportHash.Length > 0)\r\n                    {\r\n                        message += \"ImportHash: \\\"\" + hash.ImportHash + \"\\\"\\n\";\r\n                    }\r\n                    if (hash.AuthenticodeSha256 != null && hash.AuthenticodeSha256.Length > 0)\r\n                    {\r\n                        message += \"Authenticode (SHA-256 based): \\\"\" + hash.AuthenticodeSha256 + \"\\\"\\n\";\r\n                    }\r\n\r\n                    //If there are more arguments after this, add a new line for readability\r\n                    if ((entry.RelatedFileHashes.Count - 1) > i)\r\n                    {\r\n                        message += \"\\n\";\r\n                    }\r\n                }\r\n                message += \"--------------------------------------\\n\\n\";\r\n            }\r\n\r\n            return title + message;\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/Models/Argument.cs",
    "content": "﻿using System.Collections.Generic;\r\n\r\nnamespace DotDumper.Models\r\n{\r\n    /// <summary>\r\n    /// This class is used to store the type, name, and value of an argument in a serialisable model\r\n    /// </summary>\r\n    public class Argument\r\n    {\r\n        /// <summary>\r\n        /// The type of the given argument, in full (i.e. System.String, rather than String)\r\n        /// </summary>\r\n        public string Type { get; set; }\r\n\r\n        /// <summary>\r\n        /// The name of the argument, i.e. the function definition \"Main(string[] args)\" has \"args\" as the name of the function's sole argument\r\n        /// </summary>\r\n        public string Name { get; set; }\r\n\r\n        /// <summary>\r\n        /// The value of the argument, in textual form (which can also be a reference to a hash, as defined in the list of hashes)\r\n        /// </summary>\r\n        public string Value { get; set; }\r\n\r\n        /// <summary>\r\n        /// The list of related file hashes as Hash objects\r\n        /// </summary>\r\n        public List<Hash> RelatedFileHashes { get; set; }\r\n\r\n        /// <summary>\r\n        /// The constructor to make an Argument object\r\n        /// </summary>\r\n        /// <param name=\"type\">The type of the given argument, in full (i.e. System.String, rather than String)</param>\r\n        /// <param name=\"name\">The name of the argument, i.e. the function definition \"Main(string[] args)\" has \"args\" as the name of the function's sole argument</param>\r\n        /// <param name=\"value\">The value of the argument, in textual form (which can also be a reference to a hash, as defined in the list of hashes)</param>\r\n        /// <param name=\"relatedFileHashes\">The list of related file hashes as Hash objects</param>\r\n        public Argument(string type, string name, string value, List<Hash> relatedFileHashes)\r\n        {\r\n            Type = type;\r\n            Name = name;\r\n            Value = value;\r\n            RelatedFileHashes = relatedFileHashes;\r\n        }\r\n\r\n        /// <summary>\r\n        /// DO NOTE USE THIS CONSTRUCTOR! This is an empty constructor to be able to serialise the object, which is its sole purpose!\r\n        /// </summary>\r\n        public Argument()\r\n        {\r\n\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/Models/AssemblyObject.cs",
    "content": "﻿namespace DotDumper.Models\r\n{\r\n    /// <summary>\r\n    /// An object to reference Assembly objects, based on a SHA-256 hash, and a name\r\n    /// </summary>\r\n    public class AssemblyObject\r\n    {\r\n        /// <summary>\r\n        /// The SHA-256 hash of the assembly object it references\r\n        /// </summary>\r\n        public string Hash { get; set; }\r\n\r\n        /// <summary>\r\n        /// The name of the referenced assembly object\r\n        /// </summary>\r\n        public string Name { get; set; }\r\n\r\n        /// <summary>\r\n        /// The constructor to create an instance of this object type\r\n        /// </summary>\r\n        /// <param name=\"hash\">The SHA-256 hash of the assembly object it references</param>\r\n        /// <param name=\"name\">The name of the referenced assembly object</param>\r\n        public AssemblyObject(string hash, string name)\r\n        {\r\n            Hash = hash;\r\n            Name = name;\r\n        }\r\n\r\n        /// <summary>\r\n        /// DO NOTE USE THIS CONSTRUCTOR! This is an empty constructor to be able to serialise the object, which is its sole purpose!\r\n        /// </summary>\r\n        public AssemblyObject()\r\n        {\r\n\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/Models/Hash.cs",
    "content": "﻿namespace DotDumper.Models\r\n{\r\n    /// <summary>\r\n    /// A model to contain the MD-5, SHA-1, and SHA-256 hash for a given file\r\n    /// </summary>\r\n    public class Hash\r\n    {\r\n        /// <summary>\r\n        /// The MD-5 hash of the referenced file\r\n        /// </summary>\r\n        public string Md5 { get; set; }\r\n\r\n        /// <summary>\r\n        /// The SHA-1 hash of the referenced file\r\n        /// </summary>\r\n        public string Sha1 { get; set; }\r\n\r\n        /// <summary>\r\n        /// The SHA-256 hash of the referenced file\r\n        /// </summary>\r\n        public string Sha256 { get; set; }\r\n\r\n        /// <summary>\r\n        /// The SHA-384 hash of the referenced file\r\n        /// </summary>\r\n        public string Sha384 { get; set; }\r\n\r\n        /// <summary>\r\n        /// The SHA-512 hash of the referenced file\r\n        /// </summary>\r\n        public string Sha512 { get; set; }\r\n\r\n        /// <summary>\r\n        /// The TypeRef hash of the referenced file\r\n        /// </summary>\r\n        public string TypeRef { get; set; }\r\n\r\n        /// <summary>\r\n        /// The import hash of the referenced file\r\n        /// </summary>\r\n        public string ImportHash { get; set; }\r\n\r\n        /// <summary>\r\n        /// The authenticode hash (SHA-256 based) of the referenced file\r\n        /// </summary>\r\n        public string AuthenticodeSha256 { get; set; }\r\n\r\n        /// <summary>\r\n        /// Creates a hash object with the given values for the corresponding hashes\r\n        /// </summary>\r\n        /// <param name=\"md5\">The MD-5 hash of the referenced file</param>\r\n        /// <param name=\"sha1\">The SHA-1 hash of the referenced file</param>\r\n        /// <param name=\"sha256\">The SHA-256 hash of the referenced file</param>\r\n        /// <param name=\"sha384\">The SHA-384 hash of the referenced file</param>\r\n        /// <param name=\"sha512\">The SHA-512 hash of the referenced file</param>\r\n        /// <param name=\"typeRef\">The TypeRef hash of the referenced file</param>\r\n        /// <param name=\"importHash\">The import hash of the referenced file</param>\r\n        /// <param name=\"authenticodeSha256\">The authenticode hash (SHA-256 based) of the referenced file</param>\r\n        public Hash(string md5, string sha1, string sha256, string sha384, string sha512, string typeRef, string importHash, string authenticodeSha256)\r\n        {\r\n            Md5 = md5;\r\n            Sha1 = sha1;\r\n            Sha256 = sha256;\r\n            Sha384 = sha384;\r\n            Sha512 = sha512;\r\n            TypeRef = typeRef;\r\n            ImportHash = importHash;\r\n            AuthenticodeSha256 = authenticodeSha256;\r\n        }\r\n\r\n        /// <summary>\r\n        /// DO NOTE USE THIS CONSTRUCTOR! This is an empty constructor to be able to serialise the object, which is its sole purpose!\r\n        /// </summary>\r\n        public Hash()\r\n        {\r\n\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/Models/LogEntry.cs",
    "content": "﻿using System;\r\nusing System.Collections.Generic;\r\nusing DotDumper.Hooks;\r\n\r\nnamespace DotDumper.Models\r\n{\r\n    /// <summary>\r\n    /// A log entry object, which is used by the logger to easily write logs into different formats (i.e. JSON, XML, and human readable plaintext)\r\n    /// </summary>\r\n    public class LogEntry\r\n    {\r\n        /// <summary>\r\n        /// The name of the assembly object the call originated from\r\n        /// </summary>\r\n        public string OriginatingAssemblyName { get; set; }\r\n\r\n        /// <summary>\r\n        /// The hash object which contains the MD-5, SHA-1, and SHA-256 hashes of the assembly object where the call originated from\r\n        /// </summary>\r\n        public Hash OriginatingAssemblyHash { get; set; }\r\n\r\n        /// <summary>\r\n        /// The version of the assembly object the call originated from\r\n        /// </summary>\r\n        public string OriginatingAssemblyVersion { get; set; }\r\n\r\n        /// <summary>\r\n        /// The names of the resources of the assembly object the call originated from\r\n        /// </summary>\r\n        public List<string> OriginatingAssemblyResourceNames { get; set; }\r\n\r\n        /// <summary>\r\n        /// The hash of the assembly object that called/loaded this assembly object. If absent, this should be null!\r\n        /// </summary>\r\n        public string ParentAssemblyHash { get; set; }\r\n\r\n        /// <summary>\r\n        /// A list of hash objects of files related to this call, all of which can be found in the logging folder (named after their SHA-256 hash)\r\n        /// </summary>\r\n        public List<Hash> RelatedFileHashes { get; set; }\r\n\r\n        /// <summary>\r\n        /// The date time at the creation of this object, formatted as dd-MM-yyyy HH:mm:ss\r\n        /// </summary>\r\n        public string DateTimeStamp { get; set; }\r\n\r\n        /// <summary>\r\n        /// The name of the hooked function\r\n        /// </summary>\r\n        public string FunctionName { get; set; }\r\n\r\n        /// <summary>\r\n        /// The arguments of the function\r\n        /// </summary>\r\n        public List<Argument> FunctionArguments { get; set; }\r\n\r\n        /// <summary>\r\n        /// The returned value of the original function\r\n        /// </summary>\r\n        public Argument ReturnValue { get; set; }\r\n\r\n        /// <summary>\r\n        /// The stack trace to the hooked function\r\n        /// </summary>\r\n        public List<string> StackTrace { get; set; }\r\n\r\n        /// <summary>\r\n        /// The order in which the assembly objects are called prior to this call\r\n        /// </summary>\r\n        public List<AssemblyObject> AssemblyCallOrder { get; set; }\r\n\r\n        /// <summary>\r\n        /// Creates a LogEntry object, which the logger uses to log the details within the object in several formats. NOTE: ALL HOOKS WILL BE SET AFTER THIS OBJECT HAS BEEN CREATED!\r\n        /// </summary>\r\n        /// <param name=\"originatingAssemblyName\">The name of the assembly object the call originated from</param>\r\n        /// <param name=\"originatingAssemblyHash\">The hash object which contains the MD-5, SHA-1, and SHA-256 hashes of the assembly object where the call originated from</param>\r\n        /// <param name=\"originatingAssemblyVersion\">The version of the assembly object the call originated from</param>\r\n        /// <param name=\"originatingAssemblyResourceNames\">The names of the resources of the assembly object the call originated from</param>\r\n        /// <param name=\"parentAssemblyHash\">The hash of the assembly object that called/loaded this assembly object. If absent, this should be null!</param>\r\n        /// <param name=\"relatedFileHashes\">A list of hash objects of files related to this call, all of which can be found in the logging folder (named after their SHA-256 hash)</param>\r\n        /// <param name=\"functionName\">The name of the hooked function</param>\r\n        /// <param name=\"functionArguments\">The arguments of the function</param>\r\n        /// <param name=\"returnValue\">The returned value of the original function</param>\r\n        /// <param name=\"stackTrace\">The stack trace to the hooked function</param>\r\n        /// <param name=\"assemblyCallOrder\">The order in which the assembly objects are called prior to this call</param>\r\n        public LogEntry(string originatingAssemblyName, Hash originatingAssemblyHash, string originatingAssemblyVersion, List<string> originatingAssemblyResourceNames, string parentAssemblyHash, List<Hash> relatedFileHashes, string functionName, List<Argument> functionArguments, Argument returnValue, List<string> stackTrace, List<AssemblyObject> assemblyCallOrder)\r\n        {\r\n            OriginatingAssemblyName = originatingAssemblyName;\r\n            OriginatingAssemblyHash = originatingAssemblyHash;\r\n            OriginatingAssemblyVersion = originatingAssemblyVersion;\r\n            OriginatingAssemblyResourceNames = originatingAssemblyResourceNames;\r\n            ParentAssemblyHash = parentAssemblyHash;\r\n            RelatedFileHashes = relatedFileHashes;\r\n            DateTimeStamp = GetDateTime();\r\n            FunctionName = functionName;\r\n            FunctionArguments = functionArguments;\r\n            ReturnValue = returnValue;\r\n            StackTrace = stackTrace;\r\n            AssemblyCallOrder = assemblyCallOrder;\r\n        }\r\n\r\n        /// <summary>\r\n        /// DO NOTE USE THIS CONSTRUCTOR! This is an empty constructor to be able to serialise the object, which is its sole purpose! NOTE: ALL HOOKS ARE SET AFTER THIS CONSTRUCTOR HAS BEEN CALLED!\r\n        /// </summary>\r\n        public LogEntry()\r\n        {\r\n            DateTimeStamp = GetDateTime();\r\n        }\r\n\r\n        /// <summary>\r\n        /// A private method to get the current date time as a string, in the following format: dd-MM-yyyy HH:mm:ss\r\n        /// </summary>\r\n        /// <returns>The date time format of the current system at the moment of this call</returns>\r\n        private static string GetDateTime()\r\n        {\r\n            HookManager.UnHookAll();\r\n            string dateTime = DateTime.Now.ToString(\"dd-MM-yyyy HH:mm:ss\");\r\n            HookManager.HookAll();\r\n            return dateTime;\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/Models/UnmanagedMethodInfo.cs",
    "content": "﻿using System;\r\nusing System.Collections.Generic;\r\nusing DotDumper.Hooks;\r\n\r\nnamespace DotDumper.Models\r\n{\r\n    /// <summary>\r\n    /// An object which contains all required information to set an unmanaged hook\r\n    /// </summary>\r\n    class UnmanagedMethodInfo\r\n    {\r\n        /// <summary>\r\n        /// The full method name of the hook's target function\r\n        /// </summary>\r\n        public string FullMethodName { get; private set; }\r\n\r\n        /// <summary>\r\n        /// The function name (excluding arguments and return type) of the target function. This is also used to fetch the address of the function.\r\n        /// </summary>\r\n        public string MethodName { get; private set; }\r\n\r\n        /// <summary>\r\n        /// The name of the DLL where the targeted function resides\r\n        /// </summary>\r\n        public string Dll { get; private set; }\r\n\r\n        /// <summary>\r\n        /// The pointer of the targeted function\r\n        /// </summary>\r\n        public IntPtr Pointer { get; private set; }\r\n\r\n        /// <summary>\r\n        /// The types of the parameters, in order, disregards casing\r\n        /// </summary>\r\n        public List<string> ParameterTypes { get; private set; }\r\n\r\n\r\n        /// <summary>\r\n        /// Creates an unmanaged method info object, which is used when hooking unmanaged functions\r\n        /// </summary>\r\n        /// <param name=\"dll\">The DLL where the target function resides</param>\r\n        /// <param name=\"fullMethodName\">The full method name (including return type and arguments), only used to print data to the logs</param>\r\n        /// <param name=\"methodName\">The targeted method's name (excluding return type and arguments)</param>\r\n        /// <param name=\"parameterTypes\">A list of the argument types of the function, need to be in order</param>\r\n        public UnmanagedMethodInfo(string dll, string fullMethodName, string methodName, List<string> parameterTypes)\r\n        {\r\n            this.Dll = dll;\r\n            this.FullMethodName = fullMethodName;\r\n            this.MethodName = methodName;\r\n            this.Pointer = GetPointer(dll, methodName);\r\n            this.ParameterTypes = parameterTypes;\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the pointer for the given function from the given DLL, using interop Windows API calls. No hooks are set nor removed, since this object is only made prior to setting hooks.\r\n        /// </summary>\r\n        /// <param name=\"dll\">The DLL where the targeted function resides</param>\r\n        /// <param name=\"methodName\">The targeted function's name</param>\r\n        /// <returns>A pointer to the memory address of the given function</returns>\r\n        private IntPtr GetPointer(string dll, string methodName)\r\n        {\r\n            IntPtr pointer = InteropFunctions.GetProcAddress(InteropFunctions.GetModuleHandle(dll), methodName);\r\n            if (pointer == IntPtr.Zero)\r\n            {\r\n                InteropFunctions.LoadLibrary(dll);\r\n                pointer = InteropFunctions.GetProcAddress(InteropFunctions.GetModuleHandle(dll), methodName);\r\n            }\r\n            return pointer;\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/Pipes/PipeManager.cs",
    "content": "﻿using System;\r\nusing System.IO;\r\nusing System.IO.Pipes;\r\nusing System.Text;\r\nusing System.Threading;\r\nusing DotDumper.Helpers;\r\nusing DotDumper.HookHandlers;\r\nusing DotDumper.Hooks;\r\nusing DotDumper.Models;\r\n\r\nnamespace DotDumper.Pipes\r\n{\r\n    class PipeManager\r\n    {\r\n        /// <summary>\r\n        /// The named pipe's name\r\n        /// </summary>\r\n        public static string PIPE_NAME = \"dotdumper\";\r\n\r\n        /// <summary>\r\n        /// The named pipe to communicate with the unmanaged DLL to handle unmanaged hooks\r\n        /// </summary>\r\n        public static NamedPipeServerStream Pipe = new NamedPipeServerStream(PIPE_NAME, PipeDirection.InOut, 100, PipeTransmissionMode.Byte);\r\n\r\n        /// <summary>\r\n        /// Creates the thread which handles the incoming data\r\n        /// </summary>\r\n        public static void Initialise()\r\n        {\r\n            //Creates a new thread to handle incoming calls\r\n            Thread newThread = new Thread(new ThreadStart(HandlePipeCalls));\r\n            /*\r\n             * Sets the priority to the highest, which is required. Otherwise, the original sample will continue its execution\r\n             * before the interaction with the pipe and the logging thereof is not finished before another thread (usually DotDumper's \r\n             * main thread, via which the malware executes) is given priority.\r\n             */\r\n            newThread.Priority = ThreadPriority.Highest;\r\n            //Start the new thread\r\n            newThread.Start();\r\n        }\r\n\r\n        /// <summary>\r\n        /// Handles named pipe interactions\r\n        /// </summary>\r\n        public static void HandlePipeCalls()\r\n        {\r\n            //If the pipe isn't initialised (or has been closed for any reason), an error is thrown and logged\r\n            if (Pipe == null)\r\n            {\r\n                LogEntry error = LogEntryHelper.Create(0, new Exception(\"Pipe not found for name: \" + PIPE_NAME));\r\n                GenericHookHelper._Logger.Log(error, false, true);\r\n                return;\r\n            }\r\n\r\n            //If there is no connection yet, wait for it to come in\r\n            if (Pipe.IsConnected == false)\r\n            {\r\n                Pipe.WaitForConnection();\r\n            }\r\n\r\n            //The writer is used to write data to the pipe\r\n            StreamWriter writer = new StreamWriter(Pipe);\r\n            //Automatically write data after a write call is made\r\n            writer.AutoFlush = true;\r\n            //The variable to fetch raw bytes from the named pipe\r\n            byte[] buffer;\r\n\r\n\r\n            //Loop endlessly once this segment is reached, waiting for communication from the unmanaged DLL\r\n            while (true)\r\n            {\r\n                //Gets the buffer from the pipe\r\n                buffer = GetBufferFromPipe();\r\n                //Converts the given bytes to a UTF-8 string\r\n                string input = Encoding.UTF8.GetString(buffer, 0, buffer.Length);\r\n\r\n                //If the input starts with unhook, the specified function is unhooked\r\n                if (input != null && input.StartsWith(\"unhook-\", StringComparison.InvariantCultureIgnoreCase))\r\n                {\r\n                    string hookName = input.Substring(\"unhook-\".Length);\r\n                    bool unhookResult = HookManager.UnHookByHookName(hookName);\r\n                    //HookManager.UnHookAll();\r\n                }\r\n\r\n                //If the input starts with hook, the specified function is hooked\r\n                if (input != null && input.StartsWith(\"hook-\", StringComparison.InvariantCultureIgnoreCase))\r\n                {\r\n                    string hookName = input.Substring(\"hook-\".Length);\r\n                    bool hookResult = HookManager.HookByHookName(hookName);\r\n                    //HookManager.HookAll();\r\n                }\r\n\r\n                //If the input starts with log, the specified function is logged\r\n                if (input != null && input.StartsWith(\"log-\", StringComparison.InvariantCultureIgnoreCase))\r\n                {\r\n                    string functionName = input.Substring(\"log-\".Length);\r\n                    LogEntry logEntry = null;\r\n                    switch (functionName)\r\n                    {\r\n                        case \"MessageBoxW\":\r\n                            logEntry = HandleMessageBoxW();\r\n                            break;\r\n                        case \"WriteProcessMemory\":\r\n                            logEntry = HandleWriteProcessMemory();\r\n                            break;\r\n                        case \"CreateProcessA\":\r\n                            logEntry = HandleCreateProcessA();\r\n                            break;\r\n                        case \"CreateProcessW\":\r\n                            logEntry = HandleCreateProcessW();\r\n                            break;\r\n                        default:\r\n                            logEntry = LogEntryHelper.Create(0, new Exception(\"Unknown function to log (\\\"\" + functionName + \"\\\"), as such all received data from the pipe is printed below:\\n\\n\" + input));\r\n                            break;\r\n                    }\r\n\r\n                    //If a log entry has been created, it is logged\r\n                    if (logEntry != null)\r\n                    {\r\n                        GenericHookHelper._Logger.Log(logEntry, false, true);\r\n                    }\r\n                }\r\n            }\r\n        }\r\n\r\n        private static LogEntry HandleMessageBoxW()\r\n        {\r\n            byte[] result = GetBufferFromPipe();\r\n            string s = Encoding.Unicode.GetString(result, 0, result.Length);\r\n            return LogEntryHelper.Create(OriginalUnmanagedFunctions.User32MessageBoxW(), new object[] { 0, s }, null);\r\n        }\r\n\r\n        private static LogEntry HandleWriteProcessMemory()\r\n        {\r\n            byte[] hProcessBytes = GetBufferFromPipe();\r\n\r\n            //Is actually the process ID, not the raw handle\r\n            string hProcess = Encoding.ASCII.GetString(hProcessBytes);\r\n\r\n            byte[] lpBaseAddressBytes = GetBufferFromPipe();\r\n\r\n            long lpBaseAddressLong;\r\n            if (IntPtr.Size == 8)\r\n            {\r\n                lpBaseAddressLong = BitConverter.ToInt64(lpBaseAddressBytes, 0);\r\n            }\r\n            else\r\n            {\r\n                lpBaseAddressLong = BitConverter.ToInt32(lpBaseAddressBytes, 0);\r\n            }\r\n            string lpBaseAddress = \"0x\" + lpBaseAddressLong.ToString(\"x\");\r\n\r\n            byte[] lpBuffer = GetBufferFromPipe();\r\n\r\n            string lpBufferLength = \"0x\" + int.Parse((\"\" + lpBuffer.Length)).ToString(\"x\");\r\n\r\n            //WriteProcessMemory(IntPtr hProcess, int lpBaseAddress, IntPtr lpBuffer, int nSize, ref int lpNumberOfBytesWritten)\r\n            return LogEntryHelper.Create(OriginalUnmanagedFunctions.Kernel32WriteProcessMemory(), new object[] { hProcess, lpBaseAddress, lpBuffer, lpBufferLength, null }, null);\r\n        }\r\n\r\n        private static LogEntry HandleCreateProcessA()\r\n        {\r\n            byte[] lpApplicationNameBytes = GetBufferFromPipe();\r\n            string applicationName = Encoding.ASCII.GetString(lpApplicationNameBytes);\r\n\r\n            byte[] lpCommandLineBytes = GetBufferFromPipe();\r\n            string commandLine = Encoding.ASCII.GetString(lpCommandLineBytes);\r\n\r\n            byte[] creationFlagsBytes = GetBufferFromPipe();\r\n            string asciiFlags = Encoding.ASCII.GetString(creationFlagsBytes);\r\n\r\n            string creationFlags = \"0x\" + int.Parse(asciiFlags).ToString(\"x\");\r\n\r\n            //string applicationName, IntPtr commandLine, IntPtr processAttributes, IntPtr threadAttributes, bool inheritHandles, int creationFlags, IntPtr environment, IntPtr currentDirectory, ref IntPtr startupInfo, ref IntPtr processInformation\r\n            return LogEntryHelper.Create(OriginalUnmanagedFunctions.Kernel32CreateProcessA(), new object[] { applicationName, commandLine, null, null, null, creationFlags, null, null, null, null }, null);\r\n        }\r\n\r\n        private static LogEntry HandleCreateProcessW()\r\n        {\r\n            byte[] lpApplicationNameBytes = GetBufferFromPipe();\r\n            string applicationName = Encoding.Unicode.GetString(lpApplicationNameBytes);\r\n\r\n            byte[] lpCommandLineBytes = GetBufferFromPipe();\r\n            string commandLine = Encoding.Unicode.GetString(lpCommandLineBytes);\r\n\r\n            byte[] creationFlagsBytes = GetBufferFromPipe();\r\n            string asciiFlags = Encoding.ASCII.GetString(creationFlagsBytes);\r\n\r\n            string creationFlags = \"0x\" + int.Parse(asciiFlags).ToString(\"x\");\r\n\r\n            //string applicationName, IntPtr commandLine, IntPtr processAttributes, IntPtr threadAttributes, bool inheritHandles, int creationFlags, IntPtr environment, IntPtr currentDirectory, ref IntPtr startupInfo, ref IntPtr processInformation\r\n            return LogEntryHelper.Create(OriginalUnmanagedFunctions.Kernel32CreateProcessW(), new object[] { applicationName, commandLine, null, null, null, creationFlags, null, null, null, null }, null);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets the buffer from the pipe, no larger than 10 000 bytes at a time\r\n        /// </summary>\r\n        /// <returns>The pipe's data</returns>\r\n        private static byte[] GetBufferFromPipe()\r\n        {\r\n            //Create a buffer where the pipe's data is to be stored in\r\n            byte[] buffer = new byte[10000];\r\n            //Read the data\r\n            int size = Pipe.Read(buffer, 0, 10000);\r\n            //Create the subset (and return it) for the number of read bytes from the buffer\r\n            return GetSubArray(buffer, 0, size);\r\n        }\r\n\r\n        /// <summary>\r\n        /// Gets a subset of the byte array, starting at the given index, equal to count's value in size\r\n        /// </summary>\r\n        /// <param name=\"buffer\">The buffer to take the subset from</param>\r\n        /// <param name=\"index\">The index to start at</param>\r\n        /// <param name=\"count\">The number of bytes to take from the buffer</param>\r\n        /// <returns>The byte array subset, or an empty byte array if the values would overflow</returns>\r\n        private static byte[] GetSubArray(byte[] buffer, int index, int count)\r\n        {\r\n            //Gets the length of the buffer\r\n            int length = buffer.Length;\r\n\r\n            /*\r\n             * If the index is larger or equal to the length, it'd result in an index out of bounds error.\r\n             * \r\n             * If the count is more than the length, the subset would be larger than the buffer, which (eventually) results in an index out of bounds error.\r\n             * \r\n             * If the index plus the count (which is equal to the length of the subset) is larger than the buffer's length, it will result in an index out of bounds error.\r\n             */\r\n            if (index >= length || count > length || (index + count) > length)\r\n            {\r\n                return new byte[0];\r\n            }\r\n\r\n            //Create the new buffer\r\n            byte[] subset = new byte[count];\r\n            for (int i = 0; i < count; i++)\r\n            {\r\n                //Copy each byte, starting at the given offset\r\n                subset[i] = buffer[index + i];\r\n            }\r\n\r\n            //Return the newly created subset\r\n            return subset;\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/Program.cs",
    "content": "﻿using System;\r\nusing System.Reflection;\r\nusing DotDumper.Hooks;\r\nusing DotDumper.HookHandlers;\r\nusing System.Collections.Generic;\r\nusing DotDumper.Helpers;\r\nusing DotDumper.Models;\r\nusing System.Threading;\r\nusing DotDumper.Pipes;\r\n\r\nnamespace DotDumper\r\n{\r\n    class Program\r\n    {\r\n        /// <summary>\r\n        /// The version information of DotDumper\r\n        /// </summary>\r\n        public static readonly string VERSION = \"DotDumper 1.1-stable by Max 'Libra' Kersten (@Libranalysis)\\n\";\r\n\r\n        /// <summary>\r\n        /// A boolean which is to be changed within the source code. The sole purpose is to load the CLI arguments differently (or rather, load them from hardcoded values when debugging), to easily change them without breaking the argument parsing method\r\n        /// </summary>\r\n        public static readonly bool DEBUG = false;\r\n\r\n        static void Main(string[] args)\r\n        {\r\n            if (DEBUG)\r\n            {\r\n                //Provide arguments to parse when debugging in Visual Studio\r\n            }\r\n            else\r\n            {\r\n                //Parses the given arguments\r\n                ArgumentHandler.ParseArguments(args);\r\n            }\r\n\r\n            //Creates the logger object\r\n            GenericHookHelper._Logger = new Logger();\r\n\r\n            //Initialises the named pipe manager which handles the named pipe communication\r\n            PipeManager.Initialise();\r\n\r\n            //Creates and starts the delayed timer to handle stagnations during the execution\r\n            Timer Timer = new Timer(StagnationHandler.TimerCallback, null, 0, (20 * 1000));\r\n\r\n            //Initialises all hooks\r\n            HookManager.Initialise();\r\n\r\n            //LoadFile also sets the location of the entry assembly to the malware sample's location, unlike the Load(byte[] rawAssembly) function\r\n            Assembly assembly = Assembly.LoadFile(Config.SamplePath);\r\n\r\n            //Sets the original assembly, which is used by some hooks\r\n            GenericHookHelper.OriginalAssembly = assembly;\r\n\r\n            //Set all hooks, before moving on to the execution of the sample\r\n            HookManager.HookAll();\r\n\r\n            try\r\n            {\r\n                //Check if the entry point should be overridden\r\n                if (Config.OverrideEntryPoint == false)\r\n                {\r\n                    //If this is not the case, a verification is in place to ensure that the given binary has a defined entry point\r\n                    if (assembly.EntryPoint == null)\r\n                    {\r\n                        throw new Exception(\"No default entry point found in the given binary!\");\r\n                    }\r\n\r\n                    //If no arguments are provided, the entry point is called without arguments\r\n                    if (Config.DllArguments == null)\r\n                    {\r\n                        //Check if arguments are required (for string[] args in main, for example)\r\n                        int argLength = assembly.EntryPoint.GetParameters().Length;\r\n                        if (argLength != 0)\r\n                        {\r\n                            //If this is the case, empty strings arrays are provided as filler\r\n                            object[] arguments = new object[argLength];\r\n                            for (int i = 0; i < argLength; i++)\r\n                            {\r\n                                arguments[i] = new string[0];\r\n                            }\r\n                            assembly.EntryPoint.Invoke(null, arguments);\r\n                        }\r\n                        else //If this is not the case, no argument is given at all\r\n                        {\r\n                            assembly.EntryPoint.Invoke(null, null);\r\n                        }\r\n                    }\r\n                    else //Since user-provided arguments are present, they will be passed on\r\n                    {\r\n                        assembly.EntryPoint.Invoke(null, Config.DllArguments);\r\n                    }\r\n                }\r\n                else //Entry point is overridden\r\n                {\r\n                    //Get the type object from the given assembly\r\n                    Type type = assembly.GetType(Config.DllFullyQualifiedClassName);\r\n                    //If the object cannot be found, null is returned\r\n                    if (type == null)\r\n                    {\r\n                        throw new Exception(\"No class found in the given sample for \\\"\" + Config.DllFullyQualifiedClassName + \"\\\"!\");\r\n                    }\r\n\r\n                    //Create a list of types (in order) that should match the public function's argument types (and order)\r\n                    List<string> parameterTypes = new List<string>();\r\n                    if (Config.DllArguments != null)\r\n                    {\r\n                        foreach (object o in Config.DllArguments)\r\n                        {\r\n                            parameterTypes.Add(o.GetType().Name);\r\n                        }\r\n                    }\r\n\r\n                    //Get the method info object\r\n                    MethodInfo methodInfo = HookManager.GetMethodInfo(type, Config.DllFunctionName, parameterTypes);\r\n                    //If no such method can be found, null is returned\r\n                    if (methodInfo == null)\r\n                    {\r\n                        throw new Exception(\"No method found in the given class with the name \\\"\" + Config.DllFunctionName + \"\\\"!\");\r\n                    }\r\n\r\n                    //Null when invoking a static method\r\n                    object target = null;\r\n                    //If it is not static, an instance needs to be created\r\n                    if (methodInfo.IsStatic == false)\r\n                    {\r\n                        //Create an instance if the method is not static\r\n                        target = Activator.CreateInstance(type);\r\n                    }\r\n                    //Call the function\r\n                    type.InvokeMember(Config.DllFunctionName, BindingFlags.InvokeMethod, null, target, Config.DllArguments);\r\n                }\r\n            }\r\n            catch (Exception ex) //Catch any exception that is thrown\r\n            {\r\n                HookManager.UnHookAll();\r\n                //Log the message via the logger, dumping missing binaries as well\r\n                LogEntry entry = LogEntryHelper.Create(0, ex);\r\n                GenericHookHelper._Logger.Log(entry, false, true);\r\n            }\r\n            //Remove all hooks, as the sample's execution has finished (or migrated to a different process)\r\n            HookManager.UnHookAll();\r\n            //Sets the time to a future time to force the sandbo to time out\r\n            StagnationHandler.SetTime();\r\n        }\r\n    }\r\n}\r\n"
  },
  {
    "path": "DotDumper/Properties/AssemblyInfo.cs",
    "content": "﻿using System.Reflection;\r\nusing System.Runtime.InteropServices;\r\n\r\n// General Information about an assembly is controlled through the following\r\n// set of attributes. Change these attribute values to modify the information\r\n// associated with an assembly.\r\n[assembly: AssemblyTitle(\"DotDumper\")]\r\n[assembly: AssemblyDescription(\"\")]\r\n[assembly: AssemblyConfiguration(\"\")]\r\n[assembly: AssemblyCompany(\"\")]\r\n[assembly: AssemblyProduct(\"DotDumper\")]\r\n[assembly: AssemblyCopyright(\"Copyright ©  2021\")]\r\n[assembly: AssemblyTrademark(\"\")]\r\n[assembly: AssemblyCulture(\"\")]\r\n\r\n// Setting ComVisible to false makes the types in this assembly not visible\r\n// to COM components.  If you need to access a type in this assembly from\r\n// COM, set the ComVisible attribute to true on that type.\r\n[assembly: ComVisible(false)]\r\n\r\n// The following GUID is for the ID of the typelib if this project is exposed to COM\r\n[assembly: Guid(\"97b3a6ff-a6ec-488a-8206-9820dc1f109b\")]\r\n\r\n// Version information for an assembly consists of the following four values:\r\n//\r\n//      Major Version\r\n//      Minor Version\r\n//      Build Number\r\n//      Revision\r\n//\r\n// You can specify all the values or you can default the Build and Revision Numbers\r\n// by using the '*' as shown below:\r\n// [assembly: AssemblyVersion(\"1.0.*\")]\r\n[assembly: AssemblyVersion(\"1.0.0.0\")]\r\n[assembly: AssemblyFileVersion(\"1.0.0.0\")]\r\n"
  },
  {
    "path": "DotDumper/app.config",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<configuration>\r\n\t<!--The startup field sets the required .NET Framework version-->\r\n\t<startup>\r\n\t\t<supportedRuntime version=\"v4.0\" sku=\".NETFramework,Version=v4.8\" />\r\n\t</startup>\r\n\t<!--During runtime, remotely loaded sources are enabled. These are generally disabled, as they are a security risk. In this case, any and all code that DotDumper loads, needs to be executed, hence the fact that this setting is enabled-->\r\n\t<runtime>\r\n\t\t<loadFromRemoteSources enabled=\"true\" />\r\n\t\t<assemblyBinding xmlns=\"urn:schemas-microsoft-com:asm.v1\">\r\n\t\t\t<dependentAssembly>\r\n\t\t\t\t<assemblyIdentity name=\"System.Runtime.CompilerServices.Unsafe\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\" />\r\n\t\t\t\t<bindingRedirect oldVersion=\"0.0.0.0-6.0.0.0\" newVersion=\"6.0.0.0\" />\r\n\t\t\t</dependentAssembly>\r\n\t\t</assemblyBinding>\r\n\t</runtime>\r\n</configuration>\r\n"
  },
  {
    "path": "DotDumper/bin/Debug/DotDumper.exe.config",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<configuration>\r\n\t<!--The startup field sets the required .NET Framework version-->\r\n\t<startup>\r\n\t\t<supportedRuntime version=\"v4.0\" sku=\".NETFramework,Version=v4.8\" />\r\n\t</startup>\r\n\t<!--During runtime, remotely loaded sources are enabled. These are generally disabled, as they are a security risk. In this case, any and all code that DotDumper loads, needs to be executed, hence the fact that this setting is enabled-->\r\n\t<runtime>\r\n\t\t<loadFromRemoteSources enabled=\"true\" />\r\n\t\t<assemblyBinding xmlns=\"urn:schemas-microsoft-com:asm.v1\">\r\n\t\t\t<dependentAssembly>\r\n\t\t\t\t<assemblyIdentity name=\"System.Runtime.CompilerServices.Unsafe\" publicKeyToken=\"b03f5f7f11d50a3a\" culture=\"neutral\" />\r\n\t\t\t\t<bindingRedirect oldVersion=\"0.0.0.0-6.0.0.0\" newVersion=\"6.0.0.0\" />\r\n\t\t\t</dependentAssembly>\r\n\t\t</assemblyBinding>\r\n\t</runtime>\r\n</configuration>\r\n"
  },
  {
    "path": "DotDumper/bin/Debug/System.Buffers.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?><doc>\r\n  <assembly>\r\n    <name>System.Buffers</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:System.Buffers.ArrayPool`1\">\r\n      <summary>Provides a resource pool that enables reusing instances of type <see cref=\"T[]\"></see>.</summary>\r\n      <typeparam name=\"T\">The type of the objects that are in the resource pool.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.#ctor\">\r\n      <summary>Initializes a new instance of the <see cref=\"T:System.Buffers.ArrayPool`1\"></see> class.</summary>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Create\">\r\n      <summary>Creates a new instance of the <see cref=\"T:System.Buffers.ArrayPool`1\"></see> class.</summary>\r\n      <returns>A new instance of the <see cref=\"System.Buffers.ArrayPool`1\"></see> class.</returns>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Create(System.Int32,System.Int32)\">\r\n      <summary>Creates a new instance of the <see cref=\"T:System.Buffers.ArrayPool`1\"></see> class using the specifed configuration.</summary>\r\n      <param name=\"maxArrayLength\">The maximum length of an array instance that may be stored in the pool.</param>\r\n      <param name=\"maxArraysPerBucket\">The maximum number of array instances that may be stored in each bucket in the pool. The pool groups arrays of similar lengths into buckets for faster access.</param>\r\n      <returns>A new instance of the <see cref=\"System.Buffers.ArrayPool`1\"></see> class with the specified configuration.</returns>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\">\r\n      <summary>Retrieves a buffer that is at least the requested length.</summary>\r\n      <param name=\"minimumLength\">The minimum length of the array.</param>\r\n      <returns>An array of type <see cref=\"T[]\"></see> that is at least <paramref name=\"minimumLength\">minimumLength</paramref> in length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)\">\r\n      <summary>Returns an array to the pool that was previously obtained using the <see cref=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\"></see> method on the same <see cref=\"T:System.Buffers.ArrayPool`1\"></see> instance.</summary>\r\n      <param name=\"array\">A buffer to return to the pool that was previously obtained using the <see cref=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\"></see> method.</param>\r\n      <param name=\"clearArray\">Indicates whether the contents of the buffer should be cleared before reuse. If <paramref name=\"clearArray\">clearArray</paramref> is set to true, and if the pool will store the buffer to enable subsequent reuse, the <see cref=\"M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)\"></see> method will clear the <paramref name=\"array\">array</paramref> of its contents so that a subsequent caller using the <see cref=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\"></see> method will not see the content of the previous caller. If <paramref name=\"clearArray\">clearArray</paramref> is set to false or if the pool will release the buffer, the array&amp;#39;s contents are left unchanged.</param>\r\n    </member>\r\n    <member name=\"P:System.Buffers.ArrayPool`1.Shared\">\r\n      <summary>Gets a shared <see cref=\"T:System.Buffers.ArrayPool`1\"></see> instance.</summary>\r\n      <returns>A shared <see cref=\"System.Buffers.ArrayPool`1\"></see> instance.</returns>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "DotDumper/bin/Debug/System.Memory.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?><doc>\r\n  <assembly>\r\n    <name>System.Memory</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:System.Span`1\">\r\n      <typeparam name=\"T\"></typeparam>\r\n    </member>\r\n    <member name=\"M:System.Span`1.#ctor(`0[])\">\r\n      <param name=\"array\"></param>\r\n    </member>\r\n    <member name=\"M:System.Span`1.#ctor(System.Void*,System.Int32)\">\r\n      <param name=\"pointer\"></param>\r\n      <param name=\"length\"></param>\r\n    </member>\r\n    <member name=\"M:System.Span`1.#ctor(`0[],System.Int32)\">\r\n      <param name=\"array\"></param>\r\n      <param name=\"start\"></param>\r\n    </member>\r\n    <member name=\"M:System.Span`1.#ctor(`0[],System.Int32,System.Int32)\">\r\n      <param name=\"array\"></param>\r\n      <param name=\"start\"></param>\r\n      <param name=\"length\"></param>\r\n    </member>\r\n    <member name=\"M:System.Span`1.Clear\">\r\n      \r\n    </member>\r\n    <member name=\"M:System.Span`1.CopyTo(System.Span{`0})\">\r\n      <param name=\"destination\"></param>\r\n    </member>\r\n    <member name=\"M:System.Span`1.DangerousCreate(System.Object,`0@,System.Int32)\">\r\n      <param name=\"obj\"></param>\r\n      <param name=\"objectData\"></param>\r\n      <param name=\"length\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.DangerousGetPinnableReference\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Span`1.Empty\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.Equals(System.Object)\">\r\n      <param name=\"obj\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.Fill(`0)\">\r\n      <param name=\"value\"></param>\r\n    </member>\r\n    <member name=\"M:System.Span`1.GetHashCode\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Span`1.IsEmpty\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Span`1.Item(System.Int32)\">\r\n      <param name=\"index\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Span`1.Length\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.op_Equality(System.Span{`0},System.Span{`0})\">\r\n      <param name=\"left\"></param>\r\n      <param name=\"right\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.op_Implicit(System.ArraySegment{T})~System.Span{T}\">\r\n      <param name=\"arraySegment\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.op_Implicit(System.Span{T})~System.ReadOnlySpan{T}\">\r\n      <param name=\"span\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.op_Implicit(T[])~System.Span{T}\">\r\n      <param name=\"array\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.op_Inequality(System.Span{`0},System.Span{`0})\">\r\n      <param name=\"left\"></param>\r\n      <param name=\"right\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.Slice(System.Int32)\">\r\n      <param name=\"start\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.Slice(System.Int32,System.Int32)\">\r\n      <param name=\"start\"></param>\r\n      <param name=\"length\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.ToArray\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.TryCopyTo(System.Span{`0})\">\r\n      <param name=\"destination\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"T:System.SpanExtensions\">\r\n      \r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.AsBytes``1(System.ReadOnlySpan{``0})\">\r\n      <param name=\"source\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.AsBytes``1(System.Span{``0})\">\r\n      <param name=\"source\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.AsSpan(System.String)\">\r\n      <param name=\"text\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.AsSpan``1(System.ArraySegment{``0})\">\r\n      <param name=\"arraySegment\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.AsSpan``1(``0[])\">\r\n      <param name=\"array\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.CopyTo``1(``0[],System.Span{``0})\">\r\n      <param name=\"array\"></param>\r\n      <param name=\"destination\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf(System.Span{System.Byte},System.Byte)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf(System.ReadOnlySpan{System.Byte},System.Byte)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf``1(System.ReadOnlySpan{``0},``0)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf``1(System.Span{``0},System.ReadOnlySpan{``0})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf``1(System.Span{``0},``0)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.Byte,System.Byte,System.Byte)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value0\"></param>\r\n      <param name=\"value1\"></param>\r\n      <param name=\"value2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.Byte,System.Byte,System.Byte)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value0\"></param>\r\n      <param name=\"value1\"></param>\r\n      <param name=\"value2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.Byte,System.Byte)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value0\"></param>\r\n      <param name=\"value1\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"values\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"values\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.Byte,System.Byte)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value0\"></param>\r\n      <param name=\"value1\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.NonPortableCast``2(System.ReadOnlySpan{``0})\">\r\n      <param name=\"source\"></param>\r\n      <typeparam name=\"TFrom\"></typeparam>\r\n      <typeparam name=\"TTo\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.NonPortableCast``2(System.Span{``0})\">\r\n      <param name=\"source\"></param>\r\n      <typeparam name=\"TFrom\"></typeparam>\r\n      <typeparam name=\"TTo\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.SequenceEqual(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"first\"></param>\r\n      <param name=\"second\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.SequenceEqual(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"first\"></param>\r\n      <param name=\"second\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.SequenceEqual``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})\">\r\n      <param name=\"first\"></param>\r\n      <param name=\"second\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.SequenceEqual``1(System.Span{``0},System.ReadOnlySpan{``0})\">\r\n      <param name=\"first\"></param>\r\n      <param name=\"second\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.StartsWith(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.StartsWith(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.StartsWith``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.StartsWith``1(System.Span{``0},System.ReadOnlySpan{``0})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"T:System.ReadOnlySpan`1\">\r\n      <typeparam name=\"T\"></typeparam>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.#ctor(`0[])\">\r\n      <param name=\"array\"></param>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.#ctor(System.Void*,System.Int32)\">\r\n      <param name=\"pointer\"></param>\r\n      <param name=\"length\"></param>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.#ctor(`0[],System.Int32)\">\r\n      <param name=\"array\"></param>\r\n      <param name=\"start\"></param>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.#ctor(`0[],System.Int32,System.Int32)\">\r\n      <param name=\"array\"></param>\r\n      <param name=\"start\"></param>\r\n      <param name=\"length\"></param>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.CopyTo(System.Span{`0})\">\r\n      <param name=\"destination\"></param>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.DangerousCreate(System.Object,`0@,System.Int32)\">\r\n      <param name=\"obj\"></param>\r\n      <param name=\"objectData\"></param>\r\n      <param name=\"length\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.DangerousGetPinnableReference\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.ReadOnlySpan`1.Empty\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.Equals(System.Object)\">\r\n      <param name=\"obj\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.GetHashCode\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.ReadOnlySpan`1.IsEmpty\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.ReadOnlySpan`1.Item(System.Int32)\">\r\n      <param name=\"index\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.ReadOnlySpan`1.Length\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.op_Equality(System.ReadOnlySpan{`0},System.ReadOnlySpan{`0})\">\r\n      <param name=\"left\"></param>\r\n      <param name=\"right\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.op_Implicit(System.ArraySegment{T})~System.ReadOnlySpan{T}\">\r\n      <param name=\"arraySegment\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.op_Implicit(T[])~System.ReadOnlySpan{T}\">\r\n      <param name=\"array\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.op_Inequality(System.ReadOnlySpan{`0},System.ReadOnlySpan{`0})\">\r\n      <param name=\"left\"></param>\r\n      <param name=\"right\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.Slice(System.Int32)\">\r\n      <param name=\"start\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.Slice(System.Int32,System.Int32)\">\r\n      <param name=\"start\"></param>\r\n      <param name=\"length\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.ToArray\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.TryCopyTo(System.Span{`0})\">\r\n      <param name=\"destination\"></param>\r\n      <returns></returns>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "DotDumper/bin/Debug/System.Numerics.Vectors.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?><doc>\r\n  <assembly>\r\n    <name>System.Numerics.Vectors</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:System.Numerics.Matrix3x2\">\r\n      <summary>Represents a 3x2 matrix.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a 3x2 matrix from the specified components.</summary>\r\n      <param name=\"m11\">The value to assign to the first element in the first row.</param>\r\n      <param name=\"m12\">The value to assign to the second element in the first row.</param>\r\n      <param name=\"m21\">The value to assign to the first element in the second row.</param>\r\n      <param name=\"m22\">The value to assign to the second element in the second row.</param>\r\n      <param name=\"m31\">The value to assign to the first element in the third row.</param>\r\n      <param name=\"m32\">The value to assign to the second element in the third row.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Add(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateRotation(System.Single)\">\r\n      <summary>Creates a rotation matrix using the given rotation in radians.</summary>\r\n      <param name=\"radians\">The amount of rotation, in radians.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateRotation(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a rotation matrix using the specified rotation in radians and a center point.</summary>\r\n      <param name=\"radians\">The amount of rotation, in radians.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Single)\">\r\n      <summary>Creates a scaling matrix from the specified X and Y components.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix that scales uniformly with the specified scale with an offset from the specified center.</summary>\r\n      <param name=\"scale\">The uniform scale to use.</param>\r\n      <param name=\"centerPoint\">The center offset.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix that is offset by a given center point.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single)\">\r\n      <summary>Creates a scaling matrix that scales uniformly with the given scale.</summary>\r\n      <param name=\"scale\">The uniform scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale with an offset from the specified center point.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <param name=\"centerPoint\">The center offset.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateSkew(System.Single,System.Single)\">\r\n      <summary>Creates a skew matrix from the specified angles in radians.</summary>\r\n      <param name=\"radiansX\">The X angle, in radians.</param>\r\n      <param name=\"radiansY\">The Y angle, in radians.</param>\r\n      <returns>The skew matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateSkew(System.Single,System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a skew matrix from the specified angles in radians and a center point.</summary>\r\n      <param name=\"radiansX\">The X angle, in radians.</param>\r\n      <param name=\"radiansY\">The Y angle, in radians.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The skew matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateTranslation(System.Numerics.Vector2)\">\r\n      <summary>Creates a translation matrix from the specified 2-dimensional vector.</summary>\r\n      <param name=\"position\">The translation position.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateTranslation(System.Single,System.Single)\">\r\n      <summary>Creates a translation matrix from the specified X and Y components.</summary>\r\n      <param name=\"xPosition\">The X position.</param>\r\n      <param name=\"yPosition\">The Y position.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Equals(System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether this instance and another 3x2 matrix are equal.</summary>\r\n      <param name=\"other\">The other matrix.</param>\r\n      <returns>true if the two matrices are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.GetDeterminant\">\r\n      <summary>Calculates the determinant for this matrix.</summary>\r\n      <returns>The determinant.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.Identity\">\r\n      <summary>Gets the multiplicative identity matrix.</summary>\r\n      <returns>The multiplicative identify matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Invert(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2@)\">\r\n      <summary>Inverts the specified matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The matrix to invert.</param>\r\n      <param name=\"result\">When this method returns, contains the inverted matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was converted successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.IsIdentity\">\r\n      <summary>Indicates whether the current matrix is the identity matrix.</summary>\r\n      <returns>true if the current matrix is the identity matrix; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Lerp(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Performs a linear interpolation from one matrix to a second matrix based on a value that specifies the weighting of the second matrix.</summary>\r\n      <param name=\"matrix1\">The first matrix.</param>\r\n      <param name=\"matrix2\">The second matrix.</param>\r\n      <param name=\"amount\">The relative weighting of matrix2.</param>\r\n      <returns>The interpolated matrix.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M11\">\r\n      <summary>The first element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M12\">\r\n      <summary>The second element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M21\">\r\n      <summary>The first element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M22\">\r\n      <summary>The second element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M31\">\r\n      <summary>The first element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M32\">\r\n      <summary>The second element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Multiply(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Multiply(System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Negate(System.Numerics.Matrix3x2)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Addition(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Equality(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Inequality(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are not equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Multiply(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Multiply(System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Subtraction(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_UnaryNegation(System.Numerics.Matrix3x2)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Subtract(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.ToString\">\r\n      <summary>Returns a string that represents this matrix.</summary>\r\n      <returns>The string representation of this matrix.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.Translation\">\r\n      <summary>Gets or sets the translation component of this matrix.</summary>\r\n      <returns>The translation component of the current instance.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Matrix4x4\">\r\n      <summary>Represents a 4x4 matrix.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.#ctor(System.Numerics.Matrix3x2)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Matrix4x4\"></see> object from a specified <see cref=\"T:System.Numerics.Matrix3x2\"></see> object.</summary>\r\n      <param name=\"value\">A 3x2 matrix.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a 4x4 matrix from the specified components.</summary>\r\n      <param name=\"m11\">The value to assign to the first element in the first row.</param>\r\n      <param name=\"m12\">The value to assign to the second element in the first row.</param>\r\n      <param name=\"m13\">The value to assign to the third element in the first row.</param>\r\n      <param name=\"m14\">The value to assign to the fourth element in the first row.</param>\r\n      <param name=\"m21\">The value to assign to the first element in the second row.</param>\r\n      <param name=\"m22\">The value to assign to the second element in the second row.</param>\r\n      <param name=\"m23\">The value to assign to the third element in the second row.</param>\r\n      <param name=\"m24\">The value to assign to the third element in the second row.</param>\r\n      <param name=\"m31\">The value to assign to the first element in the third row.</param>\r\n      <param name=\"m32\">The value to assign to the second element in the third row.</param>\r\n      <param name=\"m33\">The value to assign to the third element in the third row.</param>\r\n      <param name=\"m34\">The value to assign to the fourth element in the third row.</param>\r\n      <param name=\"m41\">The value to assign to the first element in the fourth row.</param>\r\n      <param name=\"m42\">The value to assign to the second element in the fourth row.</param>\r\n      <param name=\"m43\">The value to assign to the third element in the fourth row.</param>\r\n      <param name=\"m44\">The value to assign to the fourth element in the fourth row.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Add(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateBillboard(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a spherical billboard that rotates around a specified object position.</summary>\r\n      <param name=\"objectPosition\">The position of the object that the billboard will rotate around.</param>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"cameraUpVector\">The up vector of the camera.</param>\r\n      <param name=\"cameraForwardVector\">The forward vector of the camera.</param>\r\n      <returns>The created billboard.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateConstrainedBillboard(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a cylindrical billboard that rotates around a specified axis.</summary>\r\n      <param name=\"objectPosition\">The position of the object that the billboard will rotate around.</param>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"rotateAxis\">The axis to rotate the billboard around.</param>\r\n      <param name=\"cameraForwardVector\">The forward vector of the camera.</param>\r\n      <param name=\"objectForwardVector\">The forward vector of the object.</param>\r\n      <returns>The billboard matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromAxisAngle(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a matrix that rotates around an arbitrary vector.</summary>\r\n      <param name=\"axis\">The axis to rotate around.</param>\r\n      <param name=\"angle\">The angle to rotate around axis, in radians.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromQuaternion(System.Numerics.Quaternion)\">\r\n      <summary>Creates a rotation matrix from the specified Quaternion rotation value.</summary>\r\n      <param name=\"quaternion\">The source Quaternion.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromYawPitchRoll(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a rotation matrix from the specified yaw, pitch, and roll.</summary>\r\n      <param name=\"yaw\">The angle of rotation, in radians, around the Y axis.</param>\r\n      <param name=\"pitch\">The angle of rotation, in radians, around the X axis.</param>\r\n      <param name=\"roll\">The angle of rotation, in radians, around the Z axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateLookAt(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a view matrix.</summary>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"cameraTarget\">The target towards which the camera is pointing.</param>\r\n      <param name=\"cameraUpVector\">The direction that is &amp;quot;up&amp;quot; from the camera&amp;#39;s point of view.</param>\r\n      <returns>The view matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateOrthographic(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates an orthographic perspective matrix from the given view volume dimensions.</summary>\r\n      <param name=\"width\">The width of the view volume.</param>\r\n      <param name=\"height\">The height of the view volume.</param>\r\n      <param name=\"zNearPlane\">The minimum Z-value of the view volume.</param>\r\n      <param name=\"zFarPlane\">The maximum Z-value of the view volume.</param>\r\n      <returns>The orthographic projection matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateOrthographicOffCenter(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a customized orthographic projection matrix.</summary>\r\n      <param name=\"left\">The minimum X-value of the view volume.</param>\r\n      <param name=\"right\">The maximum X-value of the view volume.</param>\r\n      <param name=\"bottom\">The minimum Y-value of the view volume.</param>\r\n      <param name=\"top\">The maximum Y-value of the view volume.</param>\r\n      <param name=\"zNearPlane\">The minimum Z-value of the view volume.</param>\r\n      <param name=\"zFarPlane\">The maximum Z-value of the view volume.</param>\r\n      <returns>The orthographic projection matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspective(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a perspective projection matrix from the given view volume dimensions.</summary>\r\n      <param name=\"width\">The width of the view volume at the near view plane.</param>\r\n      <param name=\"height\">The height of the view volume at the near view plane.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspectiveFieldOfView(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a perspective projection matrix based on a field of view, aspect ratio, and near and far view plane distances.</summary>\r\n      <param name=\"fieldOfView\">The field of view in the y direction, in radians.</param>\r\n      <param name=\"aspectRatio\">The aspect ratio, defined as view space width divided by height.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"fieldOfView\">fieldOfView</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"fieldOfView\">fieldOfView</paramref> is greater than or equal to <see cref=\"System.Math.PI\"></see>.  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspectiveOffCenter(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a customized perspective projection matrix.</summary>\r\n      <param name=\"left\">The minimum x-value of the view volume at the near view plane.</param>\r\n      <param name=\"right\">The maximum x-value of the view volume at the near view plane.</param>\r\n      <param name=\"bottom\">The minimum y-value of the view volume at the near view plane.</param>\r\n      <param name=\"top\">The maximum y-value of the view volume at the near view plane.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateReflection(System.Numerics.Plane)\">\r\n      <summary>Creates a matrix that reflects the coordinate system about a specified plane.</summary>\r\n      <param name=\"value\">The plane about which to create a reflection.</param>\r\n      <returns>A new matrix expressing the reflection.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationX(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the X axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the X axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationX(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a matrix for rotating points around the X axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the X axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationY(System.Single,System.Numerics.Vector3)\">\r\n      <summary>The amount, in radians, by which to rotate around the Y axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Y-axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationY(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the Y axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Y-axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationZ(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the Z axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Z-axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationZ(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a matrix for rotating points around the Z axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Z-axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single)\">\r\n      <summary>Creates a uniform scaling matrix that scale equally on each axis.</summary>\r\n      <param name=\"scale\">The uniform scaling factor.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix with a center point.</summary>\r\n      <param name=\"scales\">The vector that contains the amount to scale on each axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a uniform scaling matrix that scales equally on each axis with a center point.</summary>\r\n      <param name=\"scale\">The uniform scaling factor.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a scaling matrix from the specified X, Y, and Z components.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"zScale\">The value to scale by on the Z axis.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Single,System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix that is offset by a given center point.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"zScale\">The value to scale by on the Z axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateShadow(System.Numerics.Vector3,System.Numerics.Plane)\">\r\n      <summary>Creates a matrix that flattens geometry into a specified plane as if casting a shadow from a specified light source.</summary>\r\n      <param name=\"lightDirection\">The direction from which the light that will cast the shadow is coming.</param>\r\n      <param name=\"plane\">The plane onto which the new matrix should flatten geometry so as to cast a shadow.</param>\r\n      <returns>A new matrix that can be used to flatten geometry onto the specified plane from the specified direction.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateTranslation(System.Numerics.Vector3)\">\r\n      <summary>Creates a translation matrix from the specified 3-dimensional vector.</summary>\r\n      <param name=\"position\">The amount to translate in each axis.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateTranslation(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a translation matrix from the specified X, Y, and Z components.</summary>\r\n      <param name=\"xPosition\">The amount to translate on the X axis.</param>\r\n      <param name=\"yPosition\">The amount to translate on the Y axis.</param>\r\n      <param name=\"zPosition\">The amount to translate on the Z axis.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateWorld(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a world matrix with the specified parameters.</summary>\r\n      <param name=\"position\">The position of the object.</param>\r\n      <param name=\"forward\">The forward direction of the object.</param>\r\n      <param name=\"up\">The upward direction of the object. Its value is usually [0, 1, 0].</param>\r\n      <returns>The world matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Decompose(System.Numerics.Matrix4x4,System.Numerics.Vector3@,System.Numerics.Quaternion@,System.Numerics.Vector3@)\">\r\n      <summary>Attempts to extract the scale, translation, and rotation components from the given scale, rotation, or translation matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The source matrix.</param>\r\n      <param name=\"scale\">When this method returns, contains the scaling component of the transformation matrix if the operation succeeded.</param>\r\n      <param name=\"rotation\">When this method returns, contains the rotation component of the transformation matrix if the operation succeeded.</param>\r\n      <param name=\"translation\">When the method returns, contains the translation component of the transformation matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was decomposed successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Equals(System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether this instance and another 4x4 matrix are equal.</summary>\r\n      <param name=\"other\">The other matrix.</param>\r\n      <returns>true if the two matrices are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.GetDeterminant\">\r\n      <summary>Calculates the determinant of the current 4x4 matrix.</summary>\r\n      <returns>The determinant.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.Identity\">\r\n      <summary>Gets the multiplicative identity matrix.</summary>\r\n      <returns>Gets the multiplicative identity matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Invert(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4@)\">\r\n      <summary>Inverts the specified matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The matrix to invert.</param>\r\n      <param name=\"result\">When this method returns, contains the inverted matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was converted successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.IsIdentity\">\r\n      <summary>Indicates whether the current matrix is the identity matrix.</summary>\r\n      <returns>true if the current matrix is the identity matrix; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Lerp(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Performs a linear interpolation from one matrix to a second matrix based on a value that specifies the weighting of the second matrix.</summary>\r\n      <param name=\"matrix1\">The first matrix.</param>\r\n      <param name=\"matrix2\">The second matrix.</param>\r\n      <param name=\"amount\">The relative weighting of matrix2.</param>\r\n      <returns>The interpolated matrix.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M11\">\r\n      <summary>The first element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M12\">\r\n      <summary>The second element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M13\">\r\n      <summary>The third element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M14\">\r\n      <summary>The fourth element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M21\">\r\n      <summary>The first element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M22\">\r\n      <summary>The second element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M23\">\r\n      <summary>The third element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M24\">\r\n      <summary>The fourth element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M31\">\r\n      <summary>The first element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M32\">\r\n      <summary>The second element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M33\">\r\n      <summary>The third element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M34\">\r\n      <summary>The fourth element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M41\">\r\n      <summary>The first element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M42\">\r\n      <summary>The second element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M43\">\r\n      <summary>The third element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M44\">\r\n      <summary>The fourth element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Multiply(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Multiply(System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Negate(System.Numerics.Matrix4x4)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Addition(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Equality(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to care</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Inequality(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are not equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Multiply(System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Multiply(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Subtraction(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_UnaryNegation(System.Numerics.Matrix4x4)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Subtract(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.ToString\">\r\n      <summary>Returns a string that represents this matrix.</summary>\r\n      <returns>The string representation of this matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Transform(System.Numerics.Matrix4x4,System.Numerics.Quaternion)\">\r\n      <summary>Transforms the specified matrix by applying the specified Quaternion rotation.</summary>\r\n      <param name=\"value\">The matrix to transform.</param>\r\n      <param name=\"rotation\">The rotation t apply.</param>\r\n      <returns>The transformed matrix.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.Translation\">\r\n      <summary>Gets or sets the translation component of this matrix.</summary>\r\n      <returns>The translation component of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Transpose(System.Numerics.Matrix4x4)\">\r\n      <summary>Transposes the rows and columns of a matrix.</summary>\r\n      <param name=\"matrix\">The matrix to transpose.</param>\r\n      <returns>The transposed matrix.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Plane\">\r\n      <summary>Represents a three-dimensional plane.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Numerics.Vector4)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from a specified four-dimensional vector.</summary>\r\n      <param name=\"value\">A vector whose first three elements describe the normal vector, and whose <see cref=\"F:System.Numerics.Vector4.W\"></see> defines the distance along that normal from the origin.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from a specified normal and the distance along the normal from the origin.</summary>\r\n      <param name=\"normal\">The plane&amp;#39;s normal vector.</param>\r\n      <param name=\"d\">The plane&amp;#39;s distance from the origin along its normal vector.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from the X, Y, and Z components of its normal, and its distance from the origin on that normal.</summary>\r\n      <param name=\"x\">The X component of the normal.</param>\r\n      <param name=\"y\">The Y component of the normal.</param>\r\n      <param name=\"z\">The Z component of the normal.</param>\r\n      <param name=\"d\">The distance of the plane along its normal from the origin.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.CreateFromVertices(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object that contains three specified points.</summary>\r\n      <param name=\"point1\">The first point defining the plane.</param>\r\n      <param name=\"point2\">The second point defining the plane.</param>\r\n      <param name=\"point3\">The third point defining the plane.</param>\r\n      <returns>The plane containing the three points.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Plane.D\">\r\n      <summary>The distance of the plane along its normal from the origin.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Dot(System.Numerics.Plane,System.Numerics.Vector4)\">\r\n      <summary>Calculates the dot product of a plane and a 4-dimensional vector.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The four-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.DotCoordinate(System.Numerics.Plane,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of a specified three-dimensional vector and the normal vector of this plane plus the distance (<see cref=\"F:System.Numerics.Plane.D\"></see>) value of the plane.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The 3-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.DotNormal(System.Numerics.Plane,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of a specified three-dimensional vector and the <see cref=\"F:System.Numerics.Plane.Normal\"></see> vector of this plane.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The three-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Equals(System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether this instance and another plane object are equal.</summary>\r\n      <param name=\"other\">The other plane.</param>\r\n      <returns>true if the two planes are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Plane.Normal\">\r\n      <summary>The normal vector of the plane.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Normalize(System.Numerics.Plane)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Plane\"></see> object whose normal vector is the source plane&amp;#39;s normal vector normalized.</summary>\r\n      <param name=\"value\">The source plane.</param>\r\n      <returns>The normalized plane.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.op_Equality(System.Numerics.Plane,System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether two planes are equal.</summary>\r\n      <param name=\"value1\">The first plane to compare.</param>\r\n      <param name=\"value2\">The second plane to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.op_Inequality(System.Numerics.Plane,System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether two planes are not equal.</summary>\r\n      <param name=\"value1\">The first plane to compare.</param>\r\n      <param name=\"value2\">The second plane to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.ToString\">\r\n      <summary>Returns the string representation of this plane object.</summary>\r\n      <returns>A string that represents this <see cref=\"System.Numerics.Plane\"></see> object.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Transform(System.Numerics.Plane,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a normalized plane by a 4x4 matrix.</summary>\r\n      <param name=\"plane\">The normalized plane to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix to apply to plane.</param>\r\n      <returns>The transformed plane.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Transform(System.Numerics.Plane,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a normalized plane by a Quaternion rotation.</summary>\r\n      <param name=\"plane\">The normalized plane to transform.</param>\r\n      <param name=\"rotation\">The Quaternion rotation to apply to the plane.</param>\r\n      <returns>A new plane that results from applying the Quaternion rotation.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Quaternion\">\r\n      <summary>Represents a vector that is used to encode three-dimensional physical rotations.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a quaternion from the specified vector and rotation parts.</summary>\r\n      <param name=\"vectorPart\">The vector part of the quaternion.</param>\r\n      <param name=\"scalarPart\">The rotation part of the quaternion.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Constructs a quaternion from the specified components.</summary>\r\n      <param name=\"x\">The value to assign to the X component of the quaternion.</param>\r\n      <param name=\"y\">The value to assign to the Y component of the quaternion.</param>\r\n      <param name=\"z\">The value to assign to the Z component of the quaternion.</param>\r\n      <param name=\"w\">The value to assign to the W component of the quaternion.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Add(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Adds each element in one quaternion with its corresponding element in a second quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Concatenate(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Concatenates two quaternions.</summary>\r\n      <param name=\"value1\">The first quaternion rotation in the series.</param>\r\n      <param name=\"value2\">The second quaternion rotation in the series.</param>\r\n      <returns>A new quaternion representing the concatenation of the <paramref name=\"value1\">value1</paramref> rotation followed by the <paramref name=\"value2\">value2</paramref> rotation.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Conjugate(System.Numerics.Quaternion)\">\r\n      <summary>Returns the conjugate of a specified quaternion.</summary>\r\n      <param name=\"value\">The quaternion.</param>\r\n      <returns>A new quaternion that is the conjugate of value.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromAxisAngle(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a quaternion from a vector and an angle to rotate about the vector.</summary>\r\n      <param name=\"axis\">The vector to rotate around.</param>\r\n      <param name=\"angle\">The angle, in radians, to rotate around the vector.</param>\r\n      <returns>The newly created quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromRotationMatrix(System.Numerics.Matrix4x4)\">\r\n      <summary>Creates a quaternion from the specified rotation matrix.</summary>\r\n      <param name=\"matrix\">The rotation matrix.</param>\r\n      <returns>The newly created quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromYawPitchRoll(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a new quaternion from the given yaw, pitch, and roll.</summary>\r\n      <param name=\"yaw\">The yaw angle, in radians, around the Y axis.</param>\r\n      <param name=\"pitch\">The pitch angle, in radians, around the X axis.</param>\r\n      <param name=\"roll\">The roll angle, in radians, around the Z axis.</param>\r\n      <returns>The resulting quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Divide(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Divides one quaternion by a second quaternion.</summary>\r\n      <param name=\"value1\">The dividend.</param>\r\n      <param name=\"value2\">The divisor.</param>\r\n      <returns>The quaternion that results from dividing <paramref name=\"value1\">value1</paramref> by <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Dot(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Calculates the dot product of two quaternions.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Equals(System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether this instance and another quaternion are equal.</summary>\r\n      <param name=\"other\">The other quaternion.</param>\r\n      <returns>true if the two quaternions are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Quaternion.Identity\">\r\n      <summary>Gets a quaternion that represents no rotation.</summary>\r\n      <returns>A quaternion whose values are (0, 0, 0, 1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Inverse(System.Numerics.Quaternion)\">\r\n      <summary>Returns the inverse of a quaternion.</summary>\r\n      <param name=\"value\">The quaternion.</param>\r\n      <returns>The inverted quaternion.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Quaternion.IsIdentity\">\r\n      <summary>Gets a value that indicates whether the current instance is the identity quaternion.</summary>\r\n      <returns>true if the current instance is the identity quaternion; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Length\">\r\n      <summary>Calculates the length of the quaternion.</summary>\r\n      <returns>The computed length of the quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.LengthSquared\">\r\n      <summary>Calculates the squared length of the quaternion.</summary>\r\n      <returns>The length squared of the quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Lerp(System.Numerics.Quaternion,System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Performs a linear interpolation between two quaternions based on a value that specifies the weighting of the second quaternion.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <param name=\"amount\">The relative weight of quaternion2 in the interpolation.</param>\r\n      <returns>The interpolated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Multiply(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns the quaternion that results from multiplying two quaternions together.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The product quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Multiply(System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Returns the quaternion that results from scaling all the components of a specified quaternion by a scalar factor.</summary>\r\n      <param name=\"value1\">The source quaternion.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The scaled quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Negate(System.Numerics.Quaternion)\">\r\n      <summary>Reverses the sign of each component of the quaternion.</summary>\r\n      <param name=\"value\">The quaternion to negate.</param>\r\n      <returns>The negated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Normalize(System.Numerics.Quaternion)\">\r\n      <summary>Divides each component of a specified <see cref=\"T:System.Numerics.Quaternion\"></see> by its length.</summary>\r\n      <param name=\"value\">The quaternion to normalize.</param>\r\n      <returns>The normalized quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Addition(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Adds each element in one quaternion with its corresponding element in a second quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Division(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Divides one quaternion by a second quaternion.</summary>\r\n      <param name=\"value1\">The dividend.</param>\r\n      <param name=\"value2\">The divisor.</param>\r\n      <returns>The quaternion that results from dividing <paramref name=\"value1\">value1</paramref> by <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Equality(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether two quaternions are equal.</summary>\r\n      <param name=\"value1\">The first quaternion to compare.</param>\r\n      <param name=\"value2\">The second quaternion to compare.</param>\r\n      <returns>true if the two quaternions are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Inequality(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether two quaternions are not equal.</summary>\r\n      <param name=\"value1\">The first quaternion to compare.</param>\r\n      <param name=\"value2\">The second quaternion to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Multiply(System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Returns the quaternion that results from scaling all the components of a specified quaternion by a scalar factor.</summary>\r\n      <param name=\"value1\">The source quaternion.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The scaled quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Multiply(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns the quaternion that results from multiplying two quaternions together.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The product quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Subtraction(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Subtracts each element in a second quaternion from its corresponding element in a first quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_UnaryNegation(System.Numerics.Quaternion)\">\r\n      <summary>Reverses the sign of each component of the quaternion.</summary>\r\n      <param name=\"value\">The quaternion to negate.</param>\r\n      <returns>The negated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Slerp(System.Numerics.Quaternion,System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Interpolates between two quaternions, using spherical linear interpolation.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <param name=\"amount\">The relative weight of the second quaternion in the interpolation.</param>\r\n      <returns>The interpolated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Subtract(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Subtracts each element in a second quaternion from its corresponding element in a first quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.ToString\">\r\n      <summary>Returns a string that represents this quaternion.</summary>\r\n      <returns>The string representation of this quaternion.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.W\">\r\n      <summary>The rotation component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.X\">\r\n      <summary>The X value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.Y\">\r\n      <summary>The Y value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.Z\">\r\n      <summary>The Z value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector`1\">\r\n      <summary>Represents a single vector of a specified numeric type that is suitable for low-level optimization of parallel algorithms.</summary>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0)\">\r\n      <summary>Creates a vector whose components are of a specified type.</summary>\r\n      <param name=\"value\">The numeric type that defines the type of the components in the vector.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0[])\">\r\n      <summary>Creates a vector from a specified array.</summary>\r\n      <param name=\"values\">A numeric array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"values\">values</paramref> is null.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0[],System.Int32)\">\r\n      <summary>Creates a vector from a specified array starting at a specified index position.</summary>\r\n      <param name=\"values\">A numeric array.</param>\r\n      <param name=\"index\">The starting index position from which to create the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"values\">values</paramref> is null.</exception>\r\n      <exception cref=\"T:System.IndexOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n The length of <paramref name=\"values\">values</paramref> minus <paramref name=\"index\">index</paramref> is less than <see cref=\"System.Numerics.Vector`1.Count\"></see>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.CopyTo(`0[])\">\r\n      <summary>Copies the vector instance to a specified destination array.</summary>\r\n      <param name=\"destination\">The array to receive a copy of the vector values.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"destination\">destination</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current vector is greater than the number of elements available in the <paramref name=\"destination\">destination</paramref> array.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.CopyTo(`0[],System.Int32)\">\r\n      <summary>Copies the vector instance to a specified destination array starting at a specified index position.</summary>\r\n      <param name=\"destination\">The array to receive a copy of the vector values.</param>\r\n      <param name=\"startIndex\">The starting index in destination at which to begin the copy operation.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"destination\">destination</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than the number of elements available from <paramref name=\"startIndex\">startIndex</paramref> to the end of the <paramref name=\"destination\">destination</paramref> array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero or greater than the last index in <paramref name=\"destination\">destination</paramref>.</exception>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Count\">\r\n      <summary>Returns the number of elements stored in the vector.</summary>\r\n      <returns>The number of elements stored in the vector.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">Access to the property getter via reflection is not supported.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.Equals(System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether this instance is equal to a specified vector.</summary>\r\n      <param name=\"other\">The vector to compare with this instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"other\">other</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance is equal to a specified object.</summary>\r\n      <param name=\"obj\">The object to compare with this instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. The method returns false if <paramref name=\"obj\">obj</paramref> is null, or if <paramref name=\"obj\">obj</paramref> is a vector of a different type than the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Item(System.Int32)\">\r\n      <summary>Gets the element at a specified index.</summary>\r\n      <param name=\"index\">The index of the element to return.</param>\r\n      <returns>The element at index <paramref name=\"index\">index</paramref>.</returns>\r\n      <exception cref=\"T:System.IndexOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to <see cref=\"System.Numerics.Vector`1.Count\"></see>.</exception>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.One\">\r\n      <summary>Returns a vector containing all ones.</summary>\r\n      <returns>A vector containing all ones.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Addition(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_BitwiseAnd(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise And operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise And of <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_BitwiseOr(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise Or operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise Or of the elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Division(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Equality(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_ExclusiveOr(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise XOr operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise XOr of the elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt64}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt64\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt32}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt32\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt16}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt16\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Single}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Single\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.SByte}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.SByte\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Double}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Double\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int32}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int32\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int16}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int16\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Byte}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Byte\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int64}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int64\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Inequality(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether any single pair of elements in the specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if any element pairs in left and right are equal. false if no element pairs are equal.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(System.Numerics.Vector{`0},`0)\">\r\n      <summary>Multiplies a vector by a specified scalar value.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <param name=\"factor\">A scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(`0,System.Numerics.Vector{`0})\">\r\n      <summary>Multiplies a vector by the given scalar.</summary>\r\n      <param name=\"factor\">The scalar value.</param>\r\n      <param name=\"value\">The source vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_OnesComplement(System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector whose elements are obtained by taking the one&amp;#39;s complement of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <returns>The one&amp;#39;s complement vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Subtraction(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_UnaryNegation(System.Numerics.Vector{`0})\">\r\n      <summary>Negates a given vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of this vector using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString\">\r\n      <summary>Returns the string representation of this vector using default formatting.</summary>\r\n      <returns>The string representation of this vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString(System.String)\">\r\n      <summary>Returns the string representation of this vector using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Zero\">\r\n      <summary>Returns a vector containing all zeroes.</summary>\r\n      <returns>A vector containing all zeroes.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector\">\r\n      <summary>Provides a collection of static convenience methods for creating, manipulating, combining, and converting generic vectors.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Abs``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the absolute values of the given vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Add``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the sum of each pair of elements from two given vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AndNot``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise And Not operation on each pair of corresponding elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorByte``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned bytes.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorDouble``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a double-precision floating-point vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt16``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of 16-bit integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt32``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt64``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of long integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorSByte``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of signed bytes.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorSingle``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a single-precision floating-point vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt16``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned 16-bit integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt32``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt64``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned long integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.BitwiseAnd``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise And operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.BitwiseOr``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise Or operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Creates a new single-precision vector with elements selected between two specified single-precision source vectors based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Creates a new double-precision vector with elements selected between two specified double-precision source vectors based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Creates a new vector of a specified type with elements selected between two specified source vectors of the same type based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToDouble(System.Numerics.Vector{System.Int64})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToDouble(System.Numerics.Vector{System.UInt64})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToInt32(System.Numerics.Vector{System.Single})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToInt64(System.Numerics.Vector{System.Double})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToSingle(System.Numerics.Vector{System.Int32})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToSingle(System.Numerics.Vector{System.UInt32})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToUInt32(System.Numerics.Vector{System.Single})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToUInt64(System.Numerics.Vector{System.Double})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Divide``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the result of dividing the first vector&amp;#39;s elements by the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The divided vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Dot``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified double-precision vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified integral vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in two specified long integer vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified single-precision vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector of a specified type whose elements signal whether the elements in two specified vectors of the same type are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.EqualsAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether each pair of elements in the given vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.EqualsAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any single pair of elements in the given vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element pair in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> is equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are greater than their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are greater than their corresponding elements in a second single-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than their corresponding elements in the second vector of the same time.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are greater than the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> are greater than the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is greater than the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is greater than the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one vector are greater than or equal to their corresponding elements in the single-precision floating-point second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than or equal to their corresponding elements in the second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than or equal to their corresponding elements in the second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one vector are greater than or equal to their corresponding elements in the second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than or equal to their corresponding elements in the second vector of the same type.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqualAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are greater than or equal to all the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> are greater than or equal to the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqualAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is greater than or equal to the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is greater than or equal to the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector.IsHardwareAccelerated\">\r\n      <summary>Gets a value that indicates whether vector operations are subject to hardware acceleration through JIT intrinsic support.</summary>\r\n      <returns>true if vector operations are subject to hardware acceleration; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are less than their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are less than their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are less than their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision vector are less than their corresponding elements in a second single-precision vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector of a specified type whose elements signal whether the elements in one vector are less than their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all of the elements in the first vector are less than their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all of the elements in <paramref name=\"left\">left</paramref> are less than the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is less than the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is less than the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are less than or equal to their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are less than or equal to their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are less or equal to their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are less than or equal to their corresponding elements in a second single-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector are less than or equal to their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqualAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are less than or equal to their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all of the elements in <paramref name=\"left\">left</paramref> are less than or equal to the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqualAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is less than or equal to the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is less than or equal to the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Max``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the maximum of each pair of elements in the two given vectors.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The maximum vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Min``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the minimum of each pair of elements in the two given vectors.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The minimum vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(``0,System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are a scalar value multiplied by each of the values of a specified vector.</summary>\r\n      <param name=\"left\">The scalar value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the product of each pair of elements in two specified vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(System.Numerics.Vector{``0},``0)\">\r\n      <summary>Returns a new vector whose values are the values of a specified vector each multiplied by a scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int16},System.Numerics.Vector{System.Int16})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt16},System.Numerics.Vector{System.UInt16})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt32},System.Numerics.Vector{System.UInt32})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt64},System.Numerics.Vector{System.UInt64})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Negate``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the negation of the corresponding element in the specified vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.OnesComplement``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are obtained by taking the one&amp;#39;s complement of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.SquareRoot``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the square roots of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Subtract``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the difference between the elements in the second vector and their corresponding elements in the first vector.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.UInt16},System.Numerics.Vector{System.UInt32}@,System.Numerics.Vector{System.UInt32}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Double}@,System.Numerics.Vector{System.Double}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.SByte},System.Numerics.Vector{System.Int16}@,System.Numerics.Vector{System.Int16}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.UInt32},System.Numerics.Vector{System.UInt64}@,System.Numerics.Vector{System.UInt64}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Int16},System.Numerics.Vector{System.Int32}@,System.Numerics.Vector{System.Int32}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Byte},System.Numerics.Vector{System.UInt16}@,System.Numerics.Vector{System.UInt16}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int64}@,System.Numerics.Vector{System.Int64}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Xor``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise exclusive Or (XOr) operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector2\">\r\n      <summary>Represents a vector with two single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector2\"></see> object whose two elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to both elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.#ctor(System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector2.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector2.Y\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Abs(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Add(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Clamp(System.Numerics.Vector2,System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Distance(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.DistanceSquared(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Divide(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Divide(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Dot(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Equals(System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Length\">\r\n      <summary>Returns the length of the vector.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Lerp(System.Numerics.Vector2,System.Numerics.Vector2,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Max(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Min(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Negate(System.Numerics.Vector2)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Normalize(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"value\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.One\">\r\n      <summary>Gets a vector whose 2 elements are equal to one.</summary>\r\n      <returns>A vector whose two elements are equal to one (that is, it returns the vector (1,1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Addition(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Division(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Division(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Equality(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Inequality(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Subtraction(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_UnaryNegation(System.Numerics.Vector2)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Reflect(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the reflection of a vector off a surface that has the specified normal.</summary>\r\n      <param name=\"vector\">The source vector.</param>\r\n      <param name=\"normal\">The normal of the surface being reflected off.</param>\r\n      <returns>The reflected vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.SquareRoot(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Subtract(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Matrix3x2)\">\r\n      <summary>Transforms a vector by a specified 3x2 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.TransformNormal(System.Numerics.Vector2,System.Numerics.Matrix3x2)\">\r\n      <summary>Transforms a vector normal by the given 3x2 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.TransformNormal(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector normal by the given 4x4 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.UnitX\">\r\n      <summary>Gets the vector (1,0).</summary>\r\n      <returns>The vector (1,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.UnitY\">\r\n      <summary>Gets the vector (0,1).</summary>\r\n      <returns>The vector (0,1).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector2.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector2.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.Zero\">\r\n      <summary>Returns a vector whose 2 elements are equal to zero.</summary>\r\n      <returns>A vector whose two elements are equal to zero (that is, it returns the vector (0,0).</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector3\">\r\n      <summary>Represents a vector with three  single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector3\"></see> object whose three elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to all three elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Creates a   new <see cref=\"T:System.Numerics.Vector3\"></see> object from the specified <see cref=\"T:System.Numerics.Vector2\"></see> object and the specified value.</summary>\r\n      <param name=\"value\">The vector with two elements.</param>\r\n      <param name=\"z\">The additional value to assign to the <see cref=\"F:System.Numerics.Vector3.Z\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.Y\"></see> field.</param>\r\n      <param name=\"z\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.Z\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Abs(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Add(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Clamp(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Cross(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Computes the cross product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The cross product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Distance(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.DistanceSquared(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Divide(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Divide(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Dot(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Equals(System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Length\">\r\n      <summary>Returns the length of this vector object.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Lerp(System.Numerics.Vector3,System.Numerics.Vector3,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Max(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Min(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Negate(System.Numerics.Vector3)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Normalize(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"value\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.One\">\r\n      <summary>Gets a vector whose 3 elements are equal to one.</summary>\r\n      <returns>A vector whose three elements are equal to one (that is, it returns the vector (1,1,1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Addition(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Division(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Division(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Equality(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Inequality(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Subtraction(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_UnaryNegation(System.Numerics.Vector3)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Reflect(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the reflection of a vector off a surface that has the specified normal.</summary>\r\n      <param name=\"vector\">The source vector.</param>\r\n      <param name=\"normal\">The normal of the surface being reflected off.</param>\r\n      <returns>The reflected vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.SquareRoot(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Subtract(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Transform(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Transform(System.Numerics.Vector3,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.TransformNormal(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector normal by the given 4x4 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitX\">\r\n      <summary>Gets the vector (1,0,0).</summary>\r\n      <returns>The vector (1,0,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitY\">\r\n      <summary>Gets the vector (0,1,0).</summary>\r\n      <returns>The vector (0,1,0)..</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitZ\">\r\n      <summary>Gets the vector (0,0,1).</summary>\r\n      <returns>The vector (0,0,1).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.Z\">\r\n      <summary>The Z component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.Zero\">\r\n      <summary>Gets a vector whose 3 elements are equal to zero.</summary>\r\n      <returns>A vector whose three elements are equal to zero (that is, it returns the vector (0,0,0).</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector4\">\r\n      <summary>Represents a vector with four single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector4\"></see> object whose four elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to all four elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Constructs a new <see cref=\"T:System.Numerics.Vector4\"></see> object from the specified <see cref=\"T:System.Numerics.Vector3\"></see> object and a W component.</summary>\r\n      <param name=\"value\">The vector to use for the X, Y, and Z components.</param>\r\n      <param name=\"w\">The W component.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Numerics.Vector2,System.Single,System.Single)\">\r\n      <summary>Creates a   new <see cref=\"T:System.Numerics.Vector4\"></see> object from the specified <see cref=\"T:System.Numerics.Vector2\"></see> object and a Z and a W component.</summary>\r\n      <param name=\"value\">The vector to use for the X and Y components.</param>\r\n      <param name=\"z\">The Z component.</param>\r\n      <param name=\"w\">The W component.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.Y\"></see> field.</param>\r\n      <param name=\"z\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.Z\"></see> field.</param>\r\n      <param name=\"w\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.W\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Abs(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Add(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Clamp(System.Numerics.Vector4,System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Distance(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.DistanceSquared(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Divide(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Divide(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Dot(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Equals(System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Length\">\r\n      <summary>Returns the length of this vector object.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Lerp(System.Numerics.Vector4,System.Numerics.Vector4,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Max(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Min(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Single,System.Numerics.Vector4)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Negate(System.Numerics.Vector4)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Normalize(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"vector\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.One\">\r\n      <summary>Gets a vector whose 4 elements are equal to one.</summary>\r\n      <returns>Returns <see cref=\"System.Numerics.Vector4\"></see>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Addition(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Division(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Division(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Equality(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Inequality(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Single,System.Numerics.Vector4)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Subtraction(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_UnaryNegation(System.Numerics.Vector4)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.SquareRoot(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Subtract(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector4,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a four-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector4,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a four-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"vector\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector3,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a three-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a two-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector2,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a two-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a three-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitW\">\r\n      <summary>Gets the vector (0,0,0,1).</summary>\r\n      <returns>The vector (0,0,0,1).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitX\">\r\n      <summary>Gets the vector (1,0,0,0).</summary>\r\n      <returns>The vector (1,0,0,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitY\">\r\n      <summary>Gets the vector (0,1,0,0).</summary>\r\n      <returns>The vector (0,1,0,0)..</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitZ\">\r\n      <summary>Gets a vector whose 4 elements are equal to zero.</summary>\r\n      <returns>The vector (0,0,1,0).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.W\">\r\n      <summary>The W component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.Z\">\r\n      <summary>The Z component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.Zero\">\r\n      <summary>Gets a vector whose 4 elements are equal to zero.</summary>\r\n      <returns>A vector whose four elements are equal to zero (that is, it returns the vector (0,0,0,0).</returns>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "DotDumper/bin/Debug/System.Runtime.CompilerServices.Unsafe.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<doc>\r\n  <assembly>\r\n    <name>System.Runtime.CompilerServices.Unsafe</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:System.Runtime.CompilerServices.Unsafe\">\r\n      <summary>Contains generic, low-level functionality for manipulating pointers.</summary>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.Int32)\">\r\n      <summary>Adds an element offset to the given reference.</summary>\r\n      <param name=\"source\">The reference to add the offset to.</param>\r\n      <param name=\"elementOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the addition of offset to pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.IntPtr)\">\r\n      <summary>Adds an element offset to the given reference.</summary>\r\n      <param name=\"source\">The reference to add the offset to.</param>\r\n      <param name=\"elementOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the addition of offset to pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.UIntPtr)\">\r\n      <summary>Adds an element offset to the given reference.</summary>\r\n      <param name=\"source\">The reference to add the offset to.</param>\r\n      <param name=\"elementOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the addition of offset to pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Add``1(System.Void*,System.Int32)\">\r\n      <summary>Adds an element offset to the given void pointer.</summary>\r\n      <param name=\"source\">The void pointer to add the offset to.</param>\r\n      <param name=\"elementOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of void pointer.</typeparam>\r\n      <returns>A new void pointer that reflects the addition of offset to the specified pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AddByteOffset``1(``0@,System.IntPtr)\">\r\n      <summary>Adds a byte offset to the given reference.</summary>\r\n      <param name=\"source\">The reference to add the offset to.</param>\r\n      <param name=\"byteOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the addition of byte offset to pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AddByteOffset``1(``0@,System.UIntPtr)\">\r\n      <summary>Adds a byte offset to the given reference.</summary>\r\n      <param name=\"source\">The reference to add the offset to.</param>\r\n      <param name=\"byteOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the addition of byte offset to pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AreSame``1(``0@,``0@)\">\r\n      <summary>Determines whether the specified references point to the same location.</summary>\r\n      <param name=\"left\">The first reference to compare.</param>\r\n      <param name=\"right\">The second reference to compare.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>\r\n        <see langword=\"true\" /> if <paramref name=\"left\" /> and <paramref name=\"right\" /> point to the same location; otherwise, <see langword=\"false\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.As``1(System.Object)\">\r\n      <summary>Casts the given object to the specified type.</summary>\r\n      <param name=\"o\">The object to cast.</param>\r\n      <typeparam name=\"T\">The type which the object will be cast to.</typeparam>\r\n      <returns>The original object, casted to the given type.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.As``2(``0@)\">\r\n      <summary>Reinterprets the given reference as a reference to a value of type <typeparamref name=\"TTo\" />.</summary>\r\n      <param name=\"source\">The reference to reinterpret.</param>\r\n      <typeparam name=\"TFrom\">The type of reference to reinterpret.</typeparam>\r\n      <typeparam name=\"TTo\">The desired type of the reference.</typeparam>\r\n      <returns>A reference to a value of type <typeparamref name=\"TTo\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AsPointer``1(``0@)\">\r\n      <summary>Returns a pointer to the given by-ref parameter.</summary>\r\n      <param name=\"value\">The object whose pointer is obtained.</param>\r\n      <typeparam name=\"T\">The type of object.</typeparam>\r\n      <returns>A pointer to the given value.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AsRef``1(``0@)\">\r\n      <summary>Reinterprets the given read-only reference as a reference.</summary>\r\n      <param name=\"source\">The read-only reference to reinterpret.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A reference to a value of type <typeparamref name=\"T\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AsRef``1(System.Void*)\">\r\n      <summary>Reinterprets the given location as a reference to a value of type <typeparamref name=\"T\" />.</summary>\r\n      <param name=\"source\">The location of the value to reference.</param>\r\n      <typeparam name=\"T\">The type of the interpreted location.</typeparam>\r\n      <returns>A reference to a value of type <typeparamref name=\"T\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.ByteOffset``1(``0@,``0@)\">\r\n      <summary>Determines the byte offset from origin to target from the given references.</summary>\r\n      <param name=\"origin\">The reference to origin.</param>\r\n      <param name=\"target\">The reference to target.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>Byte offset from origin to target i.e. <paramref name=\"target\" /> - <paramref name=\"origin\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Copy``1(``0@,System.Void*)\">\r\n      <summary>Copies a value of type <typeparamref name=\"T\" /> to the given location.</summary>\r\n      <param name=\"destination\">The location to copy to.</param>\r\n      <param name=\"source\">A pointer to the value to copy.</param>\r\n      <typeparam name=\"T\">The type of value to copy.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Copy``1(System.Void*,``0@)\">\r\n      <summary>Copies a value of type <typeparamref name=\"T\" /> to the given location.</summary>\r\n      <param name=\"destination\">The location to copy to.</param>\r\n      <param name=\"source\">A reference to the value to copy.</param>\r\n      <typeparam name=\"T\">The type of value to copy.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.CopyBlock(System.Byte@,System.Byte@,System.UInt32)\">\r\n      <summary>Copies bytes from the source address to the destination address.</summary>\r\n      <param name=\"destination\">The destination address to copy to.</param>\r\n      <param name=\"source\">The source address to copy from.</param>\r\n      <param name=\"byteCount\">The number of bytes to copy.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.CopyBlock(System.Void*,System.Void*,System.UInt32)\">\r\n      <summary>Copies bytes from the source address to the destination address.</summary>\r\n      <param name=\"destination\">The destination address to copy to.</param>\r\n      <param name=\"source\">The source address to copy from.</param>\r\n      <param name=\"byteCount\">The number of bytes to copy.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.CopyBlockUnaligned(System.Byte@,System.Byte@,System.UInt32)\">\r\n      <summary>Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"destination\">The destination address to copy to.</param>\r\n      <param name=\"source\">The source address to copy from.</param>\r\n      <param name=\"byteCount\">The number of bytes to copy.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.CopyBlockUnaligned(System.Void*,System.Void*,System.UInt32)\">\r\n      <summary>Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"destination\">The destination address to copy to.</param>\r\n      <param name=\"source\">The source address to copy from.</param>\r\n      <param name=\"byteCount\">The number of bytes to copy.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.InitBlock(System.Byte@,System.Byte,System.UInt32)\">\r\n      <summary>Initializes a block of memory at the given location with a given initial value.</summary>\r\n      <param name=\"startAddress\">The address of the start of the memory block to initialize.</param>\r\n      <param name=\"value\">The value to initialize the block to.</param>\r\n      <param name=\"byteCount\">The number of bytes to initialize.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.InitBlock(System.Void*,System.Byte,System.UInt32)\">\r\n      <summary>Initializes a block of memory at the given location with a given initial value.</summary>\r\n      <param name=\"startAddress\">The address of the start of the memory block to initialize.</param>\r\n      <param name=\"value\">The value to initialize the block to.</param>\r\n      <param name=\"byteCount\">The number of bytes to initialize.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.InitBlockUnaligned(System.Byte@,System.Byte,System.UInt32)\">\r\n      <summary>Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address.</summary>\r\n      <param name=\"startAddress\">The address of the start of the memory block to initialize.</param>\r\n      <param name=\"value\">The value to initialize the block to.</param>\r\n      <param name=\"byteCount\">The number of bytes to initialize.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.InitBlockUnaligned(System.Void*,System.Byte,System.UInt32)\">\r\n      <summary>Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address.</summary>\r\n      <param name=\"startAddress\">The address of the start of the memory block to initialize.</param>\r\n      <param name=\"value\">The value to initialize the block to.</param>\r\n      <param name=\"byteCount\">The number of bytes to initialize.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.IsAddressGreaterThan``1(``0@,``0@)\">\r\n      <summary>Returns a value that indicates whether a specified reference is greater than another specified reference.</summary>\r\n      <param name=\"left\">The first value to compare.</param>\r\n      <param name=\"right\">The second value to compare.</param>\r\n      <typeparam name=\"T\">The type of the reference.</typeparam>\r\n      <returns>\r\n        <see langword=\"true\" /> if <paramref name=\"left\" /> is greater than <paramref name=\"right\" />; otherwise, <see langword=\"false\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.IsAddressLessThan``1(``0@,``0@)\">\r\n      <summary>Returns a value that indicates whether a specified reference is less than another specified reference.</summary>\r\n      <param name=\"left\">The first value to compare.</param>\r\n      <param name=\"right\">The second value to compare.</param>\r\n      <typeparam name=\"T\">The type of the reference.</typeparam>\r\n      <returns>\r\n        <see langword=\"true\" /> if <paramref name=\"left\" /> is less than <paramref name=\"right\" />; otherwise, <see langword=\"false\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.IsNullRef``1(``0@)\">\r\n      <summary>Determines if a given reference to a value of type <typeparamref name=\"T\" /> is a null reference.</summary>\r\n      <param name=\"source\">The reference to check.</param>\r\n      <typeparam name=\"T\">The type of the reference.</typeparam>\r\n      <returns>\r\n        <see langword=\"true\" /> if <paramref name=\"source\" /> is a null reference; otherwise, <see langword=\"false\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.NullRef``1\">\r\n      <summary>Returns a reference to a value of type <typeparamref name=\"T\" /> that is a null reference.</summary>\r\n      <typeparam name=\"T\">The type of the reference.</typeparam>\r\n      <returns>A reference to a value of type <typeparamref name=\"T\" /> that is a null reference.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Read``1(System.Void*)\">\r\n      <summary>Reads a value of type <typeparamref name=\"T\" /> from the given location.</summary>\r\n      <param name=\"source\">The location to read from.</param>\r\n      <typeparam name=\"T\">The type to read.</typeparam>\r\n      <returns>An object of type <typeparamref name=\"T\" /> read from the given location.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.ReadUnaligned``1(System.Byte@)\">\r\n      <summary>Reads a value of type <typeparamref name=\"T\" /> from the given location without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"source\">The location to read from.</param>\r\n      <typeparam name=\"T\">The type to read.</typeparam>\r\n      <returns>An object of type <typeparamref name=\"T\" /> read from the given location.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.ReadUnaligned``1(System.Void*)\">\r\n      <summary>Reads a value of type <typeparamref name=\"T\" /> from the given location without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"source\">The location to read from.</param>\r\n      <typeparam name=\"T\">The type to read.</typeparam>\r\n      <returns>An object of type <typeparamref name=\"T\" /> read from the given location.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.SizeOf``1\">\r\n      <summary>Returns the size of an object of the given type parameter.</summary>\r\n      <typeparam name=\"T\">The type of object whose size is retrieved.</typeparam>\r\n      <returns>The size of an object of type <typeparamref name=\"T\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.SkipInit``1(``0@)\">\r\n      <summary>Bypasses definite assignment rules for a given value.</summary>\r\n      <param name=\"value\">The uninitialized object.</param>\r\n      <typeparam name=\"T\">The type of the uninitialized object.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.Int32)\">\r\n      <summary>Subtracts an element offset from the given reference.</summary>\r\n      <param name=\"source\">The reference to subtract the offset from.</param>\r\n      <param name=\"elementOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the subtraction of offset from pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.IntPtr)\">\r\n      <summary>Subtracts an element offset from the given reference.</summary>\r\n      <param name=\"source\">The reference to subtract the offset from.</param>\r\n      <param name=\"elementOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the subtraction of offset from pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.UIntPtr)\">\r\n      <summary>Subtracts an element offset from the given reference.</summary>\r\n      <param name=\"source\">The reference to subtract the offset from.</param>\r\n      <param name=\"elementOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the subraction of offset from pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Subtract``1(System.Void*,System.Int32)\">\r\n      <summary>Subtracts an element offset from the given void pointer.</summary>\r\n      <param name=\"source\">The void pointer to subtract the offset from.</param>\r\n      <param name=\"elementOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of the void pointer.</typeparam>\r\n      <returns>A new void pointer that reflects the subtraction of offset from the specified pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.SubtractByteOffset``1(``0@,System.IntPtr)\">\r\n      <summary>Subtracts a byte offset from the given reference.</summary>\r\n      <param name=\"source\">The reference to subtract the offset from.</param>\r\n      <param name=\"byteOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the subtraction of byte offset from pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.SubtractByteOffset``1(``0@,System.UIntPtr)\">\r\n      <summary>Subtracts a byte offset from the given reference.</summary>\r\n      <param name=\"source\">The reference to subtract the offset from.</param>\r\n      <param name=\"byteOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the subraction of byte offset from pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Unbox``1(System.Object)\">\r\n      <summary>Returns a <see langword=\"mutable ref\" /> to a boxed value.</summary>\r\n      <param name=\"box\">The value to unbox.</param>\r\n      <typeparam name=\"T\">The type to be unboxed.</typeparam>\r\n      <exception cref=\"T:System.NullReferenceException\">\r\n        <paramref name=\"box\" /> is <see langword=\"null\" />, and <typeparamref name=\"T\" /> is a non-nullable value type.</exception>\r\n      <exception cref=\"T:System.InvalidCastException\">\r\n        <paramref name=\"box\" /> is not a boxed value type.\r\n         \r\n-or-\r\n\r\n<paramref name=\"box\" /> is not a boxed <typeparamref name=\"T\" />.</exception>\r\n      <exception cref=\"T:System.TypeLoadException\">\r\n        <typeparamref name=\"T\" /> cannot be found.</exception>\r\n      <returns>A <see langword=\"mutable ref\" /> to the boxed value <paramref name=\"box\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Write``1(System.Void*,``0)\">\r\n      <summary>Writes a value of type <typeparamref name=\"T\" /> to the given location.</summary>\r\n      <param name=\"destination\">The location to write to.</param>\r\n      <param name=\"value\">The value to write.</param>\r\n      <typeparam name=\"T\">The type of value to write.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.WriteUnaligned``1(System.Byte@,``0)\">\r\n      <summary>Writes a value of type <typeparamref name=\"T\" /> to the given location without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"destination\">The location to write to.</param>\r\n      <param name=\"value\">The value to write.</param>\r\n      <typeparam name=\"T\">The type of value to write.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.WriteUnaligned``1(System.Void*,``0)\">\r\n      <summary>Writes a value of type <typeparamref name=\"T\" /> to the given location without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"destination\">The location to write to.</param>\r\n      <param name=\"value\">The value to write.</param>\r\n      <typeparam name=\"T\">The type of value to write.</typeparam>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "DotDumper/bin/Debug/System.Security.Cryptography.Pkcs.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>System.Security.Cryptography.Pkcs</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.AllowNullAttribute\">\r\n            <summary>Specifies that null is allowed as an input even if the corresponding type disallows it.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.DisallowNullAttribute\">\r\n            <summary>Specifies that null is disallowed as an input even if the corresponding type allows it.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MaybeNullAttribute\">\r\n            <summary>Specifies that an output may be null even if the corresponding type disallows it.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.NotNullAttribute\">\r\n            <summary>Specifies that an output will not be null even if the corresponding type allows it. Specifies that an input argument was not null when the call returns.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute\">\r\n            <summary>Specifies that when a method returns <see cref=\"P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue\"/>, the parameter may be null even if the corresponding type disallows it.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.#ctor(System.Boolean)\">\r\n            <summary>Initializes the attribute with the specified return value condition.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter may be null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue\">\r\n            <summary>Gets the return value condition.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute\">\r\n            <summary>Specifies that when a method returns <see cref=\"P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue\"/>, the parameter will not be null even if the corresponding type allows it.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.#ctor(System.Boolean)\">\r\n            <summary>Initializes the attribute with the specified return value condition.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter will not be null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue\">\r\n            <summary>Gets the return value condition.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute\">\r\n            <summary>Specifies that the output will be non-null if the named parameter is non-null.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.#ctor(System.String)\">\r\n            <summary>Initializes the attribute with the associated parameter name.</summary>\r\n            <param name=\"parameterName\">\r\n            The associated parameter name.  The output will be non-null if the argument to the parameter specified is non-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.ParameterName\">\r\n            <summary>Gets the associated parameter name.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.DoesNotReturnAttribute\">\r\n            <summary>Applied to a method that will never return under any circumstance.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute\">\r\n            <summary>Specifies that the method will not return if the associated Boolean parameter is passed the specified value.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.#ctor(System.Boolean)\">\r\n            <summary>Initializes the attribute with the specified parameter value.</summary>\r\n            <param name=\"parameterValue\">\r\n            The condition parameter value. Code after the method will be considered unreachable by diagnostics if the argument to\r\n            the associated parameter matches this value.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.ParameterValue\">\r\n            <summary>Gets the condition parameter value.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute\">\r\n            <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String)\">\r\n            <summary>Initializes the attribute with a field or property member.</summary>\r\n            <param name=\"member\">\r\n            The field or property member that is promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String[])\">\r\n            <summary>Initializes the attribute with the list of field and property members.</summary>\r\n            <param name=\"members\">\r\n            The list of field and property members that are promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members\">\r\n            <summary>Gets field or property member names.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute\">\r\n            <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values when returning with the specified return value condition.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String)\">\r\n            <summary>Initializes the attribute with the specified return value condition and a field or property member.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter will not be null.\r\n            </param>\r\n            <param name=\"member\">\r\n            The field or property member that is promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String[])\">\r\n            <summary>Initializes the attribute with the specified return value condition and list of field and property members.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter will not be null.\r\n            </param>\r\n            <param name=\"members\">\r\n            The list of field and property members that are promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.ReturnValue\">\r\n            <summary>Gets the return value condition.</summary>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members\">\r\n            <summary>Gets field or property member names.</summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.OSPlatformAttribute\">\r\n            <summary>\r\n            Base type for all platform-specific API attributes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.TargetPlatformAttribute\">\r\n            <summary>\r\n            Records the platform that the project targeted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.SupportedOSPlatformAttribute\">\r\n             <summary>\r\n             Records the operating system (and minimum version) that supports an API. Multiple attributes can be\r\n             applied to indicate support on multiple operating systems.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.SupportedOSPlatformAttribute\" />\r\n             or use guards to prevent calls to APIs on unsupported operating systems.\r\n            \r\n             A given platform should only be specified once.\r\n             </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.UnsupportedOSPlatformAttribute\">\r\n            <summary>\r\n            Marks APIs that were removed in a given operating system version.\r\n            </summary>\r\n            <remarks>\r\n            Primarily used by OS bindings to indicate APIs that are only available in\r\n            earlier versions.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute\">\r\n             <summary>\r\n             Annotates a custom guard field, property or method with a supported platform name and optional version.\r\n             Multiple attributes can be applied to indicate guard for multiple supported platforms.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute\" /> to a field, property or method\r\n             and use that field, property or method in a conditional or assert statements in order to safely call platform specific APIs.\r\n            \r\n             The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard.\r\n             </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute\">\r\n             <summary>\r\n             Annotates the custom guard field, property or method with an unsupported platform name and optional version.\r\n             Multiple attributes can be applied to indicate guard for multiple unsupported platforms.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute\" /> to a field, property or method\r\n             and use that  field, property or method in a conditional or assert statements as a guard to safely call APIs unsupported on those platforms.\r\n            \r\n             The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard.\r\n             </remarks>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "DotDumper/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs",
    "content": "// <autogenerated />\r\nusing System;\r\nusing System.Reflection;\r\n[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(\".NETFramework,Version=v4.7.2\", FrameworkDisplayName = \".NET Framework 4.7.2\")]\r\n"
  },
  {
    "path": "DotDumper/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs",
    "content": "// <autogenerated />\r\nusing System;\r\nusing System.Reflection;\r\n[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(\".NETFramework,Version=v4.8\", FrameworkDisplayName = \".NET Framework 4.8\")]\r\n"
  },
  {
    "path": "DotDumper/obj/Debug/DotDumper.csproj.CopyComplete",
    "content": ""
  },
  {
    "path": "DotDumper/obj/Debug/DotDumper.csproj.CoreCompileInputs.cache",
    "content": "4714cd6333f629bfd5df722447dbb1fbbbb252a5\r\n"
  },
  {
    "path": "DotDumper/obj/Debug/DotDumper.csproj.FileListAbsolute.txt",
    "content": "C:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\bin\\Debug\\DotDumper.exe.config\r\nC:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\bin\\Debug\\DotDumper.exe\r\nC:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\bin\\Debug\\DotDumper.pdb\r\nC:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\obj\\Debug\\DotDumper.csproj.AssemblyReference.cache\r\nC:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\obj\\Debug\\DotDumper.csproj.CoreCompileInputs.cache\r\nC:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\obj\\Debug\\DotDumper.exe\r\nC:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\obj\\Debug\\DotDumper.pdb\r\nC:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\bin\\Debug\\PeNet.Asn1.dll\r\nC:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\bin\\Debug\\PeNet.dll\r\nC:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\bin\\Debug\\System.Buffers.dll\r\nC:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\bin\\Debug\\System.Memory.dll\r\nC:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\bin\\Debug\\System.Numerics.Vectors.dll\r\nC:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\bin\\Debug\\System.Runtime.CompilerServices.Unsafe.dll\r\nC:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\bin\\Debug\\System.Security.Cryptography.Pkcs.dll\r\nC:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\bin\\Debug\\System.Buffers.xml\r\nC:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\bin\\Debug\\System.Memory.xml\r\nC:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\bin\\Debug\\System.Numerics.Vectors.xml\r\nC:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\bin\\Debug\\System.Runtime.CompilerServices.Unsafe.xml\r\nC:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\bin\\Debug\\System.Security.Cryptography.Pkcs.xml\r\nC:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\obj\\Debug\\DotDumper.csproj.CopyComplete\r\n"
  },
  {
    "path": "DotDumper/obj/x64/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs",
    "content": "// <autogenerated />\r\nusing System;\r\nusing System.Reflection;\r\n[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(\".NETFramework,Version=v4.7.2\", FrameworkDisplayName = \".NET Framework 4.7.2\")]\r\n"
  },
  {
    "path": "DotDumper/obj/x64/Debug/DotDumper.csproj.CoreCompileInputs.cache",
    "content": "395ac2255130d4132da537b24d372ccbfe91101e\r\n"
  },
  {
    "path": "DotDumper/obj/x64/Debug/DotDumper.csproj.FileListAbsolute.txt",
    "content": "C:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\bin\\x64\\Debug\\DotDumper.exe\r\nC:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\bin\\x64\\Debug\\DotDumper.pdb\r\nC:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\obj\\x64\\Debug\\DotDumper.csproj.CoreCompileInputs.cache\r\nC:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\obj\\x64\\Debug\\DotDumper.exe\r\nC:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\obj\\x64\\Debug\\DotDumper.pdb\r\nC:\\Users\\John\\Source\\Repos\\DotDumper\\DotDumper\\obj\\x64\\Debug\\DotDumper.csproj.AssemblyReference.cache\r\n"
  },
  {
    "path": "DotDumper/packages.config",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<packages>\r\n  <package id=\"PeNet\" version=\"2.9.9\" targetFramework=\"net48\" />\r\n  <package id=\"PeNet.Asn1\" version=\"2.0.0\" targetFramework=\"net48\" />\r\n  <package id=\"System.Buffers\" version=\"4.5.1\" targetFramework=\"net48\" />\r\n  <package id=\"System.Diagnostics.Process\" version=\"4.3.0\" targetFramework=\"net48\" />\r\n  <package id=\"System.Memory\" version=\"4.5.5\" targetFramework=\"net48\" />\r\n  <package id=\"System.Numerics.Vectors\" version=\"4.5.0\" targetFramework=\"net48\" />\r\n  <package id=\"System.Runtime.CompilerServices.Unsafe\" version=\"6.0.0\" targetFramework=\"net48\" />\r\n  <package id=\"System.Security.Cryptography.Pkcs\" version=\"6.0.1\" targetFramework=\"net48\" />\r\n</packages>"
  },
  {
    "path": "DotDumper.sln",
    "content": "﻿\r\nMicrosoft Visual Studio Solution File, Format Version 12.00\r\n# Visual Studio Version 16\r\nVisualStudioVersion = 16.0.29201.188\r\nMinimumVisualStudioVersion = 10.0.40219.1\r\nProject(\"{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}\") = \"DotDumper\", \"DotDumper\\DotDumper.csproj\", \"{97B3A6FF-A6EC-488A-8206-9820DC1F109B}\"\r\nEndProject\r\nGlobal\r\n\tGlobalSection(SolutionConfigurationPlatforms) = preSolution\r\n\t\tDebug|Any CPU = Debug|Any CPU\r\n\t\tDebug|x64 = Debug|x64\r\n\t\tRelease|Any CPU = Release|Any CPU\r\n\t\tRelease|x64 = Release|x64\r\n\tEndGlobalSection\r\n\tGlobalSection(ProjectConfigurationPlatforms) = postSolution\r\n\t\t{97B3A6FF-A6EC-488A-8206-9820DC1F109B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r\n\t\t{97B3A6FF-A6EC-488A-8206-9820DC1F109B}.Debug|Any CPU.Build.0 = Debug|Any CPU\r\n\t\t{97B3A6FF-A6EC-488A-8206-9820DC1F109B}.Debug|x64.ActiveCfg = Debug|x64\r\n\t\t{97B3A6FF-A6EC-488A-8206-9820DC1F109B}.Debug|x64.Build.0 = Debug|x64\r\n\t\t{97B3A6FF-A6EC-488A-8206-9820DC1F109B}.Release|Any CPU.ActiveCfg = Release|Any CPU\r\n\t\t{97B3A6FF-A6EC-488A-8206-9820DC1F109B}.Release|Any CPU.Build.0 = Release|Any CPU\r\n\t\t{97B3A6FF-A6EC-488A-8206-9820DC1F109B}.Release|x64.ActiveCfg = Release|x64\r\n\t\t{97B3A6FF-A6EC-488A-8206-9820DC1F109B}.Release|x64.Build.0 = Release|x64\r\n\tEndGlobalSection\r\n\tGlobalSection(SolutionProperties) = preSolution\r\n\t\tHideSolutionNode = FALSE\r\n\tEndGlobalSection\r\n\tGlobalSection(ExtensibilityGlobals) = postSolution\r\n\t\tSolutionGuid = {73ACB997-98D1-4343-8558-3318327C48C5}\r\n\tEndGlobalSection\r\nEndGlobal\r\n"
  },
  {
    "path": "LICENSE",
    "content": "DotDumper's code, unless otherwise stated, is licensed under the Apache 2.0 License.\n\nThe PENet library (licensed under the Apache 2.0 License) can be found at https://github.com/secana/PeNet, and belongs to its respective owners and copyright holders.\n\nThe Hook.cs class is based on Michael Pekar's DumbHook.cs class, licensed under the\nMIT license. Both licenses are given below.\n\nMIT License\n\nCopyright (c) 2022 Michael Pekar\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n------------------------------------------------------------------------\nOriginally released on unknowncheats.me by me in 2017:\nhttps:www.unknowncheats.me/forum/c-/213492-hook-managed-function.html#post1700496\nGitHub Gist link: https://gist.github.com/mipek/64d6d1ad08dc51c89e9f7d5ae369b203\n\nEND OF MIT LICENSE\n\nSTART OF THE APACHE 2.0 LICENSE\n\n                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright 2022 Musarubra US LLC\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n"
  },
  {
    "path": "README.md",
    "content": "<img src=\"images/DotDumper.png\" alt=\"The DotDumper logo, a dumping truck\" width=\"610\" height=\"414\" />\n\n# DotDumper\nAn automatic unpacker and logger for DotNet Framework targeting files! This tool has been unveiled at [Black Hat USA 2022](https://www.blackhat.com/us-22/arsenal/schedule/index.html#dotdumper-automatically-unpacking-dotnet-based-malware-27846). At [Black Hat Asia 2023](https://www.blackhat.com/asia-23/arsenal/schedule/index.html#dotdumper-automatically-unpacking-dotnet-based-malware-31071), [DotDumperGUI](https://github.com/advanced-threat-research/DotDumperGUI) and [DotDumperNative](https://github.com/advanced-threat-research/DotDumperNative) were published, along with version 1.1-stable of DotDumper. These three tools are meant to be used together, where DotDumper 1.1-stable requires DotDumperNative's DLLs to be present, while DotDumperGUI is meant as a graphical user-interface to open and filter the JSON output from DotDumper runs.\n\nThe automatic detection and classification of any given file in a reliable manner is often considered the holy grail of malware analysis. The trials and tribulations to get there are plenty, which is why the creation of such a system is held in high regard. When it comes to DotNet targeting binaries, our new open-source tool DotDumper aims to assist in several of the crucial steps along the way: logging (in-memory) activity, dumping interesting memory segments, and extracting characteristics from the given sample.\n\n## Table of contents\n* <a href=\"#why_dotdumper\">Why DotDumper?</a>\n* <a href=\"#features\">Features</a>\n    * <a href=\"#cli\">Using the command-line interface</a>\n    * <a href=\"#logging_and_dumping\">Logging and dumping</a>\n    * <a href=\"#reflection\">Reflection</a>\n    * <a href=\"#hooks\">(Un)managed hooks</a>\n    * <a href=\"#extendible\">Easily extendible</a>\n* <a href=\"#sandbox\">Sandbox timeout support</a>\n* <a href=\"#differences\">Differences with known tooling</a>\n* <a href=\"#future_work\">Future work</a>\n\n## <a name=\"why_dotdumper\">Why DotDumper?</a>\nIn brief, manual unpacking is a tedious process which consumes a disproportional amount of time for analysts. Obfuscated binaries further increase the time an analyst must spend to unpack a given file. When scaling this, organizations need numerous analysts who dissect malware daily, likely in combination with a scalable sandbox. The lost valuable time could be used to dig into interesting campaigns or samples to uncover new threats, rather than the mundane generic malware that is widely spread. Afterall, analysts look for the few needles in the haystack.\n\nSo, what difference does DotDumper make? Running a DotNet based malware sample via DotDumper provides log files of crucial, contextualizing, and common function calls in three formats (human readable plaintext, JSON, and XML), as well as copies from useful in-memory segments. As such, an analyst can skim through the function call log. Additionally, the dumped files can be scanned to classify them, providing additional insight into the malware sample and the data it contains. This cuts down on time vital to the triage and incident response processes, and frees up SOC analyst and researcher time for more sophisticated analysis needs.\n\n## <a name=\"features\">Features</a>\nTo log and dump the contextualizing function calls and their results, DotDumper uses a mixture of reflection and managed hooks, all written in pure C#. Below, key features will be highlighted and elaborated upon, in combination with excerpts of DotDumper’s results of a packed AgentTesla stealer sample, the hashes of which are below.\n\n|Hash type | Hash value |\n| --- | ----------- |\n| SHA-256 | b7512e6b8e9517024afdecc9e97121319e7dad2539eb21a79428257401e5558d |\n| SHA-1 | c10e48ee1f802f730f41f3d11ae9d7bcc649080c |\n| MD-5 | 23541daadb154f1f59119952e7232d6b |\n\n### <a name=\"cli\">Using the command-line interface</a>\nDotDumper is accessible through a command-line interface, with a variety of arguments. The image below shows the help menu. Note that not all arguments will be discussed, but rather the most used ones.\n\n![DotDumper's command-line interface menu](images/cli.png)\n\nThe minimal requirement to run a given sample, is to provide the “-file” argument, along with a file name or file path. If a full path is given, it is used. If a file name is given, the current working directory is checked, as well as the folder of DotDumper’s executable location.\n\nUnless a directory name is provided, the “-log” folder name is set equal to the file name of the sample without the extension (if any). The folder is located in the same folder as DotDumper resides in, which is where the logs and dumped files will be saved in.\n\nIn the case of a library, or an alternative entry point into a binary, one must override the entry point using “-overrideEntry true”. Additionally, one has to provide the fully qualified class, which includes the name space using “-fqcn My.NameSpace.MyClass”. This tells DotDumper which class to select, which is where the provided function name (using “-functionName MyFunction”) is retrieved.\n\nIf the selected function requires arguments, one has to provide the number of arguments using “-argc” and the number of required arguments. The argument types and values are to be provided as “string|myValue int|9”. Note that when spaces are used in the values, the argument on the command-line interface needs to be encapsulated between quotes to ensure it is passed as a single argument.\n\nOther less frequently used options such as “-raceTime” or “-deprecated” are safe in their default settings but might require tweaking in the future due to changes in the DotNet Framework. They are currently exposed in the command-line interface to easily allow changes, if need be, even if one is using an older version of DotDumper when the time comes.\n\n### <a name=\"logging_and_dumping\">Logging and dumping</a>\nLogging and dumping are the two core features of DotDumper. To minimize the amount of time the analysis takes, the logging should provide context to the analyst. This is done by providing the analyst with the following information for each logged function call:\n\n* A stack trace based on the function’s caller\n*\tInformation regarding the assembly object where the call originated from, such as the name, version, and cryptographic hashes\n*\tThe parent assembly, from which the call originates if it is not the original sample\n*\tThe type, name, and value of the function’s arguments\n*\tThe type, name, and value of function’s return value, if any\n*\tA list of files which are dumped to disk which correspond with the given function call\n\nNote that for each dumped file, the file name is equal to the file’s SHA-256 hash.\n\nTo clarify the above, an excerpt of a log is given below. The excerpt shows the details for the aforementioned AgentTesla sample, where it loads the second stage using DotNet’s Assembly.Load function.\n\n![The log for an intercepted Assembly.Load(byte[] rawAssembly) function call](images/assembly_load.png)\n\nFirst, the local system time is given, together with the original function’s return type, name, and argument(s). Second, the stack trace is given, where it shows that the sample’s main function leads to a constructor, initialises the components, and calls two custom functions. The Assembly.Load function was called from within “NavigationLib.TaskEightBestOil.GGGGGGGGGGGGGGGGGGGG(String str)”. This provides context for the analyst to find the code around this call if it is of interest.\n\nThen, information regarding the assembly call order is given. The more stages are loaded, the more complex it becomes to see via which stages the call came to be. One normally expects one stage to load the next, but in some cases later stages utilize previous stages in a non-linear order. Additionally, information regarding the originating assembly is given to further enrich the data for the analyst.\n\nNext, the parent hash is given. The parent of a stage is the previous stage, which in this example is not yet present. The newly loaded stage will have this stage as its parent. This allows the analyst to correlate events more easily.\n\nFinally, the function’s return type and value are stored, along with the type, name, and value of each argument that is passed to the hooked function. If any variable is larger than 100 bytes in size, it is stored on the disk instead. A reference is then inserted in the log to reference the file, rather than showing the value. The threshold has been set to avoid hiccups in the printing of the log, as some arrays are thousands of indices in size.\n\n### <a name=\"reflection\">Reflection</a>\nPer Microsoft’s documentation, reflection is best [summarized]([url](https://docs.microsoft.com/en-us/dotnet/framework/reflection-and-codedom/reflection)) as “[…] provides objects that encapsulate assemblies, modules, and types”. In short, this allows the dynamic creation and invocation of DotNet classes and functions from the malware sample. DotDumper contains a reflective loader which allows an analyst to load and analyze both executables and libraries, as long as they are DotNet Framework based.\n\nTo utilize the loader, one has to opt to overwrite the entry point in the command-line interface, specify the class (including the namespace it resides in) and function name within a given file. Optionally, one can provide arguments to the specified function, for all native types and arrays thereof. Examples of native types are int, string, char, and arrays such as int[], string[], and char[]. All the arguments are to be provided via the command-line interface, where both the type and the value are to be specified.\n\nNot overriding the entry point results in the default entry point being used. By default, an empty string array is passed towards the sample’s main function, as if the sample is executed without arguments.\nAdditionally, reflection is often used by loaders to invoke a given function in a given class in the next stage. Sometimes, arguments are passed along as well, which are used later to decrypt a resource. In the aforementioned AgentTesla sample, this exact scenario plays out. DotDumper’s invoke related hooks log these occurrences, as can be seen below.\n\n![The intercepted hook to invoke the second stage](images/invoke_hook.png)\n\nThe function name in the first line is not an internal function of the DotNet Framework, but rather a call to a specific function in the second stage. The types and names of the three arguments are listed in the function signature. Their values can be found in the function argument information section. This would allow an analyst to load the second stage in a custom loader with the given values for the arguments, or even do this using DotDumper by loading the previously dumped stage and providing the arguments. \n\n### <a name=\"hooks\">(Un)managed hooks</a>\nBefore going into managed hooks, one needs to understand how hooks work. There are two main variables to consider here: the target function and a controlled function which is referred to as the hook. Simply put, the memory at the target function (i.e. Assembly.Load) is altered to instead to jump to the hook. As such, the program’s execution flow is diverted. The hook can then perform arbitrary actions, optionally call the original function, after which it returns the execution to the caller together with a return value if need be. The diagram below illustrates this process.\n\n![The flow chart of a hook's installation and usage](images/hook_flowchart.png)\n\nKnowing what hooks are is essential to understand what managed hooks are. Managed code is executed in a virtual and managed environment, such as the DotNet runtime or Java’s virtual machine.  Obtaining the memory address where the managed function resides differs from an unmanaged language such as C. Once the correct memory addresses for both functions have been obtained, the hook can be set by directly accessing memory using unsafe C#, along with DotNet’s interoperability service to call native Windows API functionality.\n\nSince DotDumper v1.1-stable, DotDumper can also hook unmanaged (or native, if you will) functions. The function redirection can be any combination from-and-to managed and unmanaged functions, with one important caveat. Any unmanaged function that uses a managed hook, will not be able to properly read the stack's values. As such, a native component is required (dubbed DotDumperNative). This component communicates via a named pipe with DotDumper itself, thus using its centralised logging system, while intercepting unmanaged calls with access to the function arguments found on the stack.\n\n### <a name=\"extendible\">Easily extendible</a>\nSince DotDumper is written in pure C# without any external dependencies, one can easily extend the framework using Visual Studio. The code is documented in this blog, on GitHub, and in classes, in functions, and in-line in the source code. This, in combination with the clear naming scheme, allows anyone to modify the tool as they see fit, minimizing the time and effort that one needs to spend to understand the tool. Instead, it allows developers and analysts alike to focus their efforts on the tool’s improvement.\n\n## <a name=\"sandbox\">Sandbox timeout support</a>\nWhile the sandbox timeout support feature hasn’t been changed nor modified, it wasn’t documented before. Since DotDumper executes the file it is given, its execution will continue until the sample terminates. Malware often enters a “waiting” state, where a certain condition must be met before it reactivates, or the malware continues execution in a different process (with the help of process injection). For example, a newly created thread in a hollowed process only returns once it is finished.\n\nTo avoid stalling, DotDumper has a stagnation handler. Each time a hook’s results are logged, a counter is incremented. If this counter is unchanged after three consecutive 20-second intervals, DotDumper assumes a stagnated state is encountered. In that case, the system’s time is set to 30-12-2200 12:00 to force the sandbox to time out, after which it notifies the analyst via the logger and terminates itself. The sandbox timeout occurs when the elapsed time from the current date until the newly set date exceeds the usual 5 or 10 minutes. Even if the sandbox runtime is set to hours or days, it is exceeded.\n\nThe reason to cut the analysis short is to save time and resources, since a submission with a 10-minute timeout might only take 2 minutes to run. As such, one would be able to run multiple samples in the same time span with the stagnation handler. An overview of the stagnation handler’s logic is shown below.\n\n![The flow chart of the stagnation handler](images/sandbox_flowchart.png)\n\n## <a name=\"differences\">Differences with known tooling</a>\nWith the goal and features of DotDumper clear, it might seem as if there’s overlap with known publicly available tools such as [ILSpy](https://github.com/icsharpcode/ILSpy), [dnSpyEx](https://github.com/dnSpyEx/dnSpy), [de4dot](https://github.com/de4dot/de4dot), or [pe-sieve](https://github.com/hasherezade/pe-sieve). Note that there is no intention to proclaim one tool is better than another, but rather how the tools differ.\n\nDotDumper’s goal is to log and dump crucial, contextualizing, and common function calls from DotNet targeting samples. ILSpy is a DotNet disassembler and decompiler, but does not allow the execution of the file. dnSpyEx (and its predecessor dnSpy) utilise ILSpy as the disassembler and decompiler component, while adding a debugger. This allows one to manually inspect and manipulate memory. de4dot is solely used to deobfuscate DotNet binaries, improving the code’s readability for human eyes. The last tool in this comparison, pe-sieve, is meant to detect and dump malware from running processes, disregarding the used programming language. The table below provides a graphical overview of the above-mentioned tools.\n\n![The table with the different tool purposes in summary](images/tool_table.png)\n\n## <a name=\"future_work\">Future work</a>\nDotDumper is under constant review and development, all of which is focused on two main areas of interest: bug fixing and the addition of new features. During the development, the code was tested, but due to injection of hooks into the DotNet Framework’s functions which can be subject to change, it’s very well possible that there are bugs in the code. Anyone who encounters a bug is urged to open an issue on the GitHub repository, which will then be looked at. The suggestion of new features is also possible via the GitHub repository. For those with a GitHub account, or for those who rather not publicly interact, feel free to send me a private message on my [Twitter](https://twitter.com/Libranalysis).\n\nNeedless to say, if you've used DotDumper during an analysis, or used it in a creative way, feel free to reach out in public or in private! There’s nothing like hearing about the usage of a home-made tool! \n\nThere is more in store for DotDumper, and an update will be sent out to the community once it is available!\n"
  },
  {
    "path": "packages/System.Buffers.4.5.1/LICENSE.TXT",
    "content": "The MIT License (MIT)\r\n\r\nCopyright (c) .NET Foundation and Contributors\r\n\r\nAll rights reserved.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n"
  },
  {
    "path": "packages/System.Buffers.4.5.1/THIRD-PARTY-NOTICES.TXT",
    "content": ".NET Core uses third-party libraries or other resources that may be\r\ndistributed under licenses different than the .NET Core software.\r\n\r\nIn the event that we accidentally failed to list a required notice, please\r\nbring it to our attention. Post an issue or email us:\r\n\r\n           dotnet@microsoft.com\r\n\r\nThe attached notices are provided for information only.\r\n\r\nLicense notice for Slicing-by-8 \r\n-------------------------------\r\n\r\nhttp://sourceforge.net/projects/slicing-by-8/\r\n\r\nCopyright (c) 2004-2006 Intel Corporation - All Rights Reserved\r\n\r\n\r\nThis software program is licensed subject to the BSD License,  available at\r\nhttp://www.opensource.org/licenses/bsd-license.html.\r\n\r\n\r\nLicense notice for Unicode data\r\n-------------------------------\r\n\r\nhttp://www.unicode.org/copyright.html#License\r\n\r\nCopyright © 1991-2017 Unicode, Inc. All rights reserved.\r\nDistributed under the Terms of Use in http://www.unicode.org/copyright.html.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining\r\na copy of the Unicode data files and any associated documentation\r\n(the \"Data Files\") or Unicode software and any associated documentation\r\n(the \"Software\") to deal in the Data Files or Software\r\nwithout restriction, including without limitation the rights to use,\r\ncopy, modify, merge, publish, distribute, and/or sell copies of\r\nthe Data Files or Software, and to permit persons to whom the Data Files\r\nor Software are furnished to do so, provided that either\r\n(a) this copyright and permission notice appear with all copies\r\nof the Data Files or Software, or\r\n(b) this copyright and permission notice appear in associated\r\nDocumentation.\r\n\r\nTHE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY OF\r\nANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\r\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r\nNONINFRINGEMENT OF THIRD PARTY RIGHTS.\r\nIN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS\r\nNOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL\r\nDAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,\r\nDATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\r\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THE DATA FILES OR SOFTWARE.\r\n\r\nExcept as contained in this notice, the name of a copyright holder\r\nshall not be used in advertising or otherwise to promote the sale,\r\nuse or other dealings in these Data Files or Software without prior\r\nwritten authorization of the copyright holder.\r\n\r\nLicense notice for Zlib \r\n-----------------------\r\n\r\nhttps://github.com/madler/zlib\r\nhttp://zlib.net/zlib_license.html\r\n\r\n/* zlib.h -- interface of the 'zlib' general purpose compression library\r\n  version 1.2.11, January 15th, 2017\r\n\r\n  Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler\r\n\r\n  This software is provided 'as-is', without any express or implied\r\n  warranty.  In no event will the authors be held liable for any damages\r\n  arising from the use of this software.\r\n\r\n  Permission is granted to anyone to use this software for any purpose,\r\n  including commercial applications, and to alter it and redistribute it\r\n  freely, subject to the following restrictions:\r\n\r\n  1. The origin of this software must not be misrepresented; you must not\r\n     claim that you wrote the original software. If you use this software\r\n     in a product, an acknowledgment in the product documentation would be\r\n     appreciated but is not required.\r\n  2. Altered source versions must be plainly marked as such, and must not be\r\n     misrepresented as being the original software.\r\n  3. This notice may not be removed or altered from any source distribution.\r\n\r\n  Jean-loup Gailly        Mark Adler\r\n  jloup@gzip.org          madler@alumni.caltech.edu\r\n\r\n*/\r\n\r\nLicense notice for Mono\r\n-------------------------------\r\n\r\nhttp://www.mono-project.com/docs/about-mono/\r\n\r\nCopyright (c) .NET Foundation Contributors\r\n\r\nMIT License\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software  and associated documentation files (the Software), to deal\r\nin the Software without restriction,  including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense,  and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so,  subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF \r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND \r\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE \r\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION \r\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION \r\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n\r\nLicense notice for International Organization for Standardization\r\n-----------------------------------------------------------------\r\n\r\nPortions (C) International Organization for Standardization 1986:\r\n     Permission to copy in any form is granted for use with\r\n     conforming SGML systems and applications as defined in\r\n     ISO 8879, provided this notice is included in all copies.\r\n\r\nLicense notice for Intel\r\n------------------------\r\n\r\n\"Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are met:\r\n\r\n1. Redistributions of source code must retain the above copyright notice, this\r\nlist of conditions and the following disclaimer.\r\n\r\n2. Redistributions in binary form must reproduce the above copyright notice,\r\nthis list of conditions and the following disclaimer in the documentation\r\nand/or other materials provided with the distribution.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\r\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\r\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\r\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\r\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\r\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\r\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\r\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r\n\r\nLicense notice for Xamarin and Novell\r\n-------------------------------------\r\n\r\nCopyright (c) 2015 Xamarin, Inc (http://www.xamarin.com)\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n\r\nCopyright (c) 2011 Novell, Inc (http://www.novell.com)\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n\r\nThird party notice for W3C\r\n--------------------------\r\n\r\n\"W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE\r\nStatus: This license takes effect 13 May, 2015.\r\nThis work is being provided by the copyright holders under the following license.\r\nLicense\r\nBy obtaining and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions.\r\nPermission to copy, modify, and distribute this work, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the work or portions thereof, including modifications:\r\nThe full text of this NOTICE in a location viewable to users of the redistributed or derivative work.\r\nAny pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software and Document Short Notice should be included.\r\nNotice of any changes or modifications, through a copyright statement on the new code or document such as \"This software or document includes material copied from or derived from [title and URI of the W3C document]. Copyright © [YEAR] W3C® (MIT, ERCIM, Keio, Beihang).\"\r\nDisclaimers\r\nTHIS WORK IS PROVIDED \"AS IS,\" AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.\r\nCOPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT.\r\nThe name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders.\"\r\n\r\nLicense notice for Bit Twiddling Hacks\r\n--------------------------------------\r\n\r\nBit Twiddling Hacks\r\n\r\nBy Sean Eron Anderson\r\nseander@cs.stanford.edu\r\n\r\nIndividually, the code snippets here are in the public domain (unless otherwise\r\nnoted) — feel free to use them however you please. The aggregate collection and\r\ndescriptions are © 1997-2005 Sean Eron Anderson. The code and descriptions are\r\ndistributed in the hope that they will be useful, but WITHOUT ANY WARRANTY and\r\nwithout even the implied warranty of merchantability or fitness for a particular\r\npurpose. \r\n\r\nLicense notice for Brotli\r\n--------------------------------------\r\n\r\nCopyright (c) 2009, 2010, 2013-2016 by the Brotli Authors.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n\r\ncompress_fragment.c:\r\nCopyright (c) 2011, Google Inc.\r\nAll rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are\r\nmet:\r\n\r\n    * Redistributions of source code must retain the above copyright\r\nnotice, this list of conditions and the following disclaimer.\r\n    * Redistributions in binary form must reproduce the above\r\ncopyright notice, this list of conditions and the following disclaimer\r\nin the documentation and/or other materials provided with the\r\ndistribution.\r\n    * Neither the name of Google Inc. nor the names of its\r\ncontributors may be used to endorse or promote products derived from\r\nthis software without specific prior written permission.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\r\n\"\"AS IS\"\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\r\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\r\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\r\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r\n\r\ndecode_fuzzer.c:\r\nCopyright (c) 2015 The Chromium Authors. All rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are\r\nmet:\r\n\r\n   * Redistributions of source code must retain the above copyright\r\nnotice, this list of conditions and the following disclaimer.\r\n   * Redistributions in binary form must reproduce the above\r\ncopyright notice, this list of conditions and the following disclaimer\r\nin the documentation and/or other materials provided with the\r\ndistribution.\r\n   * Neither the name of Google Inc. nor the names of its\r\ncontributors may be used to endorse or promote products derived from\r\nthis software without specific prior written permission.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\r\n\"\"AS IS\"\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\r\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\r\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\r\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\"\r\n\r\n"
  },
  {
    "path": "packages/System.Buffers.4.5.1/lib/net461/System.Buffers.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?><doc>\r\n  <assembly>\r\n    <name>System.Buffers</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:System.Buffers.ArrayPool`1\">\r\n      <summary>Provides a resource pool that enables reusing instances of type <see cref=\"T[]\"></see>.</summary>\r\n      <typeparam name=\"T\">The type of the objects that are in the resource pool.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.#ctor\">\r\n      <summary>Initializes a new instance of the <see cref=\"T:System.Buffers.ArrayPool`1\"></see> class.</summary>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Create\">\r\n      <summary>Creates a new instance of the <see cref=\"T:System.Buffers.ArrayPool`1\"></see> class.</summary>\r\n      <returns>A new instance of the <see cref=\"System.Buffers.ArrayPool`1\"></see> class.</returns>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Create(System.Int32,System.Int32)\">\r\n      <summary>Creates a new instance of the <see cref=\"T:System.Buffers.ArrayPool`1\"></see> class using the specifed configuration.</summary>\r\n      <param name=\"maxArrayLength\">The maximum length of an array instance that may be stored in the pool.</param>\r\n      <param name=\"maxArraysPerBucket\">The maximum number of array instances that may be stored in each bucket in the pool. The pool groups arrays of similar lengths into buckets for faster access.</param>\r\n      <returns>A new instance of the <see cref=\"System.Buffers.ArrayPool`1\"></see> class with the specified configuration.</returns>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\">\r\n      <summary>Retrieves a buffer that is at least the requested length.</summary>\r\n      <param name=\"minimumLength\">The minimum length of the array.</param>\r\n      <returns>An array of type <see cref=\"T[]\"></see> that is at least <paramref name=\"minimumLength\">minimumLength</paramref> in length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)\">\r\n      <summary>Returns an array to the pool that was previously obtained using the <see cref=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\"></see> method on the same <see cref=\"T:System.Buffers.ArrayPool`1\"></see> instance.</summary>\r\n      <param name=\"array\">A buffer to return to the pool that was previously obtained using the <see cref=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\"></see> method.</param>\r\n      <param name=\"clearArray\">Indicates whether the contents of the buffer should be cleared before reuse. If <paramref name=\"clearArray\">clearArray</paramref> is set to true, and if the pool will store the buffer to enable subsequent reuse, the <see cref=\"M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)\"></see> method will clear the <paramref name=\"array\">array</paramref> of its contents so that a subsequent caller using the <see cref=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\"></see> method will not see the content of the previous caller. If <paramref name=\"clearArray\">clearArray</paramref> is set to false or if the pool will release the buffer, the array&amp;#39;s contents are left unchanged.</param>\r\n    </member>\r\n    <member name=\"P:System.Buffers.ArrayPool`1.Shared\">\r\n      <summary>Gets a shared <see cref=\"T:System.Buffers.ArrayPool`1\"></see> instance.</summary>\r\n      <returns>A shared <see cref=\"System.Buffers.ArrayPool`1\"></see> instance.</returns>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Buffers.4.5.1/lib/netcoreapp2.0/_._",
    "content": ""
  },
  {
    "path": "packages/System.Buffers.4.5.1/lib/netstandard1.1/System.Buffers.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?><doc>\r\n  <assembly>\r\n    <name>System.Buffers</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:System.Buffers.ArrayPool`1\">\r\n      <summary>Provides a resource pool that enables reusing instances of type <see cref=\"T[]\"></see>.</summary>\r\n      <typeparam name=\"T\">The type of the objects that are in the resource pool.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.#ctor\">\r\n      <summary>Initializes a new instance of the <see cref=\"T:System.Buffers.ArrayPool`1\"></see> class.</summary>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Create\">\r\n      <summary>Creates a new instance of the <see cref=\"T:System.Buffers.ArrayPool`1\"></see> class.</summary>\r\n      <returns>A new instance of the <see cref=\"System.Buffers.ArrayPool`1\"></see> class.</returns>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Create(System.Int32,System.Int32)\">\r\n      <summary>Creates a new instance of the <see cref=\"T:System.Buffers.ArrayPool`1\"></see> class using the specifed configuration.</summary>\r\n      <param name=\"maxArrayLength\">The maximum length of an array instance that may be stored in the pool.</param>\r\n      <param name=\"maxArraysPerBucket\">The maximum number of array instances that may be stored in each bucket in the pool. The pool groups arrays of similar lengths into buckets for faster access.</param>\r\n      <returns>A new instance of the <see cref=\"System.Buffers.ArrayPool`1\"></see> class with the specified configuration.</returns>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\">\r\n      <summary>Retrieves a buffer that is at least the requested length.</summary>\r\n      <param name=\"minimumLength\">The minimum length of the array.</param>\r\n      <returns>An array of type <see cref=\"T[]\"></see> that is at least <paramref name=\"minimumLength\">minimumLength</paramref> in length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)\">\r\n      <summary>Returns an array to the pool that was previously obtained using the <see cref=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\"></see> method on the same <see cref=\"T:System.Buffers.ArrayPool`1\"></see> instance.</summary>\r\n      <param name=\"array\">A buffer to return to the pool that was previously obtained using the <see cref=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\"></see> method.</param>\r\n      <param name=\"clearArray\">Indicates whether the contents of the buffer should be cleared before reuse. If <paramref name=\"clearArray\">clearArray</paramref> is set to true, and if the pool will store the buffer to enable subsequent reuse, the <see cref=\"M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)\"></see> method will clear the <paramref name=\"array\">array</paramref> of its contents so that a subsequent caller using the <see cref=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\"></see> method will not see the content of the previous caller. If <paramref name=\"clearArray\">clearArray</paramref> is set to false or if the pool will release the buffer, the array&amp;#39;s contents are left unchanged.</param>\r\n    </member>\r\n    <member name=\"P:System.Buffers.ArrayPool`1.Shared\">\r\n      <summary>Gets a shared <see cref=\"T:System.Buffers.ArrayPool`1\"></see> instance.</summary>\r\n      <returns>A shared <see cref=\"System.Buffers.ArrayPool`1\"></see> instance.</returns>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Buffers.4.5.1/lib/netstandard2.0/System.Buffers.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?><doc>\r\n  <assembly>\r\n    <name>System.Buffers</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:System.Buffers.ArrayPool`1\">\r\n      <summary>Provides a resource pool that enables reusing instances of type <see cref=\"T[]\"></see>.</summary>\r\n      <typeparam name=\"T\">The type of the objects that are in the resource pool.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.#ctor\">\r\n      <summary>Initializes a new instance of the <see cref=\"T:System.Buffers.ArrayPool`1\"></see> class.</summary>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Create\">\r\n      <summary>Creates a new instance of the <see cref=\"T:System.Buffers.ArrayPool`1\"></see> class.</summary>\r\n      <returns>A new instance of the <see cref=\"System.Buffers.ArrayPool`1\"></see> class.</returns>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Create(System.Int32,System.Int32)\">\r\n      <summary>Creates a new instance of the <see cref=\"T:System.Buffers.ArrayPool`1\"></see> class using the specifed configuration.</summary>\r\n      <param name=\"maxArrayLength\">The maximum length of an array instance that may be stored in the pool.</param>\r\n      <param name=\"maxArraysPerBucket\">The maximum number of array instances that may be stored in each bucket in the pool. The pool groups arrays of similar lengths into buckets for faster access.</param>\r\n      <returns>A new instance of the <see cref=\"System.Buffers.ArrayPool`1\"></see> class with the specified configuration.</returns>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\">\r\n      <summary>Retrieves a buffer that is at least the requested length.</summary>\r\n      <param name=\"minimumLength\">The minimum length of the array.</param>\r\n      <returns>An array of type <see cref=\"T[]\"></see> that is at least <paramref name=\"minimumLength\">minimumLength</paramref> in length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)\">\r\n      <summary>Returns an array to the pool that was previously obtained using the <see cref=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\"></see> method on the same <see cref=\"T:System.Buffers.ArrayPool`1\"></see> instance.</summary>\r\n      <param name=\"array\">A buffer to return to the pool that was previously obtained using the <see cref=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\"></see> method.</param>\r\n      <param name=\"clearArray\">Indicates whether the contents of the buffer should be cleared before reuse. If <paramref name=\"clearArray\">clearArray</paramref> is set to true, and if the pool will store the buffer to enable subsequent reuse, the <see cref=\"M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)\"></see> method will clear the <paramref name=\"array\">array</paramref> of its contents so that a subsequent caller using the <see cref=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\"></see> method will not see the content of the previous caller. If <paramref name=\"clearArray\">clearArray</paramref> is set to false or if the pool will release the buffer, the array&amp;#39;s contents are left unchanged.</param>\r\n    </member>\r\n    <member name=\"P:System.Buffers.ArrayPool`1.Shared\">\r\n      <summary>Gets a shared <see cref=\"T:System.Buffers.ArrayPool`1\"></see> instance.</summary>\r\n      <returns>A shared <see cref=\"System.Buffers.ArrayPool`1\"></see> instance.</returns>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Buffers.4.5.1/lib/uap10.0.16299/_._",
    "content": ""
  },
  {
    "path": "packages/System.Buffers.4.5.1/ref/net45/System.Buffers.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?><doc>\r\n  <assembly>\r\n    <name>System.Buffers</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:System.Buffers.ArrayPool`1\">\r\n      <summary>Provides a resource pool that enables reusing instances of type <see cref=\"T[]\"></see>.</summary>\r\n      <typeparam name=\"T\">The type of the objects that are in the resource pool.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.#ctor\">\r\n      <summary>Initializes a new instance of the <see cref=\"T:System.Buffers.ArrayPool`1\"></see> class.</summary>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Create\">\r\n      <summary>Creates a new instance of the <see cref=\"T:System.Buffers.ArrayPool`1\"></see> class.</summary>\r\n      <returns>A new instance of the <see cref=\"System.Buffers.ArrayPool`1\"></see> class.</returns>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Create(System.Int32,System.Int32)\">\r\n      <summary>Creates a new instance of the <see cref=\"T:System.Buffers.ArrayPool`1\"></see> class using the specifed configuration.</summary>\r\n      <param name=\"maxArrayLength\">The maximum length of an array instance that may be stored in the pool.</param>\r\n      <param name=\"maxArraysPerBucket\">The maximum number of array instances that may be stored in each bucket in the pool. The pool groups arrays of similar lengths into buckets for faster access.</param>\r\n      <returns>A new instance of the <see cref=\"System.Buffers.ArrayPool`1\"></see> class with the specified configuration.</returns>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\">\r\n      <summary>Retrieves a buffer that is at least the requested length.</summary>\r\n      <param name=\"minimumLength\">The minimum length of the array.</param>\r\n      <returns>An array of type <see cref=\"T[]\"></see> that is at least <paramref name=\"minimumLength\">minimumLength</paramref> in length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)\">\r\n      <summary>Returns an array to the pool that was previously obtained using the <see cref=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\"></see> method on the same <see cref=\"T:System.Buffers.ArrayPool`1\"></see> instance.</summary>\r\n      <param name=\"array\">A buffer to return to the pool that was previously obtained using the <see cref=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\"></see> method.</param>\r\n      <param name=\"clearArray\">Indicates whether the contents of the buffer should be cleared before reuse. If <paramref name=\"clearArray\">clearArray</paramref> is set to true, and if the pool will store the buffer to enable subsequent reuse, the <see cref=\"M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)\"></see> method will clear the <paramref name=\"array\">array</paramref> of its contents so that a subsequent caller using the <see cref=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\"></see> method will not see the content of the previous caller. If <paramref name=\"clearArray\">clearArray</paramref> is set to false or if the pool will release the buffer, the array&amp;#39;s contents are left unchanged.</param>\r\n    </member>\r\n    <member name=\"P:System.Buffers.ArrayPool`1.Shared\">\r\n      <summary>Gets a shared <see cref=\"T:System.Buffers.ArrayPool`1\"></see> instance.</summary>\r\n      <returns>A shared <see cref=\"System.Buffers.ArrayPool`1\"></see> instance.</returns>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Buffers.4.5.1/ref/netcoreapp2.0/_._",
    "content": ""
  },
  {
    "path": "packages/System.Buffers.4.5.1/ref/netstandard1.1/System.Buffers.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?><doc>\r\n  <assembly>\r\n    <name>System.Buffers</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:System.Buffers.ArrayPool`1\">\r\n      <summary>Provides a resource pool that enables reusing instances of type <see cref=\"T[]\"></see>.</summary>\r\n      <typeparam name=\"T\">The type of the objects that are in the resource pool.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.#ctor\">\r\n      <summary>Initializes a new instance of the <see cref=\"T:System.Buffers.ArrayPool`1\"></see> class.</summary>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Create\">\r\n      <summary>Creates a new instance of the <see cref=\"T:System.Buffers.ArrayPool`1\"></see> class.</summary>\r\n      <returns>A new instance of the <see cref=\"System.Buffers.ArrayPool`1\"></see> class.</returns>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Create(System.Int32,System.Int32)\">\r\n      <summary>Creates a new instance of the <see cref=\"T:System.Buffers.ArrayPool`1\"></see> class using the specifed configuration.</summary>\r\n      <param name=\"maxArrayLength\">The maximum length of an array instance that may be stored in the pool.</param>\r\n      <param name=\"maxArraysPerBucket\">The maximum number of array instances that may be stored in each bucket in the pool. The pool groups arrays of similar lengths into buckets for faster access.</param>\r\n      <returns>A new instance of the <see cref=\"System.Buffers.ArrayPool`1\"></see> class with the specified configuration.</returns>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\">\r\n      <summary>Retrieves a buffer that is at least the requested length.</summary>\r\n      <param name=\"minimumLength\">The minimum length of the array.</param>\r\n      <returns>An array of type <see cref=\"T[]\"></see> that is at least <paramref name=\"minimumLength\">minimumLength</paramref> in length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)\">\r\n      <summary>Returns an array to the pool that was previously obtained using the <see cref=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\"></see> method on the same <see cref=\"T:System.Buffers.ArrayPool`1\"></see> instance.</summary>\r\n      <param name=\"array\">A buffer to return to the pool that was previously obtained using the <see cref=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\"></see> method.</param>\r\n      <param name=\"clearArray\">Indicates whether the contents of the buffer should be cleared before reuse. If <paramref name=\"clearArray\">clearArray</paramref> is set to true, and if the pool will store the buffer to enable subsequent reuse, the <see cref=\"M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)\"></see> method will clear the <paramref name=\"array\">array</paramref> of its contents so that a subsequent caller using the <see cref=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\"></see> method will not see the content of the previous caller. If <paramref name=\"clearArray\">clearArray</paramref> is set to false or if the pool will release the buffer, the array&amp;#39;s contents are left unchanged.</param>\r\n    </member>\r\n    <member name=\"P:System.Buffers.ArrayPool`1.Shared\">\r\n      <summary>Gets a shared <see cref=\"T:System.Buffers.ArrayPool`1\"></see> instance.</summary>\r\n      <returns>A shared <see cref=\"System.Buffers.ArrayPool`1\"></see> instance.</returns>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Buffers.4.5.1/ref/netstandard2.0/System.Buffers.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?><doc>\r\n  <assembly>\r\n    <name>System.Buffers</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:System.Buffers.ArrayPool`1\">\r\n      <summary>Provides a resource pool that enables reusing instances of type <see cref=\"T[]\"></see>.</summary>\r\n      <typeparam name=\"T\">The type of the objects that are in the resource pool.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.#ctor\">\r\n      <summary>Initializes a new instance of the <see cref=\"T:System.Buffers.ArrayPool`1\"></see> class.</summary>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Create\">\r\n      <summary>Creates a new instance of the <see cref=\"T:System.Buffers.ArrayPool`1\"></see> class.</summary>\r\n      <returns>A new instance of the <see cref=\"System.Buffers.ArrayPool`1\"></see> class.</returns>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Create(System.Int32,System.Int32)\">\r\n      <summary>Creates a new instance of the <see cref=\"T:System.Buffers.ArrayPool`1\"></see> class using the specifed configuration.</summary>\r\n      <param name=\"maxArrayLength\">The maximum length of an array instance that may be stored in the pool.</param>\r\n      <param name=\"maxArraysPerBucket\">The maximum number of array instances that may be stored in each bucket in the pool. The pool groups arrays of similar lengths into buckets for faster access.</param>\r\n      <returns>A new instance of the <see cref=\"System.Buffers.ArrayPool`1\"></see> class with the specified configuration.</returns>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\">\r\n      <summary>Retrieves a buffer that is at least the requested length.</summary>\r\n      <param name=\"minimumLength\">The minimum length of the array.</param>\r\n      <returns>An array of type <see cref=\"T[]\"></see> that is at least <paramref name=\"minimumLength\">minimumLength</paramref> in length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)\">\r\n      <summary>Returns an array to the pool that was previously obtained using the <see cref=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\"></see> method on the same <see cref=\"T:System.Buffers.ArrayPool`1\"></see> instance.</summary>\r\n      <param name=\"array\">A buffer to return to the pool that was previously obtained using the <see cref=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\"></see> method.</param>\r\n      <param name=\"clearArray\">Indicates whether the contents of the buffer should be cleared before reuse. If <paramref name=\"clearArray\">clearArray</paramref> is set to true, and if the pool will store the buffer to enable subsequent reuse, the <see cref=\"M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)\"></see> method will clear the <paramref name=\"array\">array</paramref> of its contents so that a subsequent caller using the <see cref=\"M:System.Buffers.ArrayPool`1.Rent(System.Int32)\"></see> method will not see the content of the previous caller. If <paramref name=\"clearArray\">clearArray</paramref> is set to false or if the pool will release the buffer, the array&amp;#39;s contents are left unchanged.</param>\r\n    </member>\r\n    <member name=\"P:System.Buffers.ArrayPool`1.Shared\">\r\n      <summary>Gets a shared <see cref=\"T:System.Buffers.ArrayPool`1\"></see> instance.</summary>\r\n      <returns>A shared <see cref=\"System.Buffers.ArrayPool`1\"></see> instance.</returns>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Buffers.4.5.1/ref/uap10.0.16299/_._",
    "content": ""
  },
  {
    "path": "packages/System.Buffers.4.5.1/useSharedDesignerContext.txt",
    "content": ""
  },
  {
    "path": "packages/System.Buffers.4.5.1/version.txt",
    "content": "7601f4f6225089ffb291dc7d58293c7bbf5c5d4f\r\n"
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ThirdPartyNotices.txt",
    "content": "This Microsoft .NET Library may incorporate components from the projects listed\r\nbelow. Microsoft licenses these components under the Microsoft .NET Library\r\nsoftware license terms. The original copyright notices and the licenses under\r\nwhich Microsoft received such components are set forth below for informational\r\npurposes only. Microsoft reserves all rights not expressly granted herein,\r\nwhether by implication, estoppel or otherwise.\r\n\r\n1.\t.NET Core (https://github.com/dotnet/core/)\r\n\r\n.NET Core\r\nCopyright (c) .NET Foundation and Contributors\r\n\r\nThe MIT License (MIT)\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE."
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/dotnet_library_license.txt",
    "content": "\r\nMICROSOFT SOFTWARE LICENSE TERMS\r\n\r\n\r\nMICROSOFT .NET LIBRARY \r\n\r\nThese license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft\r\n\r\n·         updates,\r\n\r\n·         supplements,\r\n\r\n·         Internet-based services, and\r\n\r\n·         support services\r\n\r\nfor this software, unless other terms accompany those items. If so, those terms apply.\r\n\r\nBY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE.\r\n\r\n\r\nIF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE PERPETUAL RIGHTS BELOW.\r\n\r\n1.    INSTALLATION AND USE RIGHTS. \r\n\r\na.    Installation and Use. You may install and use any number of copies of the software to design, develop and test your programs.\r\n\r\nb.    Third Party Programs. The software may include third party programs that Microsoft, not the third party, licenses to you under this agreement. Notices, if any, for the third party program are included for your information only.\r\n\r\n2.    ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.\r\n\r\na.    DISTRIBUTABLE CODE.  The software is comprised of Distributable Code. “Distributable Code” is code that you are permitted to distribute in programs you develop if you comply with the terms below.\r\n\r\ni.      Right to Use and Distribute. \r\n\r\n·         You may copy and distribute the object code form of the software.\r\n\r\n·         Third Party Distribution. You may permit distributors of your programs to copy and distribute the Distributable Code as part of those programs.\r\n\r\nii.    Distribution Requirements. For any Distributable Code you distribute, you must\r\n\r\n·         add significant primary functionality to it in your programs;\r\n\r\n·         require distributors and external end users to agree to terms that protect it at least as much as this agreement;\r\n\r\n·         display your valid copyright notice on your programs; and\r\n\r\n·         indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’ fees, related to the distribution or use of your programs.\r\n\r\niii.   Distribution Restrictions. You may not\r\n\r\n·         alter any copyright, trademark or patent notice in the Distributable Code;\r\n\r\n·         use Microsoft’s trademarks in your programs’ names or in a way that suggests your programs come from or are endorsed by Microsoft;\r\n\r\n·         include Distributable Code in malicious, deceptive or unlawful programs; or\r\n\r\n·         modify or distribute the source code of any Distributable Code so that any part of it becomes subject to an Excluded License. An Excluded License is one that requires, as a condition of use, modification or distribution, that\r\n\r\n·         the code be disclosed or distributed in source code form; or\r\n\r\n·         others have the right to modify it.\r\n\r\n3.    SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not\r\n\r\n·         work around any technical limitations in the software;\r\n\r\n·         reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation;\r\n\r\n·         publish the software for others to copy;\r\n\r\n·         rent, lease or lend the software;\r\n\r\n·         transfer the software or this agreement to any third party; or\r\n\r\n·         use the software for commercial software hosting services.\r\n\r\n4.    BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software.\r\n\r\n5.    DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes.\r\n\r\n6.    EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting.\r\n\r\n7.    SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it.\r\n\r\n8.    ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services.\r\n\r\n9.    APPLICABLE LAW.\r\n\r\na.    United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort.\r\n\r\nb.    Outside the United States. If you acquired the software in any other country, the laws of that country apply.\r\n\r\n10.  LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so.\r\n\r\n11.  DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS OR STATUTORY GUARANTEES UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\r\n\r\nFOR AUSTRALIA – YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW AND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS.\r\n\r\n12.  LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.\r\n\r\nThis limitation applies to\r\n\r\n·         anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and\r\n\r\n·         claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law.\r\n\r\nIt also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages.\r\n\r\nPlease note: As this software is distributed in Quebec, Canada, some of the clauses in this agreement are provided below in French.\r\n\r\nRemarque : Ce logiciel étant distribué au Québec, Canada, certaines des clauses dans ce contrat sont fournies ci-dessous en français.\r\n\r\nEXONÉRATION DE GARANTIE. Le logiciel visé par une licence est offert « tel quel ». Toute utilisation de ce logiciel est à votre seule risque et péril. Microsoft n’accorde aucune autre garantie expresse. Vous pouvez bénéficier de droits additionnels en vertu du droit local sur la protection des consommateurs, que ce contrat ne peut modifier. La ou elles sont permises par le droit locale, les garanties implicites de qualité marchande, d’adéquation à un usage particulier et d’absence de contrefaçon sont exclues.\r\n\r\nLIMITATION DES DOMMAGES-INTÉRÊTS ET EXCLUSION DE RESPONSABILITÉ POUR LES DOMMAGES. Vous pouvez obtenir de Microsoft et de ses fournisseurs une indemnisation en cas de dommages directs uniquement à hauteur de 5,00 $ US. Vous ne pouvez prétendre à aucune indemnisation pour les autres dommages, y compris les dommages spéciaux, indirects ou accessoires et pertes de bénéfices.\r\n\r\nCette limitation concerne :\r\n\r\n·         tout ce qui est relié au logiciel, aux services ou au contenu (y compris le code) figurant sur des sites Internet tiers ou dans des programmes tiers ; et\r\n\r\n·         les réclamations au titre de violation de contrat ou de garantie, ou au titre de responsabilité stricte, de négligence ou d’une autre faute dans la limite autorisée par la loi en vigueur.\r\n\r\nElle s’applique également, même si Microsoft connaissait ou devrait connaître l’éventualité d’un tel dommage. Si votre pays n’autorise pas l’exclusion ou la limitation de responsabilité pour les dommages indirects, accessoires ou de quelque nature que ce soit, il se peut que la limitation ou l’exclusion ci-dessus ne s’appliquera pas à votre égard.\r\n\r\nEFFET JURIDIQUE. Le présent contrat décrit certains droits juridiques. Vous pourriez avoir d’autres droits prévus par les lois de votre pays. Le présent contrat ne modifie pas les droits que vous confèrent les lois de votre pays si celles-ci ne le permettent pas.\r\n\r\n \r\n"
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/lib/MonoAndroid10/_._",
    "content": ""
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/lib/MonoTouch10/_._",
    "content": ""
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/lib/xamarinios10/_._",
    "content": ""
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/lib/xamarinmac20/_._",
    "content": ""
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/lib/xamarintvos10/_._",
    "content": ""
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/lib/xamarinwatchos10/_._",
    "content": ""
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/MonoAndroid10/_._",
    "content": ""
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/MonoTouch10/_._",
    "content": ""
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/System.Diagnostics.Process.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<doc>\r\n  <assembly>\r\n    <name>System.Diagnostics.Process</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\">\r\n      <summary>[SECURITY CRITICAL] Provides a managed wrapper for a process handle.</summary>\r\n    </member>\r\n    <member name=\"M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)\">\r\n      <summary>[SECURITY CRITICAL] Initializes a new instance of the <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> class from the specified handle, indicating whether to release the handle during the finalization phase. </summary>\r\n      <param name=\"existingHandle\">The handle to be wrapped.</param>\r\n      <param name=\"ownsHandle\">true to reliably let <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> release the handle during the finalization phase; otherwise, false.</param>\r\n    </member>\r\n    <member name=\"P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid\"></member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventArgs\">\r\n      <summary>Provides data for the <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> and <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> events.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.DataReceivedEventArgs.Data\">\r\n      <summary>Gets the line of characters that was written to a redirected <see cref=\"T:System.Diagnostics.Process\" /> output stream.</summary>\r\n      <returns>The line that was written by an associated <see cref=\"T:System.Diagnostics.Process\" /> to its redirected <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> or <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventHandler\">\r\n      <summary>Represents the method that will handle the <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> event or <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> event of a <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <param name=\"sender\">The source of the event. </param>\r\n      <param name=\"e\">A <see cref=\"T:System.Diagnostics.DataReceivedEventArgs\" /> that contains the event data. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.Process\">\r\n      <summary>Provides access to local and remote processes and enables you to start and stop local system processes.To browse the .NET Framework source code for this type, see the Reference Source.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.#ctor\">\r\n      <summary>Initializes a new instance of the <see cref=\"T:System.Diagnostics.Process\" /> class.</summary>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.BasePriority\">\r\n      <summary>Gets the base priority of the associated process.</summary>\r\n      <returns>The base priority, which is computed from the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> of the associated process.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or- The process has not started, so there is no process ID. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginErrorReadLine\">\r\n      <summary>Begins asynchronous read operations on the redirected <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream of the application.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginOutputReadLine\">\r\n      <summary>Begins asynchronous read operations on the redirected <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream of the application.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelErrorRead\">\r\n      <summary>Cancels the asynchronous read operation on the redirected <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream of an application.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelOutputRead\">\r\n      <summary>Cancels the asynchronous read operation on the redirected <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream of an application.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose\"></member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose(System.Boolean)\">\r\n      <summary>Release all resources used by this process.</summary>\r\n      <param name=\"disposing\">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.EnableRaisingEvents\">\r\n      <summary>Gets or sets whether the <see cref=\"E:System.Diagnostics.Process.Exited\" /> event should be raised when the process terminates.</summary>\r\n      <returns>true if the <see cref=\"E:System.Diagnostics.Process.Exited\" /> event should be raised when the associated process is terminated (through either an exit or a call to <see cref=\"M:System.Diagnostics.Process.Kill\" />); otherwise, false. The default is false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.EnterDebugMode\">\r\n      <summary>Puts a <see cref=\"T:System.Diagnostics.Process\" /> component in state to interact with operating system processes that run in a special mode by enabling the native property SeDebugPrivilege on the current thread.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.ErrorDataReceived\">\r\n      <summary>Occurs when an application writes to its redirected <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitCode\">\r\n      <summary>Gets the value that the associated process specified when it terminated.</summary>\r\n      <returns>The code that the associated process specified when it terminated.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has not exited.-or- The process <see cref=\"P:System.Diagnostics.Process.Handle\" /> is not valid. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitCode\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.Exited\">\r\n      <summary>Occurs when a process exits.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitTime\">\r\n      <summary>Gets the time that the associated process exited.</summary>\r\n      <returns>A <see cref=\"T:System.DateTime\" /> that indicates when the associated process was terminated.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitTime\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetCurrentProcess\">\r\n      <summary>Gets a new <see cref=\"T:System.Diagnostics.Process\" /> component and associates it with the currently active process.</summary>\r\n      <returns>A new <see cref=\"T:System.Diagnostics.Process\" /> component associated with the process resource that is running the calling application.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32)\">\r\n      <summary>Returns a new <see cref=\"T:System.Diagnostics.Process\" /> component, given the identifier of a process on the local computer.</summary>\r\n      <returns>A <see cref=\"T:System.Diagnostics.Process\" /> component that is associated with the local process resource identified by the <paramref name=\"processId\" /> parameter.</returns>\r\n      <param name=\"processId\">The system-unique identifier of a process resource. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running. The identifier might be expired. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)\">\r\n      <summary>Returns a new <see cref=\"T:System.Diagnostics.Process\" /> component, given a process identifier and the name of a computer on the network.</summary>\r\n      <returns>A <see cref=\"T:System.Diagnostics.Process\" /> component that is associated with a remote process resource identified by the <paramref name=\"processId\" /> parameter.</returns>\r\n      <param name=\"processId\">The system-unique identifier of a process resource. </param>\r\n      <param name=\"machineName\">The name of a computer on the network. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running. The identifier might be expired.-or- The <paramref name=\"machineName\" /> parameter syntax is invalid. The name might have length zero (0). </exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses\">\r\n      <summary>Creates a new <see cref=\"T:System.Diagnostics.Process\" /> component for each process resource on the local computer.</summary>\r\n      <returns>An array of type <see cref=\"T:System.Diagnostics.Process\" /> that represents all the process resources running on the local computer.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses(System.String)\">\r\n      <summary>Creates a new <see cref=\"T:System.Diagnostics.Process\" /> component for each process resource on the specified computer.</summary>\r\n      <returns>An array of type <see cref=\"T:System.Diagnostics.Process\" /> that represents all the process resources running on the specified computer.</returns>\r\n      <param name=\"machineName\">The computer from which to read the list of processes. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid. It might have length zero (0). </exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information. This exception is specific to Windows NT, Windows 2000, and Windows XP. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String)\">\r\n      <summary>Creates an array of new <see cref=\"T:System.Diagnostics.Process\" /> components and associates them with all the process resources on the local computer that share the specified process name.</summary>\r\n      <returns>An array of type <see cref=\"T:System.Diagnostics.Process\" /> that represents the process resources running the specified application or file.</returns>\r\n      <param name=\"processName\">The friendly name of the process. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information. This exception is specific to Windows NT, Windows 2000, and Windows XP. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)\">\r\n      <summary>Creates an array of new <see cref=\"T:System.Diagnostics.Process\" /> components and associates them with all the process resources on a remote computer that share the specified process name.</summary>\r\n      <returns>An array of type <see cref=\"T:System.Diagnostics.Process\" /> that represents the process resources running the specified application or file.</returns>\r\n      <param name=\"processName\">The friendly name of the process. </param>\r\n      <param name=\"machineName\">The name of a computer on the network. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid. It might have length zero (0). </exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information. This exception is specific to Windows NT, Windows 2000, and Windows XP. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.HasExited\">\r\n      <summary>Gets a value indicating whether the associated process has been terminated.</summary>\r\n      <returns>true if the operating system process referenced by the <see cref=\"T:System.Diagnostics.Process\" /> component has terminated; otherwise, false.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with the object. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The exit code for the process could not be retrieved. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.HasExited\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Id\">\r\n      <summary>Gets the unique identifier for the associated process.</summary>\r\n      <returns>The system-generated unique identifier of the process that is referenced by this <see cref=\"T:System.Diagnostics.Process\" /> instance.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process's <see cref=\"P:System.Diagnostics.Process.Id\" /> property has not been set.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Kill\">\r\n      <summary>Immediately stops the associated process.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to call <see cref=\"M:System.Diagnostics.Process.Kill\" /> for a process that is running on a remote computer. The method is available only for processes running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has already exited. -or-There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.LeaveDebugMode\">\r\n      <summary>Takes a <see cref=\"T:System.Diagnostics.Process\" /> component out of the state that lets it interact with operating system processes that run in a special mode.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MachineName\">\r\n      <summary>Gets the name of the computer the associated process is running on.</summary>\r\n      <returns>The name of the computer that the associated process is running on.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MainModule\">\r\n      <summary>Gets the main module for the associated process.</summary>\r\n      <returns>The <see cref=\"T:System.Diagnostics.ProcessModule\" /> that was used to start the process.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MainModule\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A 32-bit process is trying to access the modules of a 64-bit process.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MaxWorkingSet\">\r\n      <summary>Gets or sets the maximum allowable working set size for the associated process.</summary>\r\n      <returns>The maximum working set size that is allowed in memory for the process, in bytes.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The maximum working set size is invalid. It must be greater than or equal to the minimum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MaxWorkingSet\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MinWorkingSet\">\r\n      <summary>Gets or sets the minimum allowable working set size for the associated process.</summary>\r\n      <returns>The minimum working set size that is required in memory for the process, in bytes.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The minimum working set size is invalid. It must be less than or equal to the maximum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MinWorkingSet\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Modules\">\r\n      <summary>Gets the modules that have been loaded by the associated process.</summary>\r\n      <returns>An array of type <see cref=\"T:System.Diagnostics.ProcessModule\" /> that represents the modules that have been loaded by the associated process.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for either the system process or the idle process. These processes do not have modules.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.NonpagedSystemMemorySize64\">\r\n      <summary>Gets the amount of nonpaged system memory allocated for the associated process.</summary>\r\n      <returns>The amount of system memory, in bytes, allocated for the associated process that cannot be written to the virtual memory paging file.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.OnExited\">\r\n      <summary>Raises the <see cref=\"E:System.Diagnostics.Process.Exited\" /> event.</summary>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.OutputDataReceived\">\r\n      <summary>Occurs each time an application writes a line to its redirected <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedMemorySize64\">\r\n      <summary>Gets the amount of paged memory allocated for the associated process.</summary>\r\n      <returns>The amount of memory, in bytes, allocated in the virtual memory paging file for the associated process.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedSystemMemorySize64\">\r\n      <summary>Gets the amount of pageable system memory allocated for the associated process.</summary>\r\n      <returns>The amount of system memory, in bytes, allocated for the associated process that can be written to the virtual memory paging file.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakPagedMemorySize64\">\r\n      <summary>Gets the maximum amount of memory in the virtual memory paging file used by the associated process.</summary>\r\n      <returns>The maximum amount of memory, in bytes, allocated in the virtual memory paging file for the associated process since it was started.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakVirtualMemorySize64\">\r\n      <summary>Gets the maximum amount of virtual memory used by the associated process.</summary>\r\n      <returns>The maximum amount of virtual memory, in bytes, allocated for the associated process since it was started.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakWorkingSet64\">\r\n      <summary>Gets the maximum amount of physical memory used by the associated process.</summary>\r\n      <returns>The maximum amount of physical memory, in bytes, allocated for the associated process since it was started.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityBoostEnabled\">\r\n      <summary>Gets or sets a value indicating whether the associated process priority should temporarily be boosted by the operating system when the main window has the focus.</summary>\r\n      <returns>true if dynamic boosting of the process priority should take place for a process when it is taken out of the wait state; otherwise, false. The default is false.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Priority boost information could not be retrieved from the associated process resource. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero. (The process has not been started.) </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityBoostEnabled\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityClass\">\r\n      <summary>Gets or sets the overall priority category for the associated process.</summary>\r\n      <returns>The priority category for the associated process, from which the <see cref=\"P:System.Diagnostics.Process.BasePriority\" /> of the process is calculated.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero. (The process has not been started.) </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">You have set the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me). These platforms do not support those values for the priority class. </exception>\r\n      <exception cref=\"T:System.ComponentModel.InvalidEnumArgumentException\">Priority class cannot be set because it does not use a valid value, as defined in the <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> enumeration.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivateMemorySize64\">\r\n      <summary>Gets the amount of private memory allocated for the associated process.</summary>\r\n      <returns>The amount of memory, in bytes, allocated for the associated process that cannot be shared with other processes.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\">\r\n      <summary>Gets the privileged processor time for this process.</summary>\r\n      <returns>A <see cref=\"T:System.TimeSpan\" /> that indicates the amount of time that the process has spent running code inside the operating system core.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessName\">\r\n      <summary>Gets the name of the process.</summary>\r\n      <returns>The name that the system uses to identify the process to the user.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process does not have an identifier, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" />.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is not on this computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessorAffinity\">\r\n      <summary>Gets or sets the processors on which the threads in this process can be scheduled to run.</summary>\r\n      <returns>A bitmask representing the processors that the threads in the associated process can run on. The default depends on the number of processors on the computer. The default value is 2 n -1, where n is the number of processors.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero. (The process has not been started.) </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> was not available.-or- The process has exited. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Refresh\">\r\n      <summary>Discards any information about the associated process that has been cached inside the process component.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SafeHandle\">\r\n      <summary>Gets the native handle to this process.</summary>\r\n      <returns>The native handle to this process.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SessionId\">\r\n      <summary>Gets the Terminal Services session identifier for the associated process.</summary>\r\n      <returns>The Terminal Services session identifier for the associated process.</returns>\r\n      <exception cref=\"T:System.NullReferenceException\">There is no session associated with this process.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The <see cref=\"P:System.Diagnostics.Process.SessionId\" /> property is not supported on Windows 98.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardError\">\r\n      <summary>Gets a stream used to read the error output of the application.</summary>\r\n      <returns>A <see cref=\"T:System.IO.StreamReader\" /> that can be used to read the standard error stream of the application.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginErrorReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardInput\">\r\n      <summary>Gets a stream used to write the input of the application.</summary>\r\n      <returns>A <see cref=\"T:System.IO.StreamWriter\" /> that can be used to write the standard input stream of the application.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> stream has not been defined because <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" /> is set to false. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardOutput\">\r\n      <summary>Gets a stream used to read the textual output of the application.</summary>\r\n      <returns>A <see cref=\"T:System.IO.StreamReader\" /> that can be used to read the standard output stream of the application.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginOutputReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start\">\r\n      <summary>Starts (or reuses) the process resource that is specified by the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> property of this <see cref=\"T:System.Diagnostics.Process\" /> component and associates it with the component.</summary>\r\n      <returns>true if a process resource is started; false if no new process resource is started (for example, if an existing process is reused).</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <see cref=\"T:System.Diagnostics.Process\" /> component's <see cref=\"P:System.Diagnostics.Process.StartInfo\" />.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> member of the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> property is true while <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is true. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)\">\r\n      <summary>Starts the process resource that is specified by the parameter containing process start information (for example, the file name of the process to start) and associates the resource with a new <see cref=\"T:System.Diagnostics.Process\" /> component.</summary>\r\n      <returns>A new <see cref=\"T:System.Diagnostics.Process\" /> that is associated with the process resource, or null if no process resource is started. Note that a new process that’s started alongside already running instances of the same process will be independent from the others. In addition, Start may return a non-null Process with its <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> property already set to true. In this case, the started process may have activated an existing instance of itself and then exited.</returns>\r\n      <param name=\"startInfo\">The <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> that contains the information that is used to start the process, including the file name and any command-line arguments. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is also true.-or-The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UserName\" /> property is not null or empty or the <see cref=\"P:System.Diagnostics.ProcessStartInfo.Password\" /> property is not null.</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"startInfo\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The file specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property could not be found.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080. The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String)\">\r\n      <summary>Starts a process resource by specifying the name of a document or application file and associates the resource with a new <see cref=\"T:System.Diagnostics.Process\" /> component.</summary>\r\n      <returns>A new <see cref=\"T:System.Diagnostics.Process\" /> that is associated with the process resource, or null if no process resource is started. Note that a new process that’s started alongside already running instances of the same process will be independent from the others. In addition, Start may return a non-null Process with its <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> property already set to true. In this case, the started process may have activated an existing instance of itself and then exited.</returns>\r\n      <param name=\"fileName\">The name of a document or application file to run in the process. </param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String)\">\r\n      <summary>Starts a process resource by specifying the name of an application and a set of command-line arguments, and associates the resource with a new <see cref=\"T:System.Diagnostics.Process\" /> component.</summary>\r\n      <returns>A new <see cref=\"T:System.Diagnostics.Process\" /> that is associated with the process resource, or null if no process resource is started. Note that a new process that’s started alongside already running instances of the same process will be independent from the others. In addition, Start may return a non-null Process with its <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> property already set to true. In this case, the started process may have activated an existing instance of itself and then exited.</returns>\r\n      <param name=\"fileName\">The name of an application file to run in the process. </param>\r\n      <param name=\"arguments\">Command-line arguments to pass when starting the process. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <paramref name=\"fileName\" /> or <paramref name=\"arguments\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080. The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>Starts a process resource by specifying the name of an application, a user name, a password, and a domain and associates the resource with a new <see cref=\"T:System.Diagnostics.Process\" /> component.</summary>\r\n      <returns>A new <see cref=\"T:System.Diagnostics.Process\" /> that is associated with the process resource, or null if no process resource is started. Note that a new process that’s started alongside already running instances of the same process will be independent from the others. In addition, Start may return a non-null Process with its <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> property already set to true. In this case, the started process may have activated an existing instance of itself and then exited.</returns>\r\n      <param name=\"fileName\">The name of an application file to run in the process.</param>\r\n      <param name=\"userName\">The user name to use when starting the process.</param>\r\n      <param name=\"password\">A <see cref=\"T:System.Security.SecureString\" /> that contains the password to use when starting the process.</param>\r\n      <param name=\"domain\">The domain to use when starting the process.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>Starts a process resource by specifying the name of an application, a set of command-line arguments, a user name, a password, and a domain and associates the resource with a new <see cref=\"T:System.Diagnostics.Process\" /> component.</summary>\r\n      <returns>A new <see cref=\"T:System.Diagnostics.Process\" /> that is associated with the process resource, or null if no process resource is started. Note that a new process that’s started alongside already running instances of the same process will be independent from the others. In addition, Start may return a non-null Process with its <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> property already set to true. In this case, the started process may have activated an existing instance of itself and then exited.</returns>\r\n      <param name=\"fileName\">The name of an application file to run in the process. </param>\r\n      <param name=\"arguments\">Command-line arguments to pass when starting the process. </param>\r\n      <param name=\"userName\">The user name to use when starting the process.</param>\r\n      <param name=\"password\">A <see cref=\"T:System.Security.SecureString\" /> that contains the password to use when starting the process.</param>\r\n      <param name=\"domain\">The domain to use when starting the process.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080. The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartInfo\">\r\n      <summary>Gets or sets the properties to pass to the <see cref=\"M:System.Diagnostics.Process.Start\" /> method of the <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>The <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> that represents the data with which to start the process. These arguments include the name of the executable file or document used to start the process.</returns>\r\n      <exception cref=\"T:System.ArgumentNullException\">The value that specifies the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> is null. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartTime\">\r\n      <summary>Gets the time that the associated process was started.</summary>\r\n      <returns>An object  that indicates when the process started. An exception is thrown if the process is not running.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.StartTime\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or-The process has not been started.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred in the call to the Windows function.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Threads\">\r\n      <summary>Gets the set of threads that are running in the associated process.</summary>\r\n      <returns>An array of type <see cref=\"T:System.Diagnostics.ProcessThread\" /> representing the operating system threads currently running in the associated process.</returns>\r\n      <exception cref=\"T:System.SystemException\">The process does not have an <see cref=\"P:System.Diagnostics.Process.Id\" />, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" /> instance.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.TotalProcessorTime\">\r\n      <summary>Gets the total processor time for this process.</summary>\r\n      <returns>A <see cref=\"T:System.TimeSpan\" /> that indicates the amount of time that the associated process has spent utilizing the CPU. This value is the sum of the <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> and the <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" />.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.TotalProcessorTime\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.UserProcessorTime\">\r\n      <summary>Gets the user processor time for this process.</summary>\r\n      <returns>A <see cref=\"T:System.TimeSpan\" /> that indicates the amount of time that the associated process has spent running code inside the application portion of the process (not inside the operating system core).</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.VirtualMemorySize64\">\r\n      <summary>Gets the amount of the virtual memory allocated for the associated process.</summary>\r\n      <returns>The amount of virtual memory, in bytes, allocated for the associated process.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit\">\r\n      <summary>Instructs the <see cref=\"T:System.Diagnostics.Process\" /> component to wait indefinitely for the associated process to exit.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit\" /> for a process that is running on a remote computer. This method is available only for processes that are running on the local computer. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\">\r\n      <summary>Instructs the <see cref=\"T:System.Diagnostics.Process\" /> component to wait the specified number of milliseconds for the associated process to exit.</summary>\r\n      <returns>true if the associated process has exited; otherwise, false.</returns>\r\n      <param name=\"milliseconds\">The amount of time, in milliseconds, to wait for the associated process to exit. The maximum is the largest possible value of a 32-bit integer, which represents infinity to the operating system. </param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\" /> for a process that is running on a remote computer. This method is available only for processes that are running on the local computer. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.WorkingSet64\">\r\n      <summary>Gets the amount of physical memory allocated for the associated process.</summary>\r\n      <returns>The amount of physical memory, in bytes, allocated for the associated process.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModule\">\r\n      <summary>Represents a.dll or .exe file that is loaded into a particular process.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.BaseAddress\">\r\n      <summary>Gets the memory address where the module was loaded.</summary>\r\n      <returns>The load address of the module.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.EntryPointAddress\">\r\n      <summary>Gets the memory address for the function that runs when the system loads and runs the module.</summary>\r\n      <returns>The entry point of the module.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.FileName\">\r\n      <summary>Gets the full path to the module.</summary>\r\n      <returns>The fully qualified path that defines the location of the module.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleMemorySize\">\r\n      <summary>Gets the amount of memory that is required to load the module.</summary>\r\n      <returns>The size, in bytes, of the memory that the module occupies.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleName\">\r\n      <summary>Gets the name of the process module.</summary>\r\n      <returns>The name of the module.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModule.ToString\">\r\n      <summary>Converts the name of the module to a string.</summary>\r\n      <returns>The value of the <see cref=\"P:System.Diagnostics.ProcessModule.ModuleName\" /> property.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModuleCollection\">\r\n      <summary>Provides a strongly typed collection of <see cref=\"T:System.Diagnostics.ProcessModule\" /> objects.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor\">\r\n      <summary>Initializes a new instance of the <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> class, with no associated <see cref=\"T:System.Diagnostics.ProcessModule\" /> instances.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])\">\r\n      <summary>Initializes a new instance of the <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> class, using the specified array of <see cref=\"T:System.Diagnostics.ProcessModule\" /> instances.</summary>\r\n      <param name=\"processModules\">An array of <see cref=\"T:System.Diagnostics.ProcessModule\" /> instances with which to initialize this <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> instance. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)\">\r\n      <summary>Determines whether the specified process module exists in the collection.</summary>\r\n      <returns>true if the module exists in the collection; otherwise, false.</returns>\r\n      <param name=\"module\">A <see cref=\"T:System.Diagnostics.ProcessModule\" /> instance that indicates the module to find in this collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)\">\r\n      <summary>Copies an array of <see cref=\"T:System.Diagnostics.ProcessModule\" /> instances to the collection, at the specified index.</summary>\r\n      <param name=\"array\">An array of <see cref=\"T:System.Diagnostics.ProcessModule\" /> instances to add to the collection. </param>\r\n      <param name=\"index\">The location at which to add the new instances. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)\">\r\n      <summary>Provides the location of a specified module within the collection.</summary>\r\n      <returns>The zero-based index that defines the location of the module within the <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />.</returns>\r\n      <param name=\"module\">The <see cref=\"T:System.Diagnostics.ProcessModule\" /> whose index is retrieved. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)\">\r\n      <summary>Gets an index for iterating over the set of process modules.</summary>\r\n      <returns>A <see cref=\"T:System.Diagnostics.ProcessModule\" /> that indexes the modules in the collection </returns>\r\n      <param name=\"index\">The zero-based index value of the module in the collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ProcessPriorityClass\">\r\n      <summary>Indicates the priority that the system associates with a process. This value, together with the priority value of each thread of the process, determines each thread's base priority level.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.AboveNormal\">\r\n      <summary>Specifies that the process has priority above Normal but below <see cref=\"F:System.Diagnostics.ProcessPriorityClass.High\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.BelowNormal\">\r\n      <summary>Specifies that the process has priority above Idle but below Normal.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.High\">\r\n      <summary>Specifies that the process performs time-critical tasks that must be executed immediately, such as the Task List dialog, which must respond quickly when called by the user, regardless of the load on the operating system. The threads of the process preempt the threads of normal or idle priority class processes.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Idle\">\r\n      <summary>Specifies that the threads of this process run only when the system is idle, such as a screen saver. The threads of the process are preempted by the threads of any process running in a higher priority class.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Normal\">\r\n      <summary>Specifies that the process has no special scheduling needs.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.RealTime\">\r\n      <summary>Specifies that the process has the highest possible priority.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessStartInfo\">\r\n      <summary>Specifies a set of values that are used when you start a process.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor\">\r\n      <summary>Initializes a new instance of the <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> class without specifying a file name with which to start the process.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)\">\r\n      <summary>Initializes a new instance of the <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> class and specifies a file name such as an application or document with which to start the process.</summary>\r\n      <param name=\"fileName\">An application or document with which to start a process. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)\">\r\n      <summary>Initializes a new instance of the <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> class, specifies an application file name with which to start the process, and specifies a set of command-line arguments to pass to the application.</summary>\r\n      <param name=\"fileName\">An application with which to start a process. </param>\r\n      <param name=\"arguments\">Command-line arguments to pass to the application when the process starts. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Arguments\">\r\n      <summary>Gets or sets the set of command-line arguments to use when starting the application.</summary>\r\n      <returns>A single string containing the arguments to pass to the target application specified in the <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property. The default is an empty string (\"\"). On Windows Vista and earlier versions of the Windows operating system, the length of the arguments added to the length of the full path to the process must be less than 2080. On Windows 7 and later versions, the length must be less than 32699.Arguments are parsed and interpreted by the target application, so must align with the expectations of that application. For.NET applications as demonstrated in the Examples below, spaces are interpreted as a separator between multiple arguments. A single argument that includes spaces must be surrounded by quotation marks, but those quotation marks are not carried through to the target application. In include quotation marks in the final parsed argument, triple-escape each mark.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.CreateNoWindow\">\r\n      <summary>Gets or sets a value indicating whether to start the process in a new window.</summary>\r\n      <returns>true if the process should be started without creating a new window to contain it; otherwise, false. The default is false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Domain\">\r\n      <summary>Gets or sets a value that identifies the domain to use when starting the process. </summary>\r\n      <returns>The Active Directory domain to use when starting the process. The domain property is primarily of interest to users within enterprise environments that use Active Directory.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Environment\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.FileName\">\r\n      <summary>Gets or sets the application or document to start.</summary>\r\n      <returns>The name of the application to start, or the name of a document of a file type that is associated with an application and that has a default open action available to it. The default is an empty string (\"\").</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.LoadUserProfile\">\r\n      <summary>Gets or sets a value that indicates whether the Windows user profile is to be loaded from the registry. </summary>\r\n      <returns>true if the Windows user profile should be loaded; otherwise, false. The default is false.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Password\">\r\n      <summary>Gets or sets a secure string that contains the user password to use when starting the process.</summary>\r\n      <returns>The user password to use when starting the process.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\">\r\n      <summary>Gets or sets a value that indicates whether the error output of an application is written to the <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.</summary>\r\n      <returns>true if error output should be written to <see cref=\"P:System.Diagnostics.Process.StandardError\" />; otherwise, false. The default is false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\">\r\n      <summary>Gets or sets a value indicating whether the input for an application is read from the <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> stream.</summary>\r\n      <returns>true if input should be read from <see cref=\"P:System.Diagnostics.Process.StandardInput\" />; otherwise, false. The default is false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\">\r\n      <summary>Gets or sets a value that indicates whether the textual output of an application is written to the <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream.</summary>\r\n      <returns>true if output should be written to <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />; otherwise, false. The default is false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding\">\r\n      <summary>Gets or sets the preferred encoding for error output.</summary>\r\n      <returns>An object that represents the preferred encoding for error output. The default is null.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding\">\r\n      <summary>Gets or sets the preferred encoding for standard output.</summary>\r\n      <returns>An object that represents the preferred encoding for standard output. The default is null.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UserName\">\r\n      <summary>Gets or sets the user name to be used when starting the process.</summary>\r\n      <returns>The user name to use when starting the process.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\">\r\n      <summary>Gets or sets a value indicating whether to use the operating system shell to start the process.</summary>\r\n      <returns>true if the shell should be used when starting the process; false if the process should be created directly from the executable file. The default is true.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.WorkingDirectory\">\r\n      <summary>When the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property is false, gets or sets the working directory for the process to be started. When <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is true, gets or sets the directory that contains the process to be started.</summary>\r\n      <returns>When <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is true, the fully qualified name of the directory that contains the process to be started. When the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property is false, the working directory for the process to be started. The default is an empty string (\"\").</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThread\">\r\n      <summary>Represents an operating system process thread.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.BasePriority\">\r\n      <summary>Gets the base priority of the thread.</summary>\r\n      <returns>The base priority of the thread, which the operating system computes by combining the process priority class with the priority level of the associated thread.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.CurrentPriority\">\r\n      <summary>Gets the current priority of the thread.</summary>\r\n      <returns>The current priority of the thread, which may deviate from the base priority based on how the operating system is scheduling the thread. The priority may be temporarily boosted for an active thread.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.Id\">\r\n      <summary>Gets the unique identifier of the thread.</summary>\r\n      <returns>The unique identifier associated with a specific thread.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.IdealProcessor\">\r\n      <summary>Sets the preferred processor for this thread to run on.</summary>\r\n      <returns>The preferred processor for the thread, used when the system schedules threads, to determine which processor to run the thread on.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The system could not set the thread to start on the specified processor. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is on a remote computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityBoostEnabled\">\r\n      <summary>Gets or sets a value indicating whether the operating system should temporarily boost the priority of the associated thread whenever the main window of the thread's process receives the focus.</summary>\r\n      <returns>true to boost the thread's priority when the user interacts with the process's interface; otherwise, false. The default is false.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The priority boost information could not be retrieved.-or-The priority boost information could not be set. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is on a remote computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityLevel\">\r\n      <summary>Gets or sets the priority level of the thread.</summary>\r\n      <returns>One of the <see cref=\"T:System.Diagnostics.ThreadPriorityLevel\" /> values, specifying a range that bounds the thread's priority.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The thread priority level information could not be retrieved. -or-The thread priority level could not be set.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is on a remote computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime\">\r\n      <summary>Gets the amount of time that the thread has spent running code inside the operating system core.</summary>\r\n      <returns>A <see cref=\"T:System.TimeSpan\" /> indicating the amount of time that the thread has spent running code inside the operating system core.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The thread time could not be retrieved. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is on a remote computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ProcessorAffinity\">\r\n      <summary>Sets the processors on which the associated thread can run.</summary>\r\n      <returns>An <see cref=\"T:System.IntPtr\" /> that points to a set of bits, each of which represents a processor that the thread can run on.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The processor affinity could not be set. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is on a remote computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThread.ResetIdealProcessor\">\r\n      <summary>Resets the ideal processor for this thread to indicate that there is no single ideal processor. In other words, so that any processor is ideal.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The ideal processor could not be reset. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is on a remote computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartAddress\">\r\n      <summary>Gets the memory address of the function that the operating system called that started this thread.</summary>\r\n      <returns>The thread's starting address, which points to the application-defined function that the thread executes.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is on a remote computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartTime\">\r\n      <summary>Gets the time that the operating system started the thread.</summary>\r\n      <returns>A <see cref=\"T:System.DateTime\" /> representing the time that was on the system when the operating system started the thread.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The thread time could not be retrieved. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is on a remote computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ThreadState\">\r\n      <summary>Gets the current state of this thread.</summary>\r\n      <returns>A <see cref=\"T:System.Diagnostics.ThreadState\" /> that indicates the thread's execution, for example, running, waiting, or terminated.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is on a remote computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.TotalProcessorTime\">\r\n      <summary>Gets the total amount of time that this thread has spent using the processor.</summary>\r\n      <returns>A <see cref=\"T:System.TimeSpan\" /> that indicates the amount of time that the thread has had control of the processor.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The thread time could not be retrieved. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is on a remote computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.UserProcessorTime\">\r\n      <summary>Gets the amount of time that the associated thread has spent running code inside the application.</summary>\r\n      <returns>A <see cref=\"T:System.TimeSpan\" /> indicating the amount of time that the thread has spent running code inside the application, as opposed to inside the operating system core.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The thread time could not be retrieved. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is on a remote computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.WaitReason\">\r\n      <summary>Gets the reason that the thread is waiting.</summary>\r\n      <returns>A <see cref=\"T:System.Diagnostics.ThreadWaitReason\" /> representing the reason that the thread is in the wait state.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The thread is not in the wait state. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is on a remote computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThreadCollection\">\r\n      <summary>Provides a strongly typed collection of <see cref=\"T:System.Diagnostics.ProcessThread\" /> objects.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor\">\r\n      <summary>Initializes a new instance of the <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> class, with no associated <see cref=\"T:System.Diagnostics.ProcessThread\" /> instances.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])\">\r\n      <summary>Initializes a new instance of the <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> class, using the specified array of <see cref=\"T:System.Diagnostics.ProcessThread\" /> instances.</summary>\r\n      <param name=\"processThreads\">An array of <see cref=\"T:System.Diagnostics.ProcessThread\" /> instances with which to initialize this <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> instance. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)\">\r\n      <summary>Appends a process thread to the collection.</summary>\r\n      <returns>The zero-based index of the thread in the collection.</returns>\r\n      <param name=\"thread\">The thread to add to the collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)\">\r\n      <summary>Determines whether the specified process thread exists in the collection.</summary>\r\n      <returns>true if the thread exists in the collection; otherwise, false.</returns>\r\n      <param name=\"thread\">A <see cref=\"T:System.Diagnostics.ProcessThread\" /> instance that indicates the thread to find in this collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)\">\r\n      <summary>Copies an array of <see cref=\"T:System.Diagnostics.ProcessThread\" /> instances to the collection, at the specified index.</summary>\r\n      <param name=\"array\">An array of <see cref=\"T:System.Diagnostics.ProcessThread\" /> instances to add to the collection. </param>\r\n      <param name=\"index\">The location at which to add the new instances. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)\">\r\n      <summary>Provides the location of a specified thread within the collection.</summary>\r\n      <returns>The zero-based index that defines the location of the thread within the <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />.</returns>\r\n      <param name=\"thread\">The <see cref=\"T:System.Diagnostics.ProcessThread\" /> whose index is retrieved. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)\">\r\n      <summary>Inserts a process thread at the specified location in the collection.</summary>\r\n      <param name=\"index\">The zero-based index indicating the location at which to insert the thread. </param>\r\n      <param name=\"thread\">The thread to insert into the collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)\">\r\n      <summary>Gets an index for iterating over the set of process threads.</summary>\r\n      <returns>A <see cref=\"T:System.Diagnostics.ProcessThread\" /> that indexes the threads in the collection.</returns>\r\n      <param name=\"index\">The zero-based index value of the thread in the collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)\">\r\n      <summary>Deletes a process thread from the collection.</summary>\r\n      <param name=\"thread\">The thread to remove from the collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ThreadPriorityLevel\">\r\n      <summary>Specifies the priority level of a thread.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.AboveNormal\">\r\n      <summary>Specifies one step above the normal priority for the associated <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.BelowNormal\">\r\n      <summary>Specifies one step below the normal priority for the associated <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Highest\">\r\n      <summary>Specifies highest priority. This is two steps above the normal priority for the associated <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Idle\">\r\n      <summary>Specifies idle priority. This is the lowest possible priority value of all threads, independent of the value of the associated <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Lowest\">\r\n      <summary>Specifies lowest priority. This is two steps below the normal priority for the associated <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Normal\">\r\n      <summary>Specifies normal priority for the associated <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.TimeCritical\">\r\n      <summary>Specifies time-critical priority. This is the highest priority of all threads, independent of the value of the associated <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadState\">\r\n      <summary>Specifies the current execution state of the thread.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Initialized\">\r\n      <summary>A state that indicates the thread has been initialized, but has not yet started.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Ready\">\r\n      <summary>A state that indicates the thread is waiting to use a processor because no processor is free. The thread is prepared to run on the next available processor.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Running\">\r\n      <summary>A state that indicates the thread is currently using a processor.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Standby\">\r\n      <summary>A state that indicates the thread is about to use a processor. Only one thread can be in this state at a time.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Terminated\">\r\n      <summary>A state that indicates the thread has finished executing and has exited.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Transition\">\r\n      <summary>A state that indicates the thread is waiting for a resource, other than the processor, before it can execute. For example, it might be waiting for its execution stack to be paged in from disk.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Unknown\">\r\n      <summary>The state of the thread is unknown.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Wait\">\r\n      <summary>A state that indicates the thread is not ready to use the processor because it is waiting for a peripheral operation to complete or a resource to become free. When the thread is ready, it will be rescheduled.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadWaitReason\">\r\n      <summary>Specifies the reason a thread is waiting.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairHigh\">\r\n      <summary>The thread is waiting for event pair high.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairLow\">\r\n      <summary>The thread is waiting for event pair low.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.ExecutionDelay\">\r\n      <summary>Thread execution is delayed.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Executive\">\r\n      <summary>The thread is waiting for the scheduler.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.FreePage\">\r\n      <summary>The thread is waiting for a free virtual memory page.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReceive\">\r\n      <summary>The thread is waiting for a local procedure call to arrive.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReply\">\r\n      <summary>The thread is waiting for reply to a local procedure call to arrive.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageIn\">\r\n      <summary>The thread is waiting for a virtual memory page to arrive in memory.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageOut\">\r\n      <summary>The thread is waiting for a virtual memory page to be written to disk.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Suspended\">\r\n      <summary>Thread execution is suspended.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.SystemAllocation\">\r\n      <summary>The thread is waiting for system allocation.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Unknown\">\r\n      <summary>The thread is waiting for an unknown reason.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.UserRequest\">\r\n      <summary>The thread is waiting for a user request.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.VirtualMemory\">\r\n      <summary>The thread is waiting for the system to allocate virtual memory.</summary>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/de/System.Diagnostics.Process.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<doc>\r\n  <assembly>\r\n    <name>System.Diagnostics.Process</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\">\r\n      <summary>[SICHERHEITSRELEVANT] Stellt einen verwalteten Wrapper für ein Prozesshandle bereit.</summary>\r\n    </member>\r\n    <member name=\"M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)\">\r\n      <summary>[SICHERHEITSRELEVANT] Initialisiert eine neue Instanz der <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" />-Klasse aus dem angegebenen Handle und gibt an, ob das Handle in der Abschlussphase freigegeben werden soll. </summary>\r\n      <param name=\"existingHandle\">Das zu umschließende Handle.</param>\r\n      <param name=\"ownsHandle\">true, wenn <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> das Handle während der Abschlussphase zuverlässig freigeben soll, andernfalls false.</param>\r\n    </member>\r\n    <member name=\"P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid\"></member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventArgs\">\r\n      <summary>Stellt Daten für das <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" />-Ereignis und das <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" />-Ereignis bereit.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.DataReceivedEventArgs.Data\">\r\n      <summary>Ruft die Zeile von Zeichen ab, die in einen umgeleiteten <see cref=\"T:System.Diagnostics.Process\" />-Ausgabestream geschrieben wurde.</summary>\r\n      <returns>Die Zeile, die von einem zugeordneten <see cref=\"T:System.Diagnostics.Process\" /> in seinen umgeleiteten <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />-Stream oder <see cref=\"P:System.Diagnostics.Process.StandardError\" />-Stream geschrieben wurde.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventHandler\">\r\n      <summary>Stellt die Methode dar, die das <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" />-Ereignis oder das <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" />-Ereignis eines <see cref=\"T:System.Diagnostics.Process\" /> behandelt.</summary>\r\n      <param name=\"sender\">Die Quelle des Ereignisses. </param>\r\n      <param name=\"e\">Ein <see cref=\"T:System.Diagnostics.DataReceivedEventArgs\" />, das die Ereignisdaten enthält. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.Process\">\r\n      <summary>Ermöglicht den Zugriff auf lokale Prozesse und Remoteprozesse und das Starten und Anhalten lokaler Systemprozesse.Informationen zum Durchsuchen des .NET Framework-Quellcodes für diesen Typ finden Sie in der Verweisquelle.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.#ctor\">\r\n      <summary>Initialisiert eine neue Instanz der <see cref=\"T:System.Diagnostics.Process\" />-Klasse.</summary>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.BasePriority\">\r\n      <summary>Ruft die Basispriorität des zugeordneten Prozesses ab.</summary>\r\n      <returns>Die Basispriorität, die anhand der <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> des zugeordneten Prozesses berechnet wird.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or- The process has not started, so there is no process ID. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginErrorReadLine\">\r\n      <summary>Startet asynchrone Lesevorgänge im umgeleiteten <see cref=\"P:System.Diagnostics.Process.StandardError\" />-Stream der Anwendung.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginOutputReadLine\">\r\n      <summary>Startet asynchrone Lesevorgänge im umgeleiteten <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />-Stream der Anwendung.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelErrorRead\">\r\n      <summary>Bricht den asynchronen Lesevorgang im umgeleiteten <see cref=\"P:System.Diagnostics.Process.StandardError\" />-Stream einer Anwendung ab.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelOutputRead\">\r\n      <summary>Bricht den asynchronen Lesevorgang im umgeleiteten <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />-Stream einer Anwendung ab.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose\"></member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose(System.Boolean)\">\r\n      <summary>Gibt alle von diesem Prozess verwendeten Ressourcen frei.</summary>\r\n      <param name=\"disposing\">true, um sowohl verwaltete als auch nicht verwaltete Ressourcen freizugeben, false, um ausschließlich nicht verwaltete Ressourcen freizugeben. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.EnableRaisingEvents\">\r\n      <summary>Ruft ab oder legt fest, ob beim Beenden des Prozesses das <see cref=\"E:System.Diagnostics.Process.Exited\" />-Ereignis ausgelöst werden soll.</summary>\r\n      <returns>true, wenn das <see cref=\"E:System.Diagnostics.Process.Exited\" />-Ereignis ausgelöst werden soll, wenn der zugeordnete Prozess beendet wird (entweder durch Beenden oder einen Aufruf von <see cref=\"M:System.Diagnostics.Process.Kill\" />); andernfalls false.Die Standardeinstellung ist false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.EnterDebugMode\">\r\n      <summary>Versetzt durch Aktivieren der systemeigenen <see cref=\"T:System.Diagnostics.Process\" />-Eigenschaft für den aktuellen Thread eine SeDebugPrivilege-Komponente in einen Zustand, in dem sie mit Betriebssystemprozessen interagieren kann, die in einem speziellen Modus ausgeführt werden.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.ErrorDataReceived\">\r\n      <summary>Tritt auf, wenn eine Anwendung in seinen umgeleiteten <see cref=\"P:System.Diagnostics.Process.StandardError\" />-Stream schreibt.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitCode\">\r\n      <summary>Ruft den Wert ab, der vom zugeordneten Prozess beim Beenden angegeben wurde.</summary>\r\n      <returns>Der Code, der vom zugeordneten Prozess beim Beenden angegeben wurde.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has not exited.-or- The process <see cref=\"P:System.Diagnostics.Process.Handle\" /> is not valid. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitCode\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.Exited\">\r\n      <summary>Tritt beim Beenden eines Prozesses ein.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitTime\">\r\n      <summary>Ruft den Zeitpunkt ab, zu dem der zugeordnete Prozess beendet wurde.</summary>\r\n      <returns>Eine <see cref=\"T:System.DateTime\" />, die angibt, wann der zugeordnete Prozess beendet wurde.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetCurrentProcess\">\r\n      <summary>Ruft eine neue <see cref=\"T:System.Diagnostics.Process\" />-Komponente ab und ordnet diese dem gegenwärtig aktiven Prozess zu.</summary>\r\n      <returns>Eine neue <see cref=\"T:System.Diagnostics.Process\" />-Komponente, die der Prozessressource zugeordnet ist, die die aufrufende Anwendung ausführt.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32)\">\r\n      <summary>Gibt eine neue <see cref=\"T:System.Diagnostics.Process\" />-Komponente zurück, wenn der Bezeichner eines Prozesses auf dem lokalen Computer angegeben ist.</summary>\r\n      <returns>Eine <see cref=\"T:System.Diagnostics.Process\" />-Komponente, die der durch den <paramref name=\"processId\" />-Parameter bezeichneten lokalen Prozessressource zugeordnet ist.</returns>\r\n      <param name=\"processId\">Der systemweit eindeutige Bezeichner einer Prozessressource. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)\">\r\n      <summary>Gibt eine neue <see cref=\"T:System.Diagnostics.Process\" />-Komponente zurück, wenn die Prozess-ID und der Name des Computers im Netzwerk angegeben sind.</summary>\r\n      <returns>Eine <see cref=\"T:System.Diagnostics.Process\" />-Komponente, die der durch den <paramref name=\"processId\" />-Parameter bezeichneten Remoteprozessressource zugeordnet ist.</returns>\r\n      <param name=\"processId\">Der systemweit eindeutige Bezeichner einer Prozessressource. </param>\r\n      <param name=\"machineName\">Der Name eines Computers im Netzwerk. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.-or- The <paramref name=\"machineName\" /> parameter syntax is invalid.The name might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses\">\r\n      <summary>Erstellt eine neue <see cref=\"T:System.Diagnostics.Process\" />-Komponente für jede Prozessressource auf dem lokalen Computer.</summary>\r\n      <returns>Ein Array vom Typ <see cref=\"T:System.Diagnostics.Process\" />, das alle auf dem lokalen Computer ausgeführten Prozessressourcen darstellt.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses(System.String)\">\r\n      <summary>Erstellt eine neue <see cref=\"T:System.Diagnostics.Process\" />-Komponente für jede Prozessressource auf dem lokalen Computer.</summary>\r\n      <returns>Ein Array vom Typ <see cref=\"T:System.Diagnostics.Process\" />, das alle auf dem angegebenen Computer ausgeführten Prozessressourcen darstellt.</returns>\r\n      <param name=\"machineName\">Der Computer, von dem die Liste der Prozesse gelesen werden soll. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String)\">\r\n      <summary>Erstellt ein Array neuer <see cref=\"T:System.Diagnostics.Process\" />-Komponenten und ordnet diese allen Prozessressourcen auf dem lokalen Computer zu, die den angegebenen Prozessnamen gemeinsam verwenden.</summary>\r\n      <returns>Ein Array vom Typ <see cref=\"T:System.Diagnostics.Process\" />, das die Prozessressourcen darstellt, die die angegebene Anwendung oder Datei ausführen.</returns>\r\n      <param name=\"processName\">Der angezeigte Name des Prozesses. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)\">\r\n      <summary>Erstellt ein Array neuer <see cref=\"T:System.Diagnostics.Process\" />-Komponenten und ordnet diese allen Prozessressourcen auf einem Remotecomputer zu, die den angegebenen Prozessnamen gemeinsam verwenden.</summary>\r\n      <returns>Ein Array vom Typ <see cref=\"T:System.Diagnostics.Process\" />, das die Prozessressourcen darstellt, die die angegebene Anwendung oder Datei ausführen.</returns>\r\n      <param name=\"processName\">Der angezeigte Name des Prozesses. </param>\r\n      <param name=\"machineName\">Der Name eines Computers im Netzwerk. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.HasExited\">\r\n      <summary>Ruft einen Wert ab, der angibt, ob der zugehörige Prozess beendet wurde.</summary>\r\n      <returns>true, wenn der Betriebssystemprozess, auf den die <see cref=\"T:System.Diagnostics.Process\" />-Komponente verweist, beendet wurde; andernfalls false.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with the object. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The exit code for the process could not be retrieved. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.HasExited\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Id\">\r\n      <summary>Ruft den eindeutigen Bezeichner für den zugeordneten Prozess ab.</summary>\r\n      <returns>Der vom System generierte eindeutige Bezeichner des Prozesses, auf den von dieser <see cref=\"T:System.Diagnostics.Process\" />-Instanz verwiesen wird.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process's <see cref=\"P:System.Diagnostics.Process.Id\" /> property has not been set.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Kill\">\r\n      <summary>Hält den zugeordneten Prozess sofort an.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to call <see cref=\"M:System.Diagnostics.Process.Kill\" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has already exited. -or-There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.LeaveDebugMode\">\r\n      <summary>Beendet den Zustand einer <see cref=\"T:System.Diagnostics.Process\" />-Komponente, in dem sie mit Betriebssystemprozessen interagieren kann, die in einem speziellen Modus ausgeführt werden.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MachineName\">\r\n      <summary>Ruft den Namen des Computers ab, auf dem der zugeordnete Prozess ausgeführt wird.</summary>\r\n      <returns>Der Name des Computers, auf dem der zugeordnete Prozess ausgeführt wird.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MainModule\">\r\n      <summary>Ruft das Hauptmodul für den zugeordneten Prozess ab.</summary>\r\n      <returns>Das zum Starten des Prozesses verwendete <see cref=\"T:System.Diagnostics.ProcessModule\" />.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MainModule\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A 32-bit process is trying to access the modules of a 64-bit process.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MaxWorkingSet\">\r\n      <summary>Ruft die maximal zulässige Workingsetgröße für den zugeordneten Prozess ab oder legt diese fest.</summary>\r\n      <returns>Die im Speicher maximal zulässige Workingsetgröße für den Prozess in Bytes.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MaxWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MinWorkingSet\">\r\n      <summary>Ruft die minimale zulässige Workingsetgröße für den zugeordneten Prozess ab oder legt diese fest.</summary>\r\n      <returns>Die im Speicher mindestens erforderliche Workingsetgröße für den Prozess in Bytes.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MinWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Modules\">\r\n      <summary>Ruft die Module ab, die vom zugeordneten Prozess geladen wurden.</summary>\r\n      <returns>Ein Array vom Typ <see cref=\"T:System.Diagnostics.ProcessModule\" />, das die vom zugeordneten Prozess geladenen Module darstellt.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for either the system process or the idle process.These processes do not have modules.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.NonpagedSystemMemorySize64\">\r\n      <summary>Ruft die Menge des für den zugeordneten Prozess belegten nicht ausgelagerten Systemspeichers ab.</summary>\r\n      <returns>Der Anteil am Systemspeicher in Bytes, der für den zugeordneten Prozess reserviert ist und der nicht in die Auslagerungsdatei des virtuellen Speichers geschrieben werden kann.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.OnExited\">\r\n      <summary>Löst das <see cref=\"E:System.Diagnostics.Process.Exited\" />-Ereignis aus.</summary>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.OutputDataReceived\">\r\n      <summary>Tritt jedes Mal auf, wenn eine Anwendung eine Zeile in ihren umgeleiteten <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />-Stream schreibt.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedMemorySize64\">\r\n      <summary>Ruft die Größe des ausgelagerten Speichers ab, der für den zugeordneten Prozess belegt wird.</summary>\r\n      <returns>Die Größe des Arbeitsspeichers in Bytes, der für den zugeordneten Prozess in der Auslagerungsdatei des virtuellen Arbeitsspeichers belegt wird.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedSystemMemorySize64\">\r\n      <summary>Ruft die Menge des für den zugeordneten Prozess belegten auslagerbaren Systemspeichers ab.</summary>\r\n      <returns>Der Anteil am Systemspeicher in Bytes, der für den zugeordneten Prozess belegt wird und der in die Auslagerungsdatei des virtuellen Speichers geschrieben werden kann.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakPagedMemorySize64\">\r\n      <summary>Ruft die vom zugeordneten Prozess verwendete maximale Speichergröße in der Auslagerungsdatei des virtuellen Arbeitsspeichers ab.</summary>\r\n      <returns>Die maximale Größe des Arbeitsspeichers in Bytes, der seit dem Starten für den zugeordneten Prozess in der Auslagerungsdatei des virtuellen Arbeitsspeichers belegt wird.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakVirtualMemorySize64\">\r\n      <summary>Ruft die maximale Größe des virtuellen Speichers ab, der vom zugeordneten Prozess verwendet wird.</summary>\r\n      <returns>Die maximale Größe des virtuellen Arbeitsspeichers in Bytes, der für den zugeordneten Prozess seit dem Starten belegt wird.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakWorkingSet64\">\r\n      <summary>Ruft die maximale Größe des physischen Speichers ab, der vom zugeordneten Prozess verwendet wird.</summary>\r\n      <returns>Die maximale Größe des physischen Speichers in Bytes, der für den zugeordneten Prozess seit dem Starten belegt wird.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityBoostEnabled\">\r\n      <summary>Ruft einen Wert ab, der angibt, ob die zugeordnete Prozesspriorität durch das Betriebssystem vorübergehend erhöht werden soll, wenn das Hauptfenster den Fokus besitzt, oder legt diesen fest.</summary>\r\n      <returns>true, wenn die Prozesspriorität eines Prozesses dynamisch erhöht werden soll, wenn dieser den Wartezustand verlässt; andernfalls false.Die Standardeinstellung ist false.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Priority boost information could not be retrieved from the associated process resource. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityBoostEnabled\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityClass\">\r\n      <summary>Ruft die allgemeine Prioritätskategorie für den zugeordneten Prozess ab oder legt diese fest.</summary>\r\n      <returns>Die Prioritätskategorie für den zugeordneten Prozess, aus der die <see cref=\"P:System.Diagnostics.Process.BasePriority\" /> des Prozesses berechnet wird.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">You have set the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>\r\n      <exception cref=\"T:System.ComponentModel.InvalidEnumArgumentException\">Priority class cannot be set because it does not use a valid value, as defined in the <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> enumeration.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivateMemorySize64\">\r\n      <summary>Ruft die Größe des privaten Speichers ab, der für den zugeordneten Prozess belegt wird.</summary>\r\n      <returns>Die Größe des Speichers in Bytes, der für den zugeordneten Prozess belegt wird und nicht mit anderen Prozessen gemeinsam genutzt werden kann.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\">\r\n      <summary>Ruft die privilegierte Prozessorzeit für diesen Prozess ab.</summary>\r\n      <returns>Eine <see cref=\"T:System.TimeSpan\" />, die angibt, wie lange der Prozess im Betriebssystemkern Code ausgeführt hat.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessName\">\r\n      <summary>Ruft den Namen des Prozesses ab.</summary>\r\n      <returns>Der Name, mit dem das System den Prozess für den Benutzer kennzeichnet.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process does not have an identifier, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" />.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is not on this computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessorAffinity\">\r\n      <summary>Ruft die Prozessoren ab, auf denen die Ausführung der Threads in diesem Prozess geplant werden kann, oder legt diese fest.</summary>\r\n      <returns>Eine Bitmaske, die angibt, auf welchen Prozessoren die Threads im zugeordneten Prozess ausgeführt werden können.Der Standardwert hängt von der Anzahl der Prozessoren des Computers ab.Der Standardwert ist 2n -1, wobei n die Anzahl der Prozessoren ist.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> was not available.-or- The process has exited. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Refresh\">\r\n      <summary>Verwirft alle Informationen über den zugeordneten Prozess, die in der Prozesskomponente zwischengespeichert waren.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SafeHandle\">\r\n      <summary>Ruft das systemeigene Handle dieses Prozesses ab.</summary>\r\n      <returns>Das systemeigene Handle dieses Prozesses.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SessionId\">\r\n      <summary>Ruft die Terminaldienste-Sitzungs-ID für den zugeordneten Prozess ab.</summary>\r\n      <returns>Die Terminaldienste-Sitzungs-ID für den zugeordneten Prozess.</returns>\r\n      <exception cref=\"T:System.NullReferenceException\">There is no session associated with this process.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The <see cref=\"P:System.Diagnostics.Process.SessionId\" /> property is not supported on Windows 98.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardError\">\r\n      <summary>Ruft einen Stream ab, mit dem die Fehlerausgabe der Anwendung gelesen wird.</summary>\r\n      <returns>Ein <see cref=\"T:System.IO.StreamReader\" /> zum Lesen des Standardfehlerstreams der Anwendung.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginErrorReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardInput\">\r\n      <summary>Ruft einen Stream ab, in den die Eingaben der Anwendung geschrieben werden.</summary>\r\n      <returns>Ein <see cref=\"T:System.IO.StreamWriter\" /> zum Schreiben des Standardeingabestreams der Anwendung.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> stream has not been defined because <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" /> is set to false. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardOutput\">\r\n      <summary>Ruft einen Stream ab, der dazu verwendet wird, die Textausgabe der Anwendung zu lesen.</summary>\r\n      <returns>Ein <see cref=\"T:System.IO.StreamReader\" /> zum Lesen des Standardausgabestreams der Anwendung.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginOutputReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start\">\r\n      <summary>Startet die von der <see cref=\"P:System.Diagnostics.Process.StartInfo\" />-Eigenschaft dieser <see cref=\"T:System.Diagnostics.Process\" />-Komponente angegebene Prozessressource (oder verwendet sie erneut) und ordnet diese der Komponente zu.</summary>\r\n      <returns>true, wenn eine Prozessressource gestartet wird. false, wenn keine neue Prozessressource gestartet wird, sondern z. B. eine vorhandene Prozessressource wiederverwendet wird.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <see cref=\"T:System.Diagnostics.Process\" /> component's <see cref=\"P:System.Diagnostics.Process.StartInfo\" />.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> member of the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> property is true while <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is true. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)\">\r\n      <summary>Startet die Prozessressource, die durch den Parameter mit den Startinformationen für den Prozess angegeben wird (z. B. den Dateinamen des zu startenden Prozesses), und ordnet die Ressource einer neuen <see cref=\"T:System.Diagnostics.Process\" /> -Komponente zu.</summary>\r\n      <returns>Ein neuer <see cref=\"T:System.Diagnostics.Process\" />, der der Prozessressource zugeordnet ist oder null, wenn keine Prozessressource gestartet wurde.Beachten Sie, dass ein neuer Prozess, der parallel zu bereits ausgeführten Instanzen des gleichen Prozesses gestartet wird, unabhängig von den anderen Instanzen ist.Außerdem gibt „Start“ möglicherweise einen nicht leeren (nicht NULL) Prozess zurück, dessen Eigenschaft <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> bereits auf true festgelegt ist.In diesem Fall hat der gestartete Prozess möglicherweise eine vorhandene Instanz seiner selbst aktiviert und sich dann beendet.</returns>\r\n      <param name=\"startInfo\">Die <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />, die die Informationen zum Starten des Prozesses enthält, einschließlich Dateiname und Befehlszeilenargumente. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is also true.-or-The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UserName\" /> property is not null or empty or the <see cref=\"P:System.Diagnostics.ProcessStartInfo.Password\" /> property is not null.</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"startInfo\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The file specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property could not be found.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String)\">\r\n      <summary>Startet eine Prozessressource, indem der Name eines Dokuments oder einer Anwendungsdatei angegeben wird, und ordnet die Ressource einer neuen <see cref=\"T:System.Diagnostics.Process\" />-Komponente zu.</summary>\r\n      <returns>Ein neuer <see cref=\"T:System.Diagnostics.Process\" />, der der Prozessressource zugeordnet ist oder null, wenn keine Prozessressource gestartet wurde.Beachten Sie, dass ein neuer Prozess, der parallel zu bereits ausgeführten Instanzen des gleichen Prozesses gestartet wird, unabhängig von den anderen Instanzen ist.Außerdem gibt „Start“ möglicherweise einen nicht leeren (nicht NULL) Prozess zurück, dessen Eigenschaft <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> bereits auf true festgelegt ist.In diesem Fall hat der gestartete Prozess möglicherweise eine vorhandene Instanz seiner selbst aktiviert und sich dann beendet.</returns>\r\n      <param name=\"fileName\">Der Name eines Dokuments oder einer Anwendungsdatei, das bzw. die im Prozess ausgeführt werden soll. </param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String)\">\r\n      <summary>Startet eine Prozessressource durch Angeben des Namens einer Anwendung und einer Reihe von Befehlszeilenargumenten und ordnet die Ressource einer neuen <see cref=\"T:System.Diagnostics.Process\" />-Komponente zu.</summary>\r\n      <returns>Ein neuer <see cref=\"T:System.Diagnostics.Process\" />, der der Prozessressource zugeordnet ist oder null, wenn keine Prozessressource gestartet wurde.Beachten Sie, dass ein neuer Prozess, der parallel zu bereits ausgeführten Instanzen des gleichen Prozesses gestartet wird, unabhängig von den anderen Instanzen ist.Außerdem gibt „Start“ möglicherweise einen nicht leeren (nicht NULL) Prozess zurück, dessen Eigenschaft <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> bereits auf true festgelegt ist.In diesem Fall hat der gestartete Prozess möglicherweise eine vorhandene Instanz seiner selbst aktiviert und sich dann beendet.</returns>\r\n      <param name=\"fileName\">Der Name einer Anwendungsdatei, die in dem Prozess ausgeführt werden soll. </param>\r\n      <param name=\"arguments\">Befehlszeilenargumente, die beim Starten des Prozesses übergeben werden sollen. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <paramref name=\"fileName\" /> or <paramref name=\"arguments\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>Startet eine Prozessressource durch Angeben des Namens einer Anwendung, eines Benutzernamens und einer Domäne und ordnet die Ressource einer neuen <see cref=\"T:System.Diagnostics.Process\" />-Komponente zu.</summary>\r\n      <returns>Ein neuer <see cref=\"T:System.Diagnostics.Process\" />, der der Prozessressource zugeordnet ist oder null, wenn keine Prozessressource gestartet wurde.Beachten Sie, dass ein neuer Prozess, der parallel zu bereits ausgeführten Instanzen des gleichen Prozesses gestartet wird, unabhängig von den anderen Instanzen ist.Außerdem gibt „Start“ möglicherweise einen nicht leeren (nicht NULL) Prozess zurück, dessen Eigenschaft <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> bereits auf true festgelegt ist.In diesem Fall hat der gestartete Prozess möglicherweise eine vorhandene Instanz seiner selbst aktiviert und sich dann beendet.</returns>\r\n      <param name=\"fileName\">Der Name einer Anwendungsdatei, die in dem Prozess ausgeführt werden soll.</param>\r\n      <param name=\"userName\">Der beim Starten des Prozesses zu verwendende Benutzername.</param>\r\n      <param name=\"password\">Eine <see cref=\"T:System.Security.SecureString\" />, die das beim Starten des Prozesses zu verwendende Kennwort enthält.</param>\r\n      <param name=\"domain\">Die Domäne, die beim Starten des Prozesses verwendet werden soll.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>Startet eine Prozessressource durch Angeben des Namens einer Anwendung und einer Reihe von Befehlszeilenargumenten, eines Benutzernamens, eines Kennworts und einer Domäne und ordnet die Ressource einer neuen <see cref=\"T:System.Diagnostics.Process\" />-Komponente zu.</summary>\r\n      <returns>Ein neuer <see cref=\"T:System.Diagnostics.Process\" />, der der Prozessressource zugeordnet ist oder null, wenn keine Prozessressource gestartet wurde.Beachten Sie, dass ein neuer Prozess, der parallel zu bereits ausgeführten Instanzen des gleichen Prozesses gestartet wird, unabhängig von den anderen Instanzen ist.Außerdem gibt „Start“ möglicherweise einen nicht leeren (nicht NULL) Prozess zurück, dessen Eigenschaft <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> bereits auf true festgelegt ist.In diesem Fall hat der gestartete Prozess möglicherweise eine vorhandene Instanz seiner selbst aktiviert und sich dann beendet.</returns>\r\n      <param name=\"fileName\">Der Name einer Anwendungsdatei, die in dem Prozess ausgeführt werden soll. </param>\r\n      <param name=\"arguments\">Befehlszeilenargumente, die beim Starten des Prozesses übergeben werden sollen. </param>\r\n      <param name=\"userName\">Der beim Starten des Prozesses zu verwendende Benutzername.</param>\r\n      <param name=\"password\">Eine <see cref=\"T:System.Security.SecureString\" />, die das beim Starten des Prozesses zu verwendende Kennwort enthält.</param>\r\n      <param name=\"domain\">Die Domäne, die beim Starten des Prozesses verwendet werden soll.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartInfo\">\r\n      <summary>Ruft die Eigenschaften ab, die an die <see cref=\"M:System.Diagnostics.Process.Start\" />-Methode von <see cref=\"T:System.Diagnostics.Process\" /> übergeben werden sollen, oder legt diese fest.</summary>\r\n      <returns>Die <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />, die die Daten darstellt, mit denen der Prozess gestartet werden soll.Diese Argumente beinhalten den Namen der ausführbaren Datei oder des Dokuments, das zum Starten des Prozesses verwendet wurde.</returns>\r\n      <exception cref=\"T:System.ArgumentNullException\">The value that specifies the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> is null. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartTime\">\r\n      <summary>Ruft die Zeit ab, zu der der zugeordnete Prozess gestartet wurde.</summary>\r\n      <returns>Ein Objekt, das angibt, wann der zugeordnete Prozess gestartet wurde.Eine Ausnahme wird ausgelöst, wenn der Prozess nicht ausgeführt wird.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.StartTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or-The process has not been started.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred in the call to the Windows function.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Threads\">\r\n      <summary>Ruft die Gruppe von Threads ab, die im zugeordneten Prozess ausgeführt werden.</summary>\r\n      <returns>Ein Array vom Typ <see cref=\"T:System.Diagnostics.ProcessThread\" />, das die Threads des Betriebssystems darstellt, die gegenwärtig im zugeordneten Prozess ausgeführt werden.</returns>\r\n      <exception cref=\"T:System.SystemException\">The process does not have an <see cref=\"P:System.Diagnostics.Process.Id\" />, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" /> instance.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.TotalProcessorTime\">\r\n      <summary>Ruft die gesamte Prozessorzeit für diesen Prozess ab.</summary>\r\n      <returns>Eine <see cref=\"T:System.TimeSpan\" />, die die Zeitspanne angibt, während der der zugeordnete Prozess die CPU verwendet hat.Dieser Wert ist die Summe von <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> und <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" />.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.TotalProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.UserProcessorTime\">\r\n      <summary>Ruft die Benutzerprozessorzeit für diesen Prozess ab.</summary>\r\n      <returns>Eine <see cref=\"T:System.TimeSpan\" />, die die Zeitspanne angibt, während der der zugeordnete Prozess Code innerhalb der Anwendung des Prozesses (nicht im Betriebssystemkern) ausgeführt hat.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.VirtualMemorySize64\">\r\n      <summary>Ruft die Größe des virtuellen Speichers ab, der für den zugeordneten Prozess belegt wird.</summary>\r\n      <returns>Die Größe des virtuellen Speichers in Bytes, der für den zugeordneten Prozess belegt wird.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit\">\r\n      <summary>Weist die <see cref=\"T:System.Diagnostics.Process\" />-Komponente an, unbestimmte Zeit zu warten, bis der zugeordnete Prozess beendet wird.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\">\r\n      <summary>Weist die <see cref=\"T:System.Diagnostics.Process\" />-Komponente an, für die Dauer von angegebenen Millisekunden zu warten, bis der zugeordnete Prozess beendet wird.</summary>\r\n      <returns>true, wenn der zugeordnete Prozess beendet wurde, andernfalls false.</returns>\r\n      <param name=\"milliseconds\">Die Zeitspanne in Millisekunden, die auf die Beendigung des zugeordneten Prozesses gewartet werden soll.Der Höchstwert ist der größtmögliche Wert einer 32-Bit-Ganzzahl, der für das Betriebssystem unendlich bedeutet.</param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.WorkingSet64\">\r\n      <summary>Ruft die Größe des physischen Speichers ab, der für den zugeordneten Prozess belegt wird.</summary>\r\n      <returns>Die Größe des physischen Speichers in Bytes, der für den zugeordneten Prozess belegt wird.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModule\">\r\n      <summary>Stellt eine DLL- oder EXE-Datei dar, die in einen bestimmten Prozess geladen wird.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.BaseAddress\">\r\n      <summary>Ruft die Speicheradresse ab, an der das Modul geladen wurde.</summary>\r\n      <returns>Die Ladeadresse des Moduls.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.EntryPointAddress\">\r\n      <summary>Ruft die Speicheradresse für die Funktion ab, die beim Laden und Ausführen des Moduls ausgeführt wird.</summary>\r\n      <returns>Der Einstiegspunkt des Moduls.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.FileName\">\r\n      <summary>Ruft den vollständigen Pfad des Moduls ab.</summary>\r\n      <returns>Der voll gekennzeichnete Pfad, der den Speicherort des Moduls definiert.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleMemorySize\">\r\n      <summary>Ruft den zum Laden des Moduls erforderlichen Speicherplatz ab.</summary>\r\n      <returns>Die Größe des vom Modul belegten Speicherplatzes in Bytes.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleName\">\r\n      <summary>Ruft den Namen des Prozessmoduls ab.</summary>\r\n      <returns>Der Name des Moduls.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModule.ToString\">\r\n      <summary>Konvertiert den Namen des Moduls in eine Zeichenfolge.</summary>\r\n      <returns>Der Wert der <see cref=\"P:System.Diagnostics.ProcessModule.ModuleName\" />-Eigenschaft.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModuleCollection\">\r\n      <summary>Stellt eine Auflistung von <see cref=\"T:System.Diagnostics.ProcessModule\" />-Objekten mit starker Typisierung zur Verfügung.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor\">\r\n      <summary>Initialisiert eine neue Instanz der <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />-Klasse ohne zugeordnete <see cref=\"T:System.Diagnostics.ProcessModule\" />-Instanzen.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])\">\r\n      <summary>Initialisiert eine neue Instanz der <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />-Klasse mit dem angegebenen Array von <see cref=\"T:System.Diagnostics.ProcessModule\" />-Instanzen.</summary>\r\n      <param name=\"processModules\">Ein Array von <see cref=\"T:System.Diagnostics.ProcessModule\" />-Instanzen, mit denen diese <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />-Instanz initialisiert werden soll. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)\">\r\n      <summary>Bestimmt, ob das angegebene Prozessmodul in der Auflistung vorhanden ist.</summary>\r\n      <returns>true, wenn das Modul in der Auflistung vorhanden ist, andernfalls false.</returns>\r\n      <param name=\"module\">Eine <see cref=\"T:System.Diagnostics.ProcessModule\" />-Instanz, die das in dieser Auflistung zu suchende Modul anzeigt. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)\">\r\n      <summary>Kopiert ein Array von <see cref=\"T:System.Diagnostics.ProcessModule\" />-Instanzen am angegebenen Index in die Auflistung.</summary>\r\n      <param name=\"array\">Ein Array von <see cref=\"T:System.Diagnostics.ProcessModule\" />-Instanzen, das der Auflistung hinzugefügt werden soll. </param>\r\n      <param name=\"index\">Die Position, an der die neuen Instanzen eingefügt werden sollen. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)\">\r\n      <summary>Stellt die Position eines angegebenen Moduls in der Auflistung zur Verfügung.</summary>\r\n      <returns>Der nullbasierte Index, der die Position des Moduls in der <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> definiert.</returns>\r\n      <param name=\"module\">Der <see cref=\"T:System.Diagnostics.ProcessModule\" />, dessen Index abgerufen wird. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)\">\r\n      <summary>Ruft einen Index ab, mit dem die Gruppe von Prozessmodulen durchlaufen werden kann.</summary>\r\n      <returns>Ein <see cref=\"T:System.Diagnostics.ProcessModule\" />, das die Module in der Auflistung indiziert. </returns>\r\n      <param name=\"index\">Der nullbasierte Indexwert des Moduls in der Auflistung. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ProcessPriorityClass\">\r\n      <summary>Gibt die Priorität an, die das System einem Prozess zuordnet.Dieser Wert bestimmt, gemeinsam mit dem Prioritätswert für jeden Thread des Prozesses, die Basisprioritätsebene jedes Threads.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.AboveNormal\">\r\n      <summary>Gibt an, dass der Prozess eine höhere Priorität als Normal aufweist, aber eine niedrigere als <see cref=\"F:System.Diagnostics.ProcessPriorityClass.High\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.BelowNormal\">\r\n      <summary>Gibt an, dass der Prozess eine höhere Priorität als Idle aufweist, aber eine niedrigere als Normal.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.High\">\r\n      <summary>Gibt an, dass der Prozess zeitkritische Aufgaben ausführt, die sofort ausgeführt werden müssen, z. B. für das Dialogfeld Task List, das beim Aufruf durch den Benutzer unabhängig von der Last des Betriebssystems schnell angezeigt werden muss.Die Threads des Prozesses haben Vorrang vor den Threads von Prozessen in den Prioritätsklassen mit normaler oder Leerlaufpriorität.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Idle\">\r\n      <summary>Gibt an, dass die Threads dieses Prozesses nur ausgeführt werden, wenn sich das System im Leerlauf befindet. Trifft z. B. auf einen Bildschirmschoner zu.Vor den Threads dieses Prozesses haben die Threads eines beliebigen Prozesses Vorrang, der mit einer höheren Prioritätsklasse ausgeführt wird.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Normal\">\r\n      <summary>Gibt an, dass für den Prozess keine besondere Planung erforderlich ist.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.RealTime\">\r\n      <summary>Gibt an, dass der Prozess die höchstmögliche Priorität aufweist.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessStartInfo\">\r\n      <summary>Gibt eine Wertemenge an, die beim Starten eines Prozesses verwendet wird.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor\">\r\n      <summary>Initialisiert eine neue Instanz der <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />-Klasse, ohne einen Dateinamen anzugeben, mit dem der Prozess gestartet werden soll.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)\">\r\n      <summary>Initialisiert eine neue Instanz der <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />-Klasse und gibt einen Dateinamen an, mit dem der Prozess gestartet werden soll, z. B. eine Anwendung oder ein Dokument.</summary>\r\n      <param name=\"fileName\">Eine Anwendung oder ein Dokument, mit der bzw. dem ein Prozess gestartet wird. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)\">\r\n      <summary>Initialisiert eine neue Instanz der <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />-Klasse und gibt einen Anwendungsdateinamen an, mit dem der Prozess gestartet wird, sowie einen Satz von Befehlszeilenargumenten, die an die Anwendung übergeben werden.</summary>\r\n      <param name=\"fileName\">Eine Anwendung, mit der ein Prozess gestartet wird. </param>\r\n      <param name=\"arguments\">Befehlszeilenargumente, die beim Starten des Prozesses an die Anwendung übergeben werden sollen. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Arguments\">\r\n      <summary>Ruft den Satz von Befehlszeilenargumenten ab, die beim Starten der Anwendung verwendet werden sollen, oder legt diesen fest.</summary>\r\n      <returns>Eine einzelne Zeichenfolge, die die Argumente enthält, die an die in der <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" />-Eigenschaft angegebene Zielanwendung übergeben werden sollen.Der Standardwert ist eine leere Zeichenfolge (\"\").Unter Windows Vista und früheren Versionen des Windows-Betriebssystems muss die Länge der Argumente, die der Länge des vollständigen Pfads des Prozesses hinzugefügt werden, kleiner sein als 2080.Unter Windows 7 und höheren Versionen muss die Länge kleiner als 32699 sein.Argumente werden von der Zielanwendung analysiert und interpretiert und müssen daher den Erwartungen der betreffenden Anwendung entsprechen.Bei .NET-Anwendungen, wie sie in den Beispielen unten dargestellt sind, werden Leerzeichen als Trennzeichen zwischen Argumenten interpretiert.Ein einzelnes Argument, das Leerzeichen enthält, muss in Anführungszeichen eingeschlossen sein, diese Anführungszeichen werden jedoch nicht an die Zielanwendung übergeben.Eingeschlossene Anführungszeichen, die in das endgültige analysierte Argument aufgenommen werden sollen, müssen dreifach escaped werden.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.CreateNoWindow\">\r\n      <summary>Ruft einen Wert ab, der angibt, ob der Prozess in einem neuen Fenster gestartet werden soll, oder legt diesen fest.</summary>\r\n      <returns>true, wenn der Prozess ohne Erstellung eines neuen, für ihn bestimmten Fensters gestartet werden soll, andernfalls false.Die Standardeinstellung ist false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Domain\">\r\n      <summary>Ruft einen Wert ab, der die Domäne kennzeichnet, die beim Starten des Prozesses verwendet werden soll, oder legt diesen fest. </summary>\r\n      <returns>Die Active Directory-Domäne, die beim Starten des Prozesses verwendet werden soll.Die Domäneneigenschaft ist hauptsächlich für Benutzer in Unternehmensumgebungen von Interesse, die Active Directory verwenden.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Environment\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.FileName\">\r\n      <summary>Ruft die zu startende Anwendung oder das zu startende Dokument ab oder legt die Anwendung bzw. das Dokument fest.</summary>\r\n      <returns>Der Name der zu startenden Anwendung oder der Dokumentname eines einer Anwendung zugeordneten Dateityps, für den eine Standard-Öffnen-Aktion verfügbar ist.Der Standardwert ist eine leere Zeichenfolge (\"\").</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.LoadUserProfile\">\r\n      <summary>Ruft einen Wert ab, der angibt, ob das Windows-Benutzerprofil aus der Registrierung geladen werden soll, oder legt diesen fest. </summary>\r\n      <returns>true, wenn das Windows-Benutzerprofil geladen werden soll; andernfalls false.Die Standardeinstellung ist false.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Password\">\r\n      <summary>Ruft eine sichere Zeichenfolge ab, die das Benutzerkennwort enthält, das beim Starten des Prozesses verwendet werden soll, oder legt diese fest.</summary>\r\n      <returns>Das beim Starten des Prozesses zu verwendende Kennwort.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\">\r\n      <summary>Ruft einen Wert ab, der angibt, ob die Fehlerausgabe einer Anwendung in den <see cref=\"P:System.Diagnostics.Process.StandardError\" />-Datenstrom geschrieben wird, oder legt diesen fest.</summary>\r\n      <returns>true, wenn die Fehlerausgabe in <see cref=\"P:System.Diagnostics.Process.StandardError\" /> geschrieben werden soll; andernfalls false.Die Standardeinstellung ist false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\">\r\n      <summary>Ruft einen Wert ab, der angibt, ob die Eingabe für eine Anwendung aus dem <see cref=\"P:System.Diagnostics.Process.StandardInput\" />-Datenstrom gelesen wird, oder legt diesen fest.</summary>\r\n      <returns>true, wenn die Eingabe von <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> gelesen werden soll; andernfalls false.Die Standardeinstellung ist false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\">\r\n      <summary>Ruft einen Wert ab, der angibt, ob die Textausgabe einer Anwendung in den <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />-Datenstrom geschrieben wird, oder legt diesen fest.</summary>\r\n      <returns>true, wenn die Ausgabe in <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> geschrieben werden soll; andernfalls false.Die Standardeinstellung ist false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding\">\r\n      <summary>Ruft die bevorzugte Codierung für die Fehlerausgabe ab oder legt diese fest.</summary>\r\n      <returns>Ein Objekt, das die bevorzugte Codierung für die Fehlerausgabe darstellt.Die Standardeinstellung ist null.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding\">\r\n      <summary>Ruft die bevorzugte Codierung für die Standardausgabe ab oder legt diese fest.</summary>\r\n      <returns>Ein Objekt, das die bevorzugte Codierung für die Standardausgabe darstellt.Die Standardeinstellung ist null.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UserName\">\r\n      <summary>Ruft den beim Starten des Prozesses zu verwendenden Benutzernamen ab oder legt diesen fest.</summary>\r\n      <returns>Der beim Starten des Prozesses zu verwendende Benutzername.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\">\r\n      <summary>Ruft einen Wert ab, der angibt, ob zum Starten des Prozesses die Betriebssystemshell verwendet werden soll, oder legt diesen fest.</summary>\r\n      <returns>true, wenn beim Starten des Prozesses die Shell verwendet werden soll; false, wenn der Prozess direkt von der ausführbaren Datei aus erstellt werden soll.Die Standardeinstellung ist true.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.WorkingDirectory\">\r\n      <summary>Ruft das Arbeitsverzeichnis für den zu startenden Prozess ab, oder legt es fest, wenn die <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> Eigenschaft false ist.Ruft das Verzeichnis ab, das den zu startenden Prozess enthält, oder legt es fest, wenn <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" />true ist.</summary>\r\n      <returns>Wenn <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" />true ist, der voll gekennzeichnete Name des Verzeichnisses, das den zu startenden Prozess enthält.Wenn die <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> Eigenschaft false ist, das Arbeitsverzeichnis für den zu startenden Prozess.Der Standardwert ist eine leere Zeichenfolge (\"\").</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThread\">\r\n      <summary>Stellt einen Prozessthread für ein Betriebssystem dar.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.BasePriority\">\r\n      <summary>Ruft die Basispriorität des Threads ab.</summary>\r\n      <returns>Die Basispriorität des Threads, die vom Betriebssystem durch Kombinieren der Prioritätsklasse des Prozesses mit der Prioritätsebene des zugeordneten Threads errechnet wird.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.CurrentPriority\">\r\n      <summary>Ruft die aktuelle Priorität des Threads ab.</summary>\r\n      <returns>Die aktuelle Priorität des Threads. Abhängig davon, wie das Betriebssystem den Thread plant, kann diese Priorität von der Basispriorität abweichen.Die Priorität kann für einen aktiven Thread vorübergehend erhöht werden.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.Id\">\r\n      <summary>Ruft den eindeutigen Bezeichner des Threads ab.</summary>\r\n      <returns>Der eindeutige Bezeichner, der dem angegebenen Thread zugeordnet ist.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.IdealProcessor\">\r\n      <summary>Legt den bevorzugten Prozessor fest, auf dem dieser Thread ausgeführt werden soll.</summary>\r\n      <returns>Der bevorzugte Prozessor für den Thread, der bei der Threadplanung des Systems verwendet wird, die bestimmt, auf welchem Prozessor der Thread ausgeführt werden soll.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Das System konnte die Ausführung des Threads nicht auf den angegebenen Prozessor festlegen. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityBoostEnabled\">\r\n      <summary>Ruft einen Wert ab, der angibt, ob das Betriebssystem die Priorität des zugeordneten Threads vorübergehend erhöhen soll, sobald das Hauptfenster des Threadprozesses den Fokus hat, oder legt diesen Wert fest.</summary>\r\n      <returns>true, wenn die Priorität des Threads bei Interaktion des Benutzers mit der Schnittstelle erhöht werden soll, andernfalls false.Die Standardeinstellung ist false.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Die Informationen zur Prioritätserhöhung konnten nicht abgerufen werden.- oder -Die Informationen zur Prioritätserhöhung konnten nicht festgelegt werden. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityLevel\">\r\n      <summary>Ruft die Prioritätsebene des Threads ab oder legt diese fest.</summary>\r\n      <returns>Einer der <see cref=\"T:System.Diagnostics.ThreadPriorityLevel\" />-Werte, der einen Bereich für die Begrenzung der Priorität des Threads angibt.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Die Informationen für die Prioritätsebene des Threads konnten nicht abgerufen werden. - oder -Die Prioritätsebene für den Thread konnte nicht festgelegt werden.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime\">\r\n      <summary>Ruft die Zeit ab, während der der Thread im Betriebssystemkern Code ausgeführt hat.</summary>\r\n      <returns>Eine <see cref=\"T:System.TimeSpan\" />, die angibt, wie lange der Thread im Betriebssystemkern Code ausgeführt hat.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Die Threadzeit konnte nicht abgerufen werden. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ProcessorAffinity\">\r\n      <summary>Legt die Prozessoren fest, auf denen der zugeordnete Thread ausgeführt werden kann.</summary>\r\n      <returns>Ein <see cref=\"T:System.IntPtr\" />, das auf eine Gruppe von Bits zeigt, wovon jedes einzelne einen Prozessor darstellt, auf dem der Thread ausgeführt werden kann.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Die Prozessoraffinität konnte nicht festgelgt werden. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThread.ResetIdealProcessor\">\r\n      <summary>Setzt den für diesen Thread idealen Prozessor zurück, um anzugeben, dass kein einzelner idealer Prozessor vorhanden ist.Das heißt, dass jeder Prozessor ideal sein kann.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Der ideale Prozessor konnte nicht zurückgesetzt werden. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartAddress\">\r\n      <summary>Ruft die Speicheradresse der Funktion ab, die vom Betriebssystem aufgerufen wurde, das diesen Thread gestartet hat.</summary>\r\n      <returns>Die Anfangsadresse des Threads, die auf die vom Thread ausgeführte anwendungsdefinierte Funktion zeigt.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartTime\">\r\n      <summary>Ruft die Zeit ab, zu der das Betriebssystem den Thread gestartet hat.</summary>\r\n      <returns>Eine <see cref=\"T:System.DateTime\" />, die die Zeit auf dem System darstellt, zu der das Betriebssystem den Thread gestartet hat.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Die Threadzeit konnte nicht abgerufen werden. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ThreadState\">\r\n      <summary>Ruft den aktuellen Zustand dieses Threads ab.</summary>\r\n      <returns>Ein <see cref=\"T:System.Diagnostics.ThreadState\" />, der die Ausführung des Threads angibt, z. B. wird ausgeführt, wartet oder wurde beendet.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.TotalProcessorTime\">\r\n      <summary>Ruft die gesamte Zeit ab, während der der Thread den Prozessor verwendet hat.</summary>\r\n      <returns>Eine <see cref=\"T:System.TimeSpan\" />, die die Zeit angibt, während der Thread den Prozessor gesteuert hat.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Die Threadzeit konnte nicht abgerufen werden. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.UserProcessorTime\">\r\n      <summary>Ruft die Zeit ab, während der der zugeordnete Thread in der Anwendung Code ausgeführt hat.</summary>\r\n      <returns>Eine <see cref=\"T:System.TimeSpan\" />, die angibt, wie lange der Thread Code in der Anwendung (im Gegensatz zum Betriebssystemkern) ausgeführt hat.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Die Threadzeit konnte nicht abgerufen werden. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.WaitReason\">\r\n      <summary>Ruft die Ursache für den Wartezustand des Threads ab.</summary>\r\n      <returns>Eine <see cref=\"T:System.Diagnostics.ThreadWaitReason\" />, die die Ursache für den Wartezustand des Threads darstellt.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">Der Thread befindet sich nicht im Wartezustand. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThreadCollection\">\r\n      <summary>Stellt eine Auflistung von <see cref=\"T:System.Diagnostics.ProcessThread\" />-Objekten mit starker Typisierung zur Verfügung.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor\">\r\n      <summary>Initialisiert eine neue Instanz der <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />-Klasse ohne zugeordnete <see cref=\"T:System.Diagnostics.ProcessThread\" />-Instanzen.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])\">\r\n      <summary>Initialisiert eine neue Instanz der <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />-Klasse mit dem angegebenen Array von <see cref=\"T:System.Diagnostics.ProcessThread\" />-Instanzen.</summary>\r\n      <param name=\"processThreads\">Ein Array von <see cref=\"T:System.Diagnostics.ProcessThread\" />-Instanzen, mit denen diese <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />-Instanz initialisiert werden soll. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)\">\r\n      <summary>Fügt einen Prozessthread an die Auflistung an.</summary>\r\n      <returns>Der nullbasierte Index des Threads in der Auflistung.</returns>\r\n      <param name=\"thread\">Der der Auflistung hinzuzufügende Thread. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)\">\r\n      <summary>Bestimmt, ob der angegebene Prozessthread in der Auflistung enthalten ist.</summary>\r\n      <returns>true, wenn der Thread in der Auflistung vorhanden ist, andernfalls false.</returns>\r\n      <param name=\"thread\">Eine <see cref=\"T:System.Diagnostics.ProcessThread\" />-Instanz, die den in dieser Auflistung zu suchenden Thread anzeigt. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)\">\r\n      <summary>Kopiert ein Array von <see cref=\"T:System.Diagnostics.ProcessThread\" />-Instanzen am angegebenen Index in die Auflistung.</summary>\r\n      <param name=\"array\">Ein Array von <see cref=\"T:System.Diagnostics.ProcessThread\" />-Instanzen, das der Auflistung hinzugefügt werden soll. </param>\r\n      <param name=\"index\">Die Position, an der die neuen Instanzen eingefügt werden sollen. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)\">\r\n      <summary>Stellt die Position eines angegebenen Threads in der Auflistung zur Verfügung.</summary>\r\n      <returns>Der nullbasierte Index, der die Position des Threads in der <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> definiert.</returns>\r\n      <param name=\"thread\">Der <see cref=\"T:System.Diagnostics.ProcessThread\" />, dessen Index abgerufen wird. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)\">\r\n      <summary>Fügt an der angegebenen Position einen Prozessthread in die Auflistung ein.</summary>\r\n      <param name=\"index\">Der nullbasierte Index, der die Position angibt, an der der Thread eingefügt werden soll. </param>\r\n      <param name=\"thread\">Der in die Auflistung einzufügende Thread. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)\">\r\n      <summary>Ruft einen Index ab, mit dem die Gruppe von Prozessthreads durchlaufen werden kann.</summary>\r\n      <returns>Ein <see cref=\"T:System.Diagnostics.ProcessThread\" />, der die Threads in der Auflistung indiziert.</returns>\r\n      <param name=\"index\">Der nullbasierte Indexwert des Threads in der Auflistung. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)\">\r\n      <summary>Löscht einen Prozessthread aus der Auflistung.</summary>\r\n      <param name=\"thread\">Der Thread, der aus der Auflistung entfernt werden soll. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ThreadPriorityLevel\">\r\n      <summary>Gibt die Prioritätsebene eines Threads an.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.AboveNormal\">\r\n      <summary>Gibt eine Stufe über der normalen Priorität für die zugeordnete <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> an.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.BelowNormal\">\r\n      <summary>Gibt eine Stufe unter der normalen Priorität für die zugeordnete <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> an.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Highest\">\r\n      <summary>Gibt die höchste Priorität an.Dies ist zwei Stufen über der normalen Priorität für die zugeordnete <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Idle\">\r\n      <summary>Gibt die Leerlaufpriorität an.Dies ist der niedrigste mögliche Prioritätswert aller Threads, unabhängig vom Wert der zugeordneten <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Lowest\">\r\n      <summary>Gibt die niedrigste Priorität an.Dies ist zwei Stufen unter der normalen Priorität für die zugeordnete <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Normal\">\r\n      <summary>Gibt die normale Priorität für die zugeordnete <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> an.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.TimeCritical\">\r\n      <summary>Gibt die auf die Ausführungsgeschwindigkeit bezogene Priorität an.Dies ist die höchste Priorität aller Threads, unabhängig vom Wert der zugeordneten <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadState\">\r\n      <summary>Gibt den aktuellen Ausführungszustand des Threads an.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Initialized\">\r\n      <summary>Ein Zustand, der angibt, dass der Thread initialisiert wurde, jedoch noch nicht gestartet ist.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Ready\">\r\n      <summary>Ein Zustand, der anzeigt, dass der Thread auf die Verwendung eines Prozessors wartet, da gegenwärtig kein Prozessor frei ist.Der Thread kann auf dem nächsten verfügbaren Prozessor ausgeführt werden.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Running\">\r\n      <summary>Ein Zustand, der angibt, dass der Thread zurzeit einen Prozessor verwendet.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Standby\">\r\n      <summary>Ein Zustand, der angibt, dass der Thread gerade einen Prozessor verwenden will.In diesem Zustand kann sich jeweils nur ein Thread befinden.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Terminated\">\r\n      <summary>Ein Zustand, der angibt, dass der Thread die Ausführung abgeschlossen hat und beendet wurde.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Transition\">\r\n      <summary>Ein Zustand, der angibt, dass der Thread auf eine andere Ressource als den Prozessor wartet, bevor er ausgeführt werden kann.Er könnte z. B. darauf warten, dass der Ausführungsstapel von der Festplatte gelesen wird.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Unknown\">\r\n      <summary>Der Zustand des Threads ist unbekannt.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Wait\">\r\n      <summary>Ein Zustand, der angibt, dass der Thread den Prozessor nicht verwenden kann, da er auf die Beendigung einer Operation in der Peripherie oder auf das Freiwerden einer Ressource wartet.Wenn der Thread bereit ist, wird der Start neu geplant.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadWaitReason\">\r\n      <summary>Gibt die Ursache für den Wartezustand eines Threads an.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairHigh\">\r\n      <summary>Der Thread wartet auf das Ereignispaar High.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairLow\">\r\n      <summary>Der Thread wartet auf das Ereignispaar Low.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.ExecutionDelay\">\r\n      <summary>Die Ausführung des Threads wird verzögert.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Executive\">\r\n      <summary>Der Thread wartet auf den Planer.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.FreePage\">\r\n      <summary>Der Thread wartet auf eine freie Seite im virtuellen Speicher.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReceive\">\r\n      <summary>Der Thread wartet auf die Ankunft eines Aufrufs einer lokalen Prozedur.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReply\">\r\n      <summary>Der Thread wartet darauf, dass die Antwort auf den Aufruf einer lokalen Prozedur ankommt.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageIn\">\r\n      <summary>Der Thread wartet auf die Ankunft einer Seite des virtuellen Speichers im Arbeitsspeicher.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageOut\">\r\n      <summary>Der Thread wartet darauf, dass eine Seite des virtuellen Speichers auf den Datenträger geschrieben wird.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Suspended\">\r\n      <summary>Die Ausführung des Threads wurde unterbrochen.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.SystemAllocation\">\r\n      <summary>Der Thread wartet auf Reservierung durch das System.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Unknown\">\r\n      <summary>Der Thread befindet sich aus unbekannten Gründen im Wartezustand.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.UserRequest\">\r\n      <summary>Der Thread wartet auf eine Benutzeranforderung.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.VirtualMemory\">\r\n      <summary>Der Thread wartet darauf, dass das System virtuellen Speicher belegt.</summary>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/es/System.Diagnostics.Process.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<doc>\r\n  <assembly>\r\n    <name>System.Diagnostics.Process</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\">\r\n      <summary>[CRÍTICO PARA LA SEGURIDAD] Proporciona un contenedor administrado para un identificador de proceso.</summary>\r\n    </member>\r\n    <member name=\"M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)\">\r\n      <summary>[CRÍTICO PARA LA SEGURIDAD] Inicializa una nueva instancia de la <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> clase a partir del identificador especificado, que indica si se va a liberar el identificador durante la fase de finalización. </summary>\r\n      <param name=\"existingHandle\">El identificador para ajustarse.</param>\r\n      <param name=\"ownsHandle\">truepara permitir de forma confiable <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> liberar el identificador durante la fase de finalización; de lo contrario, false.</param>\r\n    </member>\r\n    <member name=\"P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid\"></member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventArgs\">\r\n      <summary>Proporciona datos para los eventos <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> y <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.DataReceivedEventArgs.Data\">\r\n      <summary>Obtiene la línea de caracteres escrita en un flujo de salida de <see cref=\"T:System.Diagnostics.Process\" /> redirigido.</summary>\r\n      <returns>Línea escrita por una secuencia <see cref=\"T:System.Diagnostics.Process\" /> asociada en su secuencia <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> o <see cref=\"P:System.Diagnostics.Process.StandardError\" /> redirigida.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventHandler\">\r\n      <summary>Representa el método que controlará los eventos <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> o <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> de un <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <param name=\"sender\">Origen del evento. </param>\r\n      <param name=\"e\">Objeto <see cref=\"T:System.Diagnostics.DataReceivedEventArgs\" /> que contiene los datos del evento. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.Process\">\r\n      <summary>Proporciona acceso a procesos locales y remotos, y permite iniciar y detener procesos del sistema local.Para examinar el código fuente de .NET Framework de este tipo, consulte el origen de referencia.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.#ctor\">\r\n      <summary>Inicializa una nueva instancia de la clase <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.BasePriority\">\r\n      <summary>Obtiene la prioridad base del proceso asociado.</summary>\r\n      <returns>Prioridad base, que se calcula a partir de <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> del proceso asociado.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or- The process has not started, so there is no process ID. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginErrorReadLine\">\r\n      <summary>Inicia las operaciones de lectura asincrónica en la secuencia de <see cref=\"P:System.Diagnostics.Process.StandardError\" /> redirigida de la aplicación.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginOutputReadLine\">\r\n      <summary>Inicia las operaciones de lectura asincrónica en la secuencia de <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> redirigida de la aplicación.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelErrorRead\">\r\n      <summary>Cancela la operación de lectura asincrónica en la secuencia redirigida de <see cref=\"P:System.Diagnostics.Process.StandardError\" /> de una aplicación.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelOutputRead\">\r\n      <summary>Cancela la operación de lectura asincrónica en la secuencia redirigida de <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> de una aplicación.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose\"></member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose(System.Boolean)\">\r\n      <summary>Libera todos los recursos utilizados por este proceso.</summary>\r\n      <param name=\"disposing\">Es true para liberar tanto recursos administrados como no administrados; es false para liberar únicamente recursos no administrados. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.EnableRaisingEvents\">\r\n      <summary>Obtiene o establece si el evento <see cref=\"E:System.Diagnostics.Process.Exited\" /> debe provocarse cuando termine el proceso.</summary>\r\n      <returns>Es true si el evento <see cref=\"E:System.Diagnostics.Process.Exited\" /> debe provocarse cuando termine el proceso asociado (al salir o al llamar a <see cref=\"M:System.Diagnostics.Process.Kill\" />); de lo contrario, es false.De manera predeterminada, es false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.EnterDebugMode\">\r\n      <summary>Coloca un componente <see cref=\"T:System.Diagnostics.Process\" /> en estado de interacción con los procesos del sistema operativo que se ejecutan en un modo especial; para ello, habilita la propiedad nativa SeDebugPrivilege en el subproceso actual.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.ErrorDataReceived\">\r\n      <summary>Se produce cuando una aplicación escribe en su secuencia redirigida de <see cref=\"P:System.Diagnostics.Process.StandardError\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitCode\">\r\n      <summary>Obtiene el valor especificado por el proceso asociado al terminar.</summary>\r\n      <returns>Código especificado por el proceso asociado al terminar.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has not exited.-or- The process <see cref=\"P:System.Diagnostics.Process.Handle\" /> is not valid. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitCode\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.Exited\">\r\n      <summary>Se produce cuando termina un proceso.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitTime\">\r\n      <summary>Obtiene el momento en el que terminó el proceso asociado.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.DateTime\" /> que indica cuándo terminó el proceso asociado.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetCurrentProcess\">\r\n      <summary>Obtiene un nuevo componente <see cref=\"T:System.Diagnostics.Process\" /> y lo asocia al proceso que está activo en ese momento.</summary>\r\n      <returns>Nuevo componente <see cref=\"T:System.Diagnostics.Process\" /> que está asociado al recurso del proceso que se está ejecutando en la aplicación que realiza la llamada.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32)\">\r\n      <summary>Devuelve un nuevo componente <see cref=\"T:System.Diagnostics.Process\" />, dado un identificador de un proceso en el equipo local.</summary>\r\n      <returns>Componente <see cref=\"T:System.Diagnostics.Process\" /> asociado al recurso del proceso local que se identifica mediante el parámetro <paramref name=\"processId\" />.</returns>\r\n      <param name=\"processId\">Identificador de un recurso de proceso único en el sistema. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)\">\r\n      <summary>Devuelve un nuevo componente <see cref=\"T:System.Diagnostics.Process\" />, dados un identificador de proceso y el nombre de un equipo en la red.</summary>\r\n      <returns>Componente <see cref=\"T:System.Diagnostics.Process\" /> asociado a un recurso de proceso remoto que se identifica mediante el parámetro <paramref name=\"processId\" />.</returns>\r\n      <param name=\"processId\">Identificador de un recurso de proceso único en el sistema. </param>\r\n      <param name=\"machineName\">Nombre de un equipo en la red. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.-or- The <paramref name=\"machineName\" /> parameter syntax is invalid.The name might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses\">\r\n      <summary>Crea un nuevo componente <see cref=\"T:System.Diagnostics.Process\" /> para cada recurso de proceso del equipo local.</summary>\r\n      <returns>Matriz de tipo <see cref=\"T:System.Diagnostics.Process\" /> que representa todos los recursos del proceso que se ejecutan en el equipo local.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses(System.String)\">\r\n      <summary>Crea un nuevo componente <see cref=\"T:System.Diagnostics.Process\" /> para cada recurso de proceso en el equipo especificado.</summary>\r\n      <returns>Matriz de tipo <see cref=\"T:System.Diagnostics.Process\" /> que representa todos los recursos del proceso que se ejecutan en el equipo especificado.</returns>\r\n      <param name=\"machineName\">Equipo desde el que se lee la lista de procesos. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String)\">\r\n      <summary>Crea una matriz de nuevos componentes <see cref=\"T:System.Diagnostics.Process\" /> y los asocia a todos los recursos de proceso del equipo local que comparten el nombre de proceso especificado.</summary>\r\n      <returns>Matriz de tipo <see cref=\"T:System.Diagnostics.Process\" /> que representa los recursos del proceso que ejecutan la aplicación o el archivo especificado.</returns>\r\n      <param name=\"processName\">Nombre descriptivo del proceso. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)\">\r\n      <summary>Crea una matriz de nuevos componentes <see cref=\"T:System.Diagnostics.Process\" /> y los asocia a todos los recursos de proceso de un equipo remoto que comparten el nombre del proceso especificado.</summary>\r\n      <returns>Matriz de tipo <see cref=\"T:System.Diagnostics.Process\" /> que representa los recursos del proceso que ejecutan la aplicación o el archivo especificado.</returns>\r\n      <param name=\"processName\">Nombre descriptivo del proceso. </param>\r\n      <param name=\"machineName\">Nombre de un equipo en la red. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.HasExited\">\r\n      <summary>Obtiene un valor que indica si el proceso asociado ha finalizado.</summary>\r\n      <returns>Es true si el proceso del sistema operativo al que hace referencia el componente <see cref=\"T:System.Diagnostics.Process\" /> ha terminado; de lo contrario, es false.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with the object. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The exit code for the process could not be retrieved. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.HasExited\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Id\">\r\n      <summary>Obtiene el identificador único del proceso asociado.</summary>\r\n      <returns>Identificador único generado por el sistema del proceso al que hace referencia esta instancia de <see cref=\"T:System.Diagnostics.Process\" />.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process's <see cref=\"P:System.Diagnostics.Process.Id\" /> property has not been set.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Kill\">\r\n      <summary>Detiene inmediatamente el proceso asociado.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to call <see cref=\"M:System.Diagnostics.Process.Kill\" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has already exited. -or-There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.LeaveDebugMode\">\r\n      <summary>Recupera un componente <see cref=\"T:System.Diagnostics.Process\" /> del estado que le permite interactuar con procesos del sistema operativo que se ejecuten en un modo especial.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MachineName\">\r\n      <summary>Obtiene el nombre del equipo en el que se está ejecutando el proceso asociado.</summary>\r\n      <returns>Nombre del equipo en el que se está ejecutando el proceso asociado.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MainModule\">\r\n      <summary>Obtiene el módulo principal del proceso asociado.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> utilizado para iniciar el proceso.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MainModule\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A 32-bit process is trying to access the modules of a 64-bit process.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MaxWorkingSet\">\r\n      <summary>Obtiene o establece el tamaño máximo permitido para el espacio de trabajo del proceso asociado.</summary>\r\n      <returns>Tamaño máximo permitido para el espacio de trabajo del proceso en la memoria expresado en bytes.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MaxWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MinWorkingSet\">\r\n      <summary>Obtiene o establece el tamaño mínimo permitido para el espacio de trabajo del proceso asociado.</summary>\r\n      <returns>Tamaño mínimo necesario para el espacio de trabajo del proceso en la memoria expresado en bytes.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MinWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Modules\">\r\n      <summary>Obtiene los módulos cargados por el proceso asociado.</summary>\r\n      <returns>Matriz de tipo <see cref=\"T:System.Diagnostics.ProcessModule\" /> que representa los módulos cargados por el proceso asociado.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for either the system process or the idle process.These processes do not have modules.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.NonpagedSystemMemorySize64\">\r\n      <summary>Obtiene el tamaño de la memoria no paginada del sistema que se ha asignado para el proceso asociado.</summary>\r\n      <returns>El tamaño de la memoria del sistema, expresado en bytes, que se ha asignado para el proceso asociado que no puede escribirse en el archivo de paginación de la memoria virtual.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.OnExited\">\r\n      <summary>Genera el evento <see cref=\"E:System.Diagnostics.Process.Exited\" />.</summary>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.OutputDataReceived\">\r\n      <summary>Se produce cada vez que una aplicación escribe una línea en su secuencia <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> redirigida.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedMemorySize64\">\r\n      <summary>Obtiene el tamaño de la memoria paginada asignada para el proceso asociado.</summary>\r\n      <returns>El tamaño de la memoria, expresado en bytes, asignada en el archivo de paginación de la memoria virtual para el proceso asociado.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedSystemMemorySize64\">\r\n      <summary>Obtiene el tamaño de la memoria paginable del sistema que se ha asignado para el proceso asociado.</summary>\r\n      <returns>El tamaño de la memoria del sistema, expresado en bytes, que se ha asignado para el proceso asociado que puede escribirse en el archivo de paginación de la memoria virtual.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakPagedMemorySize64\">\r\n      <summary>Obtiene el tamaño de memoria máximo en el archivo de paginación de la memoria virtual que utiliza el proceso asociado.</summary>\r\n      <returns>El tamaño de memoria máximo, expresado en bytes, asignado en el archivo de paginación de la memoria virtual para el proceso asociado desde su inicio.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakVirtualMemorySize64\">\r\n      <summary>Obtiene el tamaño máximo de la memoria virtual que utiliza el proceso asociado.</summary>\r\n      <returns>El tamaño máximo de memoria virtual, expresado en bytes, que se ha asignado para el proceso asociado desde su inicio.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakWorkingSet64\">\r\n      <summary>Obtiene el tamaño máximo de la memoria física que utiliza el proceso asociado.</summary>\r\n      <returns>El tamaño máximo de memoria física, expresado en bytes, que se ha asignado para el proceso asociado desde su inicio.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityBoostEnabled\">\r\n      <summary>Obtiene o establece un valor que indica si el sistema operativo debería aumentar temporalmente la prioridad del proceso asociado cuando la ventana principal tenga el foco.</summary>\r\n      <returns>Es true si la prioridad del proceso debe aumentarse dinámicamente cuando este salga del estado de espera; de lo contrario, es false.De manera predeterminada, es false.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Priority boost information could not be retrieved from the associated process resource. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityBoostEnabled\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityClass\">\r\n      <summary>Obtiene o establece la categoría de prioridad general del proceso asociado.</summary>\r\n      <returns>Categoría de prioridad del proceso asociado a partir de la cual se calcula el <see cref=\"P:System.Diagnostics.Process.BasePriority\" /> del proceso.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">You have set the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>\r\n      <exception cref=\"T:System.ComponentModel.InvalidEnumArgumentException\">Priority class cannot be set because it does not use a valid value, as defined in the <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> enumeration.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivateMemorySize64\">\r\n      <summary>Obtiene el tamaño de la memoria privada asignada para el proceso asociado.</summary>\r\n      <returns>El tamaño de la memoria, expresado en bytes, que se ha asignado para el proceso asociado que no puede compartirse con otros procesos.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\">\r\n      <summary>Obtiene el tiempo de procesador con privilegios de este proceso.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" /> que indica la cantidad de tiempo que el proceso ha invertido en la ejecución de código dentro del núcleo del sistema operativo.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessName\">\r\n      <summary>Obtiene el nombre del proceso.</summary>\r\n      <returns>Nombre que el sistema utiliza para identificar el proceso ante el usuario.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process does not have an identifier, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" />.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is not on this computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessorAffinity\">\r\n      <summary>Obtiene o establece los procesadores en los que se puede programar la ejecución de los subprocesos de este proceso.</summary>\r\n      <returns>Máscara de bits que representa los procesadores en los que pueden ejecutarse los subprocesos del proceso asociado.El valor predeterminado depende del número de procesadores del equipo.El valor predeterminado es 2 n -1, donde n representa el número de procesadores.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> was not available.-or- The process has exited. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Refresh\">\r\n      <summary>Descarta cualquier información acerca del proceso asociado que se haya almacenado en caché en el componente del proceso.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SafeHandle\">\r\n      <summary>Obtiene el identificador nativo de este proceso.</summary>\r\n      <returns>Identificador nativo de este proceso.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SessionId\">\r\n      <summary>Obtiene el identificador de la sesión de Terminal Services para el proceso asociado.</summary>\r\n      <returns>El identificador de la sesión de Terminal Services para el proceso asociado.</returns>\r\n      <exception cref=\"T:System.NullReferenceException\">There is no session associated with this process.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The <see cref=\"P:System.Diagnostics.Process.SessionId\" /> property is not supported on Windows 98.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardError\">\r\n      <summary>Obtiene una secuencia utilizada para leer la salida de errores de la aplicación.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IO.StreamReader\" /> que puede utilizarse para leer la secuencia de error estándar de la aplicación.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginErrorReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardInput\">\r\n      <summary>Obtiene una secuencia que se utiliza para escribir la entrada de la aplicación.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IO.StreamWriter\" /> que puede utilizarse para escribir la secuencia de entrada estándar de la aplicación.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> stream has not been defined because <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" /> is set to false. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardOutput\">\r\n      <summary>Obtiene una secuencia usada para leer la salida de texto de la aplicación.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IO.StreamReader\" /> que puede utilizarse para leer la secuencia de salida estándar de la aplicación.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginOutputReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start\">\r\n      <summary>Inicia (o reutiliza) el recurso de proceso especificado en la propiedad <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> de este componente <see cref=\"T:System.Diagnostics.Process\" /> y lo asocia al componente.</summary>\r\n      <returns>Es true si se inicia un recurso de proceso; es false si no se inicia ningún recurso de proceso nuevo (por ejemplo, si se reutiliza un recurso existente).</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <see cref=\"T:System.Diagnostics.Process\" /> component's <see cref=\"P:System.Diagnostics.Process.StartInfo\" />.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> member of the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> property is true while <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is true. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)\">\r\n      <summary>Inicia el recurso de proceso que se especifica mediante el parámetro que contiene la información de inicio del proceso (por ejemplo, el nombre de archivo del proceso que se va a iniciar) y asocia el recurso a un nuevo componente <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nuevo <see cref=\"T:System.Diagnostics.Process\" /> que está asociado al recurso del proceso, o null si no se inicia ningún recurso de proceso.Tenga en cuenta que un proceso nuevo que se inicie junto a instancias del mismo proceso ya en ejecución será independiente del resto.Además, Inicio puede devolver un proceso no nulo con su propiedad <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> ya establecida en true.En tal caso, el proceso iniciado puede haber activado una instancia existente de sí mismo y, a continuación, haber salido.</returns>\r\n      <param name=\"startInfo\">\r\n        <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> que contiene la información que se utiliza para iniciar el proceso, incluidos el nombre de archivo y los argumentos de línea de comandos. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is also true.-or-The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UserName\" /> property is not null or empty or the <see cref=\"P:System.Diagnostics.ProcessStartInfo.Password\" /> property is not null.</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"startInfo\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The file specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property could not be found.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String)\">\r\n      <summary>Inicia un recurso de proceso con la especificación del nombre de un documento o de un archivo de aplicación y asocia el recurso a un nuevo componente <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nuevo <see cref=\"T:System.Diagnostics.Process\" /> que está asociado al recurso del proceso, o null si no se inicia ningún recurso de proceso.Tenga en cuenta que un proceso nuevo que se inicie junto a instancias del mismo proceso ya en ejecución será independiente del resto.Además, Inicio puede devolver un proceso no nulo con su propiedad <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> ya establecida en true.En tal caso, el proceso iniciado puede haber activado una instancia existente de sí mismo y, a continuación, haber salido.</returns>\r\n      <param name=\"fileName\">Nombre de un archivo de documento o aplicación que se va a ejecutar en el proceso. </param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String)\">\r\n      <summary>Inicia un recurso de proceso mediante la especificación del nombre de una aplicación y un conjunto de argumentos de línea de comandos, y asocia el recurso a un nuevo componente <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nuevo <see cref=\"T:System.Diagnostics.Process\" /> que está asociado al recurso del proceso, o null si no se inicia ningún recurso de proceso.Tenga en cuenta que un proceso nuevo que se inicie junto a instancias del mismo proceso ya en ejecución será independiente del resto.Además, Inicio puede devolver un proceso no nulo con su propiedad <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> ya establecida en true.En tal caso, el proceso iniciado puede haber activado una instancia existente de sí mismo y, a continuación, haber salido.</returns>\r\n      <param name=\"fileName\">Nombre de un archivo de aplicación que se va a ejecutar en el proceso. </param>\r\n      <param name=\"arguments\">Argumentos de línea de comandos que se van a pasar al iniciar el proceso. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <paramref name=\"fileName\" /> or <paramref name=\"arguments\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>Inicia un recurso de proceso mediante la especificación del nombre de una aplicación, un nombre de usuario, una contraseña y un dominio, y asocia el recurso a un nuevo componente de <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nuevo <see cref=\"T:System.Diagnostics.Process\" /> que está asociado al recurso del proceso, o null si no se inicia ningún recurso de proceso.Tenga en cuenta que un proceso nuevo que se inicie junto a instancias del mismo proceso ya en ejecución será independiente del resto.Además, Inicio puede devolver un proceso no nulo con su propiedad <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> ya establecida en true.En tal caso, el proceso iniciado puede haber activado una instancia existente de sí mismo y, a continuación, haber salido.</returns>\r\n      <param name=\"fileName\">Nombre de un archivo de aplicación que se va a ejecutar en el proceso.</param>\r\n      <param name=\"userName\">Nombre de usuario que se va a utilizar al iniciarse el proceso.</param>\r\n      <param name=\"password\">\r\n        <see cref=\"T:System.Security.SecureString\" /> que contiene la contraseña que se va a utilizar al iniciarse el proceso.</param>\r\n      <param name=\"domain\">Dominio que se va a utilizar al iniciarse el proceso.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>Inicia un recurso de proceso mediante la especificación del nombre de una aplicación y un conjunto de argumentos de línea de comandos, un nombre de usuario, una contraseña y un dominio, y asocia el recurso a un nuevo componente de <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nuevo <see cref=\"T:System.Diagnostics.Process\" /> que está asociado al recurso del proceso, o null si no se inicia ningún recurso de proceso.Tenga en cuenta que un proceso nuevo que se inicie junto a instancias del mismo proceso ya en ejecución será independiente del resto.Además, Inicio puede devolver un proceso no nulo con su propiedad <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> ya establecida en true.En tal caso, el proceso iniciado puede haber activado una instancia existente de sí mismo y, a continuación, haber salido.</returns>\r\n      <param name=\"fileName\">Nombre de un archivo de aplicación que se va a ejecutar en el proceso. </param>\r\n      <param name=\"arguments\">Argumentos de línea de comandos que se van a pasar al iniciar el proceso. </param>\r\n      <param name=\"userName\">Nombre de usuario que se va a utilizar al iniciarse el proceso.</param>\r\n      <param name=\"password\">\r\n        <see cref=\"T:System.Security.SecureString\" /> que contiene la contraseña que se va a utilizar al iniciarse el proceso.</param>\r\n      <param name=\"domain\">Dominio que se va a utilizar al iniciarse el proceso.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartInfo\">\r\n      <summary>Obtiene o establece las propiedades que se pasan al método <see cref=\"M:System.Diagnostics.Process.Start\" /> de <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> que representa los datos con los que iniciar el proceso.Estos argumentos incluyen el nombre del archivo ejecutable o del documento que se utilizó para iniciar el proceso.</returns>\r\n      <exception cref=\"T:System.ArgumentNullException\">The value that specifies the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> is null. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartTime\">\r\n      <summary>Obtiene el momento en el que se inició el proceso asociado.</summary>\r\n      <returns>Objeto que indica cuándo se inició el proceso.Si no se está ejecutando el proceso, se produce una excepción.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.StartTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or-The process has not been started.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred in the call to the Windows function.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Threads\">\r\n      <summary>Obtiene el conjunto de subprocesos que se están ejecutando en el proceso asociado.</summary>\r\n      <returns>Matriz de tipo <see cref=\"T:System.Diagnostics.ProcessThread\" /> que representa los subprocesos del sistema operativo que se están ejecutando actualmente en el proceso asociado.</returns>\r\n      <exception cref=\"T:System.SystemException\">The process does not have an <see cref=\"P:System.Diagnostics.Process.Id\" />, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" /> instance.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.TotalProcessorTime\">\r\n      <summary>Obtiene el tiempo de procesador total de este proceso.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" /> indica la cantidad de tiempo que el proceso asociado ha empleado en utilizar la CPU.Este valor es la suma de <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> y <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" />.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.TotalProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.UserProcessorTime\">\r\n      <summary>Obtiene el tiempo de procesador de usuario de este proceso.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" /> que indica la cantidad de tiempo que el proceso asociado ha empleado en ejecutar código en la parte de la aplicación que corresponde al proceso (no en el núcleo del sistema operativo).</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.VirtualMemorySize64\">\r\n      <summary>Obtiene el tamaño de la memoria virtual que se ha asignado para el proceso asociado.</summary>\r\n      <returns>El tamaño de memoria virtual, expresado en bytes, que se ha asignado para el proceso asociado.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit\">\r\n      <summary>Indica al componente <see cref=\"T:System.Diagnostics.Process\" /> que espere indefinidamente hasta que el proceso asociado termine.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\">\r\n      <summary>Indica al componente <see cref=\"T:System.Diagnostics.Process\" /> que espere a que el proceso asociado termine durante el número de milisegundos especificado.</summary>\r\n      <returns>Es true si el proceso asociado ha terminado; de lo contrario, es false.</returns>\r\n      <param name=\"milliseconds\">Cantidad de tiempo, en milisegundos, que se esperará hasta que termine el proceso asociado.El valor máximo es el valor mayor posible de un entero de 32 bits, que representa el infinito para el sistema operativo.</param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.WorkingSet64\">\r\n      <summary>Obtiene el tamaño de la memoria física que se ha asignado para el proceso asociado.</summary>\r\n      <returns>El tamaño de memoria física, expresado en bytes, que se ha asignado para el proceso asociado.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModule\">\r\n      <summary>Representa a un archivo .dll o .exe que se carga en un proceso determinado.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.BaseAddress\">\r\n      <summary>Devuelve la dirección de memoria en la que se cargó el módulo.</summary>\r\n      <returns>Dirección de carga del módulo.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.EntryPointAddress\">\r\n      <summary>Obtiene la dirección de memoria de la función que se ejecuta cuando el sistema carga y ejecuta el módulo.</summary>\r\n      <returns>Punto de entrada del módulo.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.FileName\">\r\n      <summary>Obtiene la ruta de acceso completa al módulo.</summary>\r\n      <returns>Ruta de acceso completa que define la ubicación del módulo.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleMemorySize\">\r\n      <summary>Obtiene la cantidad de memoria necesaria para cargar el módulo.</summary>\r\n      <returns>Tamaño, en bytes, de la memoria que ocupa el módulo.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleName\">\r\n      <summary>Obtiene el nombre del módulo del proceso.</summary>\r\n      <returns>El nombre del módulo.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModule.ToString\">\r\n      <summary>Convierte el nombre del módulo en una cadena.</summary>\r\n      <returns>Valor de la propiedad <see cref=\"P:System.Diagnostics.ProcessModule.ModuleName\" />.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModuleCollection\">\r\n      <summary>Proporciona una colección de objetos <see cref=\"T:System.Diagnostics.ProcessModule\" /> fuertemente tipados.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor\">\r\n      <summary>Inicializa una nueva instancia de la clase <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />, sin instancias de <see cref=\"T:System.Diagnostics.ProcessModule\" /> asociadas.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])\">\r\n      <summary>Inicializa una nueva instancia de la clase <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> utilizando la matriz de instancias de <see cref=\"T:System.Diagnostics.ProcessModule\" /> especificada.</summary>\r\n      <param name=\"processModules\">Matriz de instancias de <see cref=\"T:System.Diagnostics.ProcessModule\" /> con la que se inicializa esta instancia de <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)\">\r\n      <summary>Determina si el módulo de proceso especificado se encuentra en la colección.</summary>\r\n      <returns>Es true si el módulo está en la colección; en caso contrario, es false.</returns>\r\n      <param name=\"module\">Instancia de <see cref=\"T:System.Diagnostics.ProcessModule\" /> que indica el módulo que se va a buscar en la colección. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)\">\r\n      <summary>Copia una matriz de instancias de <see cref=\"T:System.Diagnostics.ProcessModule\" /> en la colección, en el índice especificado.</summary>\r\n      <param name=\"array\">Matriz de instancias de <see cref=\"T:System.Diagnostics.ProcessModule\" /> que se va a agregar a la colección. </param>\r\n      <param name=\"index\">Ubicación en la que se van a agregar las nuevas instancias. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)\">\r\n      <summary>Proporciona la ubicación de un módulo especificado en la colección.</summary>\r\n      <returns>Índice de base cero que define la ubicación del módulo en <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />.</returns>\r\n      <param name=\"module\">Objeto <see cref=\"T:System.Diagnostics.ProcessModule\" /> cuyo índice se recupera. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)\">\r\n      <summary>Obtiene un índice para recorrer en iteración el conjunto de módulos de proceso.</summary>\r\n      <returns>Objeto <see cref=\"T:System.Diagnostics.ProcessModule\" /> que indiza los módulos de la colección. </returns>\r\n      <param name=\"index\">Valor del índice de base cero del módulo de la colección. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ProcessPriorityClass\">\r\n      <summary>Indica la prioridad que el sistema asocia a un proceso.Este valor, junto con el valor de prioridad de cada subproceso del proceso, determina el nivel de prioridad base de cada subproceso.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.AboveNormal\">\r\n      <summary>Especifica que el proceso tiene una prioridad superior a Normal pero inferior a <see cref=\"F:System.Diagnostics.ProcessPriorityClass.High\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.BelowNormal\">\r\n      <summary>Especifica que el proceso tiene una prioridad superior a Idle pero inferior a Normal.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.High\">\r\n      <summary>Especifica que el proceso realiza tareas críticas en el tiempo que deben ejecutarse de inmediato, como el cuadro de diálogo Task List, que debe responder rápidamente cuando el usuario lo llama, independientemente de la carga del sistema operativo.Los subprocesos del proceso tienen prioridad sobre los subprocesos de aquellos procesos de clase de prioridad normal o inactiva.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Idle\">\r\n      <summary>Especifica que los subprocesos de este proceso se ejecutan solo cuando el sistema está inactivo, como el protector de pantalla.Los subprocesos del proceso tienen menor prioridad que los subprocesos de cualquier proceso que se ejecute en una clase de prioridad más alta.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Normal\">\r\n      <summary>Especifica que el proceso no tiene necesidades de programación especiales.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.RealTime\">\r\n      <summary>Especifica que el proceso tiene la prioridad más alta posible.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessStartInfo\">\r\n      <summary>Especifica un conjunto de valores que se usa cuando se inicia un proceso. </summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor\">\r\n      <summary>Inicializa una nueva instancia de la clase <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> sin especificar un nombre de archivo con el que iniciar el proceso.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)\">\r\n      <summary>Inicializa una nueva instancia de la clase <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> y especifica un nombre de archivo, como una aplicación o un documento, con el que se inicia el proceso.</summary>\r\n      <param name=\"fileName\">Aplicación o documento con que se inicia un proceso. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)\">\r\n      <summary>Inicializa una nueva instancia de la clase <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> y especifica un nombre de archivo de aplicación con el que se iniciará el proceso, así como un conjunto de argumentos de línea de comandos que se pasarán a la aplicación.</summary>\r\n      <param name=\"fileName\">Aplicación con que se inicia un proceso. </param>\r\n      <param name=\"arguments\">Argumentos de línea de comandos que se van a pasar a la aplicación al iniciar el proceso. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Arguments\">\r\n      <summary>Obtiene o establece el conjunto de argumentos de línea de comandos que se van a usar al iniciar la aplicación.</summary>\r\n      <returns>Cadena única que contiene los argumentos para pasar a la aplicación de destino especificada en la propiedad <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" />.El valor predeterminado es una cadena vacía (\"\").En Windows Vista y versiones anteriores del sistema operativo Windows, la longitud de los argumentos sumada a la longitud de la ruta de acceso completa al proceso debe ser inferior a 2080.En Windows 7 y versiones posteriores, la longitud debe ser inferior a 32.699.Los argumentos se analizan e interpretan mediante la aplicación de destino, por lo que deben estar en línea con las expectativas de la aplicación.En las aplicaciones .NET, como se muestra en los ejemplos siguientes, los espacios se interpretan como una separación entre varios argumentos.Un solo argumento que incluye espacios debe incluirse entre comillas, pero las comillas no se llevan a cabo en la aplicación de destino.En las comillas incluidas en el argumento final analizado, se elude triplemente cada marca.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.CreateNoWindow\">\r\n      <summary>Obtiene o establece un valor que indica si el proceso se va a iniciar en una nueva ventana.</summary>\r\n      <returns>true si el proceso se debe iniciar sin crear una nueva ventana que lo contenga; de lo contrario, es false.De manera predeterminada, es false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Domain\">\r\n      <summary>Obtiene o establece un valor que identifica el dominio que se va a usar al iniciarse el proceso. </summary>\r\n      <returns>El dominio de Active Directory que se va a usar al iniciarse el proceso.La propiedad de dominio es especialmente interesante para los usuarios en entornos de empresa que usan Active Directory.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Environment\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.FileName\">\r\n      <summary>Obtiene o establece la aplicación o el documento que se va a iniciar.</summary>\r\n      <returns>Nombre de la aplicación que se va a iniciar o nombre de un documento que tiene un tipo de archivo asociado a una aplicación que dispone de una acción de apertura predeterminada.El valor predeterminado es una cadena vacía (\"\").</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.LoadUserProfile\">\r\n      <summary>Obtiene o establece un valor que indica si el perfil de usuario de Windows se va a cargar desde el registro. </summary>\r\n      <returns>true si el perfil de usuario de Windows se debe cargar; de lo contrario, es false.De manera predeterminada, es false.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Password\">\r\n      <summary>Obtiene o establece una cadena segura que contiene la contraseña del usuario que se va a usar al iniciar el proceso.</summary>\r\n      <returns>Contraseña de usuario que se va a usar al iniciar el proceso.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\">\r\n      <summary>Obtiene o establece un valor que indica si la salida de errores de una aplicación se escribe en la secuencia de <see cref=\"P:System.Diagnostics.Process.StandardError\" />.</summary>\r\n      <returns>true si la salida de errores se debe escribir en <see cref=\"P:System.Diagnostics.Process.StandardError\" />; en caso contrario, es false.De manera predeterminada, es false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\">\r\n      <summary>Obtiene o establece un valor que indica si la entrada para una aplicación se lee de la secuencia de <see cref=\"P:System.Diagnostics.Process.StandardInput\" />.</summary>\r\n      <returns>true si la entrada se debe leer desde <see cref=\"P:System.Diagnostics.Process.StandardInput\" />; en caso contrario, es false.De manera predeterminada, es false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\">\r\n      <summary>Obtiene o establece un valor que indica si la salida de una aplicación se escribe en la secuencia de <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />.</summary>\r\n      <returns>true si la salida se debe escribir en <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />; de lo contrario, es false.De manera predeterminada, es false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding\">\r\n      <summary>Obtiene o establece la codificación preferente para la salida de errores.</summary>\r\n      <returns>Objeto que representa la codificación preferente para la salida de errores.De manera predeterminada, es null.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding\">\r\n      <summary>Obtiene o establece la codificación preferente para la salida estándar.</summary>\r\n      <returns>Objeto que representa la codificación preferente para la salida estándar.De manera predeterminada, es null.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UserName\">\r\n      <summary>Obtiene o establece el nombre de usuario que se va a usar al iniciar el proceso.</summary>\r\n      <returns>Nombre de usuario que se va a utilizar al iniciarse el proceso.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\">\r\n      <summary>Obtiene o establece un valor que indica si se va a usar el shell del sistema operativo para iniciar el proceso.</summary>\r\n      <returns>true si el shell se debe usar al iniciar el proceso; false si el proceso debería crearse directamente desde el archivo ejecutable.De manera predeterminada, es true.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.WorkingDirectory\">\r\n      <summary>Cuando la propiedad de <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> es false, obtiene o establece el directorio de trabajo para que el proceso se inicie.Cuando <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> es true, obtiene o establece el directorio que contiene el proceso que se iniciará.</summary>\r\n      <returns>Cuando <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> es true, el nombre completo del directorio que contiene el proceso que se va a iniciar.Cuando la propiedad de <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> es false, el directorio de trabajo para que el proceso se inicie.El valor predeterminado es una cadena vacía (\"\").</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThread\">\r\n      <summary>Representa un subproceso del sistema operativo.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.BasePriority\">\r\n      <summary>Obtiene la prioridad base del subproceso.</summary>\r\n      <returns>Prioridad base del subproceso, calculada por el sistema operativo mediante la combinación de la clase de prioridad del proceso y el nivel de prioridad del subproceso asociado.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.CurrentPriority\">\r\n      <summary>Obtiene la prioridad actual del subproceso.</summary>\r\n      <returns>Prioridad actual del subproceso, que puede variar respecto a la prioridad base en función de cómo programe el subproceso el sistema operativo.Es posible aumentar temporalmente la prioridad para un subproceso activo.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.Id\">\r\n      <summary>Obtiene el identificador único del subproceso.</summary>\r\n      <returns>Identificador único asociado a un subproceso específico.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.IdealProcessor\">\r\n      <summary>Establece el procesador preferido para ejecutar este subproceso.</summary>\r\n      <returns>Procesador preferido para el subproceso, que se utiliza cuando el sistema programa los subprocesos, con el fin de determinar en qué procesador se ejecutará.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">El sistema no pudo establecer el subproceso para que se iniciara en el procesador especificado. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plataforma es Windows 98 o Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">El proceso está en un equipo remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityBoostEnabled\">\r\n      <summary>Obtiene o establece un valor que indica si el sistema operativo debe aumentar temporalmente la prioridad del subproceso asociado siempre que la ventana principal del proceso del subproceso reciba el foco.</summary>\r\n      <returns>Es true para aumentar la prioridad del subproceso cuando el usuario interactúe con la interfaz del proceso; de lo contrario, es false.El valor predeterminado es false.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">No se pudo recuperar la información del aumento de prioridad.O bienNo se pudo establecer la información del aumento de prioridad. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plataforma es Windows 98 o Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">El proceso está en un equipo remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityLevel\">\r\n      <summary>Obtiene o establece el nivel de prioridad del subproceso.</summary>\r\n      <returns>Uno de los valores de <see cref=\"T:System.Diagnostics.ThreadPriorityLevel\" />, que especifica un intervalo que limita la prioridad del subproceso.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">No se pudo recuperar la información del nivel de prioridad de subproceso. O bienNo se pudo establecer el nivel de prioridad del subproceso.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plataforma es Windows 98 o Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">El proceso está en un equipo remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime\">\r\n      <summary>Obtiene el tiempo durante el cual el subproceso ha ejecutado código dentro del núcleo del sistema operativo.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" /> que indica la cantidad de tiempo que el subproceso ha estado ejecutando código dentro del núcleo del sistema operativo.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">No se pudo recuperar el tiempo del subproceso. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plataforma es Windows 98 o Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">El proceso está en un equipo remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ProcessorAffinity\">\r\n      <summary>Establece los procesadores en los que puede ejecutarse el subproceso asociado.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IntPtr\" /> que señala a un conjunto de bits, cada uno de los cuales representa a un procesador en el que puede ejecutarse el subproceso.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">No se pudo establecer la afinidad de procesador. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plataforma es Windows 98 o Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">El proceso está en un equipo remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThread.ResetIdealProcessor\">\r\n      <summary>Restablece el procesador ideal para este subproceso a fin de indicar que no hay un solo procesador ideal.En otras palabras, cualquier procesador es ideal.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">No se pudo restablecer el procesador ideal. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plataforma es Windows 98 o Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">El proceso está en un equipo remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartAddress\">\r\n      <summary>Obtiene la dirección de memoria de la función a la que llamó el sistema operativo para iniciar este subproceso.</summary>\r\n      <returns>Dirección inicial del subproceso, que señala a la función definida por la aplicación que el subproceso ejecuta.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plataforma es Windows 98 o Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">El proceso está en un equipo remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartTime\">\r\n      <summary>Obtiene la hora a la que el sistema operativo inició el subproceso.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.DateTime\" /> que representa la hora que tenía el sistema cuando el sistema operativo inició el subproceso.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">No se pudo recuperar el tiempo del subproceso. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plataforma es Windows 98 o Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">El proceso está en un equipo remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ThreadState\">\r\n      <summary>Obtiene el estado actual de este subproceso.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ThreadState\" /> que indica el estado de ejecución del subproceso; por ejemplo, en ejecución, en espera o terminado.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plataforma es Windows 98 o Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">El proceso está en un equipo remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.TotalProcessorTime\">\r\n      <summary>Obtiene la cantidad total de tiempo que este subproceso ha estado usando el procesador.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" /> que indica la cantidad de tiempo que el subproceso ha tenido el control del procesador.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">No se pudo recuperar el tiempo del subproceso. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plataforma es Windows 98 o Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">El proceso está en un equipo remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.UserProcessorTime\">\r\n      <summary>Obtiene el tiempo durante el cual el subproceso asociado ha ejecutado código dentro de la aplicación.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" /> que indica la cantidad de tiempo que el subproceso ha estado ejecutando código dentro de la aplicación, en lugar de dentro del núcleo del sistema operativo.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">No se pudo recuperar el tiempo del subproceso. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plataforma es Windows 98 o Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">El proceso está en un equipo remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.WaitReason\">\r\n      <summary>Obtiene la razón por la que el subproceso está esperando.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ThreadWaitReason\" /> que representa la razón por la cual el subproceso se encuentra en estado de espera.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">El subproceso no se encuentra en estado de espera. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plataforma es Windows 98 o Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">El proceso está en un equipo remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThreadCollection\">\r\n      <summary>Proporciona una colección de objetos <see cref=\"T:System.Diagnostics.ProcessThread\" /> fuertemente tipados.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor\">\r\n      <summary>Inicializa una instancia nueva de la clase <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />, sin instancias de <see cref=\"T:System.Diagnostics.ProcessThread\" /> asociadas.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])\">\r\n      <summary>Inicializa una instancia nueva de la clase <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> utilizando la matriz de instancias de <see cref=\"T:System.Diagnostics.ProcessThread\" /> especificada.</summary>\r\n      <param name=\"processThreads\">Matriz de instancias de <see cref=\"T:System.Diagnostics.ProcessThread\" /> con la que se inicializa esta instancia de <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)\">\r\n      <summary>Agrega un subproceso del proceso a la colección.</summary>\r\n      <returns>Índice de base cero del subproceso de la colección.</returns>\r\n      <param name=\"thread\">Subproceso que se va a agregar a la colección. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)\">\r\n      <summary>Determina si el subproceso de proceso especificado se encuentra en la colección.</summary>\r\n      <returns>Es true si el subproceso está en la colección; en caso contrario, es false.</returns>\r\n      <param name=\"thread\">Instancia de <see cref=\"T:System.Diagnostics.ProcessThread\" /> que indica el subproceso que se va a buscar en la colección. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)\">\r\n      <summary>Copia una matriz de instancias de <see cref=\"T:System.Diagnostics.ProcessThread\" /> en la colección, en el índice especificado.</summary>\r\n      <param name=\"array\">Matriz de instancias de <see cref=\"T:System.Diagnostics.ProcessThread\" /> que se va a agregar a la colección. </param>\r\n      <param name=\"index\">Ubicación en la que se van a agregar las nuevas instancias. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)\">\r\n      <summary>Proporciona la ubicación de un subproceso especificado en la colección.</summary>\r\n      <returns>Índice de base cero que define la ubicación del subproceso en la <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />.</returns>\r\n      <param name=\"thread\">\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> cuyo índice se recupera. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)\">\r\n      <summary>Inserta un subproceso de proceso en la ubicación especificada de la colección.</summary>\r\n      <param name=\"index\">Índice de base cero que indica la ubicación en la que se va a insertar el subproceso. </param>\r\n      <param name=\"thread\">Subproceso que se va a insertar en la colección. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)\">\r\n      <summary>Obtiene un índice para recorrer en iteración el conjunto de subprocesos.</summary>\r\n      <returns>Objeto <see cref=\"T:System.Diagnostics.ProcessThread\" /> que indiza los subprocesos de la colección.</returns>\r\n      <param name=\"index\">Valor del índice de base cero del subproceso de la colección. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)\">\r\n      <summary>Elimina un subproceso de proceso de la colección.</summary>\r\n      <param name=\"thread\">Subproceso que se va a quitar de la colección. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ThreadPriorityLevel\">\r\n      <summary>Especifica el nivel de prioridad de un subproceso.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.AboveNormal\">\r\n      <summary>Especifica un paso por encima de la prioridad normal para la clase <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> asociada.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.BelowNormal\">\r\n      <summary>Especifica un paso por debajo de la prioridad normal para la clase <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> asociada.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Highest\">\r\n      <summary>Especifica la prioridad más alta.En otras palabras, dos pasos por encima de la prioridad normal para la clase <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> asociada.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Idle\">\r\n      <summary>Especifica la prioridad de inactividad.Éste es el valor de prioridad más bajo posible para todos los subprocesos, independientemente del valor de la clase <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> asociada.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Lowest\">\r\n      <summary>Especifica la prioridad más baja.Es decir, dos pasos por debajo de la prioridad normal para la clase <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> asociada.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Normal\">\r\n      <summary>Especifica la prioridad normal para la clase <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> asociada.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.TimeCritical\">\r\n      <summary>Especifica la prioridad de tiempo crítico.Éste es el valor de prioridad más alto de todos los subprocesos, independientemente del valor de la clase <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> asociada.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadState\">\r\n      <summary>Especifica el estado de ejecución actual del subproceso.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Initialized\">\r\n      <summary>Estado que indica que el subproceso se ha inicializado, pero no se ha iniciado todavía.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Ready\">\r\n      <summary>Estado que indica que el subproceso está esperando para usar un procesador porque no hay ninguno libre.El subproceso está preparado para ejecutarse en el primer procesador que quede disponible.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Running\">\r\n      <summary>Estado que indica que el subproceso está usando un procesador actualmente.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Standby\">\r\n      <summary>Estado que indica que el subproceso va a empezar a usar un procesador.En un momento dado, sólo puede haber un subproceso en este estado.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Terminated\">\r\n      <summary>Estado que indica que el subproceso ha finalizado su ejecución y ha terminado.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Transition\">\r\n      <summary>Estado que indica que el subproceso está esperando un recurso, que no es el procesador, para poder ejecutarse.Por ejemplo, puede estar esperando a que la pila de ejecución se pagine desde el disco.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Unknown\">\r\n      <summary>No se conoce el estado del subproceso.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Wait\">\r\n      <summary>Estado que indica que el subproceso no está listo para usar el procesador porque está esperando a que termine una operación periférica o a que quede libre un recurso.Cuando el subproceso esté listo, se volverá a programar.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadWaitReason\">\r\n      <summary>Especifica la razón por la que el subproceso está esperando.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairHigh\">\r\n      <summary>El subproceso está esperando un par de eventos alto.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairLow\">\r\n      <summary>El subproceso está esperando un par de eventos bajo.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.ExecutionDelay\">\r\n      <summary>La ejecución del subproceso está retardada.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Executive\">\r\n      <summary>El subproceso está esperando al programador.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.FreePage\">\r\n      <summary>El subproceso está esperando una página de memoria virtual libre.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReceive\">\r\n      <summary>El subproceso está esperando a que llegue una llamada a procedimiento local.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReply\">\r\n      <summary>El subproceso está esperando a que llegue la respuesta a una llamada a procedimiento local.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageIn\">\r\n      <summary>El subproceso está esperando a que llegue a la memoria una página de memoria virtual.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageOut\">\r\n      <summary>El subproceso está esperando a que se escriba en el disco una página de memoria virtual.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Suspended\">\r\n      <summary>La ejecución del subproceso está suspendida.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.SystemAllocation\">\r\n      <summary>El subproceso está esperando la asignación del sistema.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Unknown\">\r\n      <summary>No se conoce la razón por la que el subproceso está esperando.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.UserRequest\">\r\n      <summary>El subproceso está esperando una solicitud del usuario.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.VirtualMemory\">\r\n      <summary>El subproceso está esperando a que el sistema asigne memoria virtual.</summary>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/fr/System.Diagnostics.Process.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<doc>\r\n  <assembly>\r\n    <name>System.Diagnostics.Process</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\">\r\n      <summary>[ESSENTIEL POUR LA SÉCURITÉ] Fournit un wrapper managé pour un handle de processus.</summary>\r\n    </member>\r\n    <member name=\"M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)\">\r\n      <summary>[ESSENTIEL POUR LA SÉCURITÉ] Initialise une nouvelle instance de la <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> classe à partir du handle spécifié, indiquant s'il faut libérer le handle pendant la phase de finalisation. </summary>\r\n      <param name=\"existingHandle\">Handle à encapsuler.</param>\r\n      <param name=\"ownsHandle\">truePour vous permettre de manière fiable <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> libérer le handle pendant la phase de finalisation ; Sinon, false.</param>\r\n    </member>\r\n    <member name=\"P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid\"></member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventArgs\">\r\n      <summary>Fournit des données pour les événements <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> et <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.DataReceivedEventArgs.Data\">\r\n      <summary>Obtient la ligne de caractères qui a été écrite dans un flux de sortie <see cref=\"T:System.Diagnostics.Process\" /> redirigé.</summary>\r\n      <returns>Ligne qui a été écrite par un <see cref=\"T:System.Diagnostics.Process\" /> associé à son <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> redirigé ou à son flux <see cref=\"P:System.Diagnostics.Process.StandardError\" />.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventHandler\">\r\n      <summary>Représente la méthode qui gérera l'événement <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> ou l'événement <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> de <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <param name=\"sender\">Source de l'événement. </param>\r\n      <param name=\"e\">\r\n        <see cref=\"T:System.Diagnostics.DataReceivedEventArgs\" /> qui contient les données d'événement. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.Process\">\r\n      <summary>Fournit l'accès à des processus locaux ainsi que distants, et vous permet de démarrer et d'arrêter des processus système locaux.Pour parcourir le code source de .NET Framework pour ce type, consultez la Source de référence.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.#ctor\">\r\n      <summary>Initialise une nouvelle instance de la classe <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.BasePriority\">\r\n      <summary>Obtient la priorité de base du processus associé.</summary>\r\n      <returns>Priorité de base, calculée à partir du <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> du processus associé.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or- The process has not started, so there is no process ID. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginErrorReadLine\">\r\n      <summary>Commence des opérations de lecture asynchrones sur le flux de données <see cref=\"P:System.Diagnostics.Process.StandardError\" /> redirigé de l'application.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginOutputReadLine\">\r\n      <summary>Commence des opérations de lecture asynchrones sur le flux de données <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> redirigé de l'application.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelErrorRead\">\r\n      <summary>Annule l'opération de lecture asynchrone sur le flux <see cref=\"P:System.Diagnostics.Process.StandardError\" /> redirigé d'une application.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelOutputRead\">\r\n      <summary>Annule l'opération de lecture asynchrone sur le flux <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> redirigé d'une application.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose\"></member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose(System.Boolean)\">\r\n      <summary>Libère toutes les ressources utilisées par ce processus.</summary>\r\n      <param name=\"disposing\">true pour libérer les ressources managées et non managées ; false pour ne libérer que les ressources non managées. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.EnableRaisingEvents\">\r\n      <summary>Obtient ou définit une valeur indiquant si l'événement <see cref=\"E:System.Diagnostics.Process.Exited\" /> est déclenché quand le processus ne s'exécute plus.</summary>\r\n      <returns>true si l'événement <see cref=\"E:System.Diagnostics.Process.Exited\" /> doit être déclenché une fois que le processus associé n'est plus exécuté (sortie ou appel à <see cref=\"M:System.Diagnostics.Process.Kill\" />) ; sinon, false.La valeur par défaut est false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.EnterDebugMode\">\r\n      <summary>Met un composant <see cref=\"T:System.Diagnostics.Process\" /> en état d'interagir avec des processus du système d'exploitation qui s'exécutent en mode spécial en activant la propriété native SeDebugPrivilege sur le thread actuel.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.ErrorDataReceived\">\r\n      <summary>Se produit quand une application écrit dans son flux <see cref=\"P:System.Diagnostics.Process.StandardError\" /> redirigé.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitCode\">\r\n      <summary>Obtient la valeur spécifiée par le processus associé au moment où il s'est terminé.</summary>\r\n      <returns>Code spécifié par le processus associé une fois celui-ci terminé.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has not exited.-or- The process <see cref=\"P:System.Diagnostics.Process.Handle\" /> is not valid. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitCode\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.Exited\">\r\n      <summary>Se produit quand un processus se termine.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitTime\">\r\n      <summary>Obtient l'heure à laquelle le processus associé s'est terminé.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.DateTime\" /> qui indique le moment où le processus associé s'est terminé.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetCurrentProcess\">\r\n      <summary>Obtient un nouveau composant <see cref=\"T:System.Diagnostics.Process\" /> et l'associe au processus actuellement actif.</summary>\r\n      <returns>Nouveau composant <see cref=\"T:System.Diagnostics.Process\" /> associé à la ressource de processus qui exécute l'application appelante.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32)\">\r\n      <summary>Retourne un nouveau composant <see cref=\"T:System.Diagnostics.Process\" />, en fonction de l'identificateur d'un processus sur l'ordinateur local.</summary>\r\n      <returns>Composant <see cref=\"T:System.Diagnostics.Process\" /> associé à la ressource de processus locale identifiée par le paramètre <paramref name=\"processId\" />.</returns>\r\n      <param name=\"processId\">Identificateur unique au système d'une ressource de processus. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)\">\r\n      <summary>Retourne un nouveau composant <see cref=\"T:System.Diagnostics.Process\" />, en fonction d'un identificateur de processus et du nom d'un ordinateur du réseau.</summary>\r\n      <returns>Composant <see cref=\"T:System.Diagnostics.Process\" /> associé à une ressource de processus distante identifiée par le paramètre <paramref name=\"processId\" />.</returns>\r\n      <param name=\"processId\">Identificateur unique au système d'une ressource de processus. </param>\r\n      <param name=\"machineName\">Nom d'un ordinateur du réseau. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.-or- The <paramref name=\"machineName\" /> parameter syntax is invalid.The name might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses\">\r\n      <summary>Crée un composant <see cref=\"T:System.Diagnostics.Process\" /> pour chaque ressource de processus sur l'ordinateur local.</summary>\r\n      <returns>Tableau de type <see cref=\"T:System.Diagnostics.Process\" /> représentant toutes les ressources de processus exécutées sur l'ordinateur local.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses(System.String)\">\r\n      <summary>Crée un composant <see cref=\"T:System.Diagnostics.Process\" /> pour chaque ressource de processus sur l'ordinateur spécifié.</summary>\r\n      <returns>Tableau de type <see cref=\"T:System.Diagnostics.Process\" /> représentant toutes les ressources de processus exécutées sur l'ordinateur spécifié.</returns>\r\n      <param name=\"machineName\">Ordinateur à partir duquel lire la liste de processus. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String)\">\r\n      <summary>Crée un tableau de nouveaux composants <see cref=\"T:System.Diagnostics.Process\" /> et les associe à toutes les ressources de processus de l'ordinateur local qui partagent le nom de processus spécifié.</summary>\r\n      <returns>Tableau de type <see cref=\"T:System.Diagnostics.Process\" /> représentant les ressources de processus exécutant l'application ou le fichier spécifié.</returns>\r\n      <param name=\"processName\">Nom convivial du processus. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)\">\r\n      <summary>Crée un tableau de nouveaux composants <see cref=\"T:System.Diagnostics.Process\" /> et les associe à toutes les ressources de processus sur l'ordinateur distant qui partagent le nom de processus spécifié.</summary>\r\n      <returns>Tableau de type <see cref=\"T:System.Diagnostics.Process\" /> représentant les ressources de processus exécutant l'application ou le fichier spécifié.</returns>\r\n      <param name=\"processName\">Nom convivial du processus. </param>\r\n      <param name=\"machineName\">Nom d'un ordinateur du réseau. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.HasExited\">\r\n      <summary>Obtient une valeur indiquant si le processus associé s'est terminé.</summary>\r\n      <returns>true si le processus du système d'exploitation référencé par le composant <see cref=\"T:System.Diagnostics.Process\" /> s'est terminé ; sinon, false.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with the object. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The exit code for the process could not be retrieved. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.HasExited\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Id\">\r\n      <summary>Obtient l'identificateur unique du processus associé.</summary>\r\n      <returns>Identificateur unique généré par le système du processus référencé par cette instance de <see cref=\"T:System.Diagnostics.Process\" />.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process's <see cref=\"P:System.Diagnostics.Process.Id\" /> property has not been set.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Kill\">\r\n      <summary>Arrête immédiatement le processus associé.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to call <see cref=\"M:System.Diagnostics.Process.Kill\" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has already exited. -or-There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.LeaveDebugMode\">\r\n      <summary>Met un composant <see cref=\"T:System.Diagnostics.Process\" /> hors de l'état qui lui permet d'interagir avec des processus du système d'exploitation qui s'exécutent en mode spécial.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MachineName\">\r\n      <summary>Obtient le nom de l'ordinateur sur lequel s'exécute le processus associé.</summary>\r\n      <returns>Nom de l'ordinateur sur lequel s'exécute le processus associé.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MainModule\">\r\n      <summary>Obtient le module principal pour le processus associé.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> qui a été utilisé pour démarrer le processus.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MainModule\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A 32-bit process is trying to access the modules of a 64-bit process.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MaxWorkingSet\">\r\n      <summary>Obtient ou définit la taille maximale autorisée du jeu de travail pour le processus associé.</summary>\r\n      <returns>Taille maximale du jeu de travail pouvant être mise en mémoire pour le processus, en octets.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MaxWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MinWorkingSet\">\r\n      <summary>Obtient ou définit la taille minimale autorisée du jeu de travail pour le processus associé.</summary>\r\n      <returns>Taille minimale du jeu de travail requise en mémoire pour le processus, en octets.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MinWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Modules\">\r\n      <summary>Obtient les modules qui ont été chargés par le processus associé.</summary>\r\n      <returns>Tableau de type <see cref=\"T:System.Diagnostics.ProcessModule\" /> représentant les modules qui ont été chargés par le processus associé.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for either the system process or the idle process.These processes do not have modules.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.NonpagedSystemMemorySize64\">\r\n      <summary>Obtient la quantité de mémoire système non paginée allouée pour le processus associé.</summary>\r\n      <returns>Quantité de mémoire système, en octets, allouée au processus associé qui ne peut pas être écrite dans le fichier d'échange de la mémoire virtuelle.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.OnExited\">\r\n      <summary>Déclenche l'événement <see cref=\"E:System.Diagnostics.Process.Exited\" />.</summary>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.OutputDataReceived\">\r\n      <summary>Se produit quand une application écrit dans son flux <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> redirigé.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedMemorySize64\">\r\n      <summary>Obtient la quantité de mémoire paginée allouée pour le processus associé.</summary>\r\n      <returns>Quantité de mémoire, en octets, allouée dans le fichier d'échange de la mémoire virtuelle pour le processus associé.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedSystemMemorySize64\">\r\n      <summary>Obtient la quantité de mémoire système paginable allouée pour le processus associé.</summary>\r\n      <returns>Quantité de mémoire système, en octets, allouée au processus associé qui peut être écrite dans le fichier d'échange de la mémoire virtuelle.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakPagedMemorySize64\">\r\n      <summary>Obtient la quantité maximale de mémoire dans le fichier d'échange de la mémoire virtuelle utilisée par le processus associé.</summary>\r\n      <returns>Quantité de mémoire maximale, en octets, allouée dans le fichier d'échange de la mémoire virtuelle pour le processus associé depuis son démarrage.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakVirtualMemorySize64\">\r\n      <summary>Obtient la quantité maximale de la mémoire virtuelle utilisée par le processus associé.</summary>\r\n      <returns>Quantité maximale de la mémoire virtuelle, en octets, allouée pour le processus associé depuis son démarrage.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakWorkingSet64\">\r\n      <summary>Obtient la quantité maximale de la mémoire physique utilisée par le processus associé.</summary>\r\n      <returns>Quantité maximale de la mémoire physique, en octets, allouée pour le processus associé depuis son démarrage.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityBoostEnabled\">\r\n      <summary>Obtient ou définit une valeur indiquant si la priorité du processus associée doit être temporairement renforcée par le système d'exploitation quand la fenêtre principale a le focus.</summary>\r\n      <returns>true si un renforcement dynamique de la priorité du processus doit être effectué pour un processus quand il quitte l'état d'attente ; sinon, false.La valeur par défaut est false.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Priority boost information could not be retrieved from the associated process resource. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityBoostEnabled\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityClass\">\r\n      <summary>Obtient ou définit la catégorie de priorité générale pour le processus associé.</summary>\r\n      <returns>Catégorie de priorité pour le processus associé, à partir de laquelle le <see cref=\"P:System.Diagnostics.Process.BasePriority\" /> du processus est calculé.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">You have set the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>\r\n      <exception cref=\"T:System.ComponentModel.InvalidEnumArgumentException\">Priority class cannot be set because it does not use a valid value, as defined in the <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> enumeration.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivateMemorySize64\">\r\n      <summary>Obtient la quantité de mémoire privée allouée pour le processus associé.</summary>\r\n      <returns>Quantité de mémoire, en octets, allouée pour le processus associé qui ne peut pas être partagé avec d'autres processus.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\">\r\n      <summary>Obtient le temps processeur privilégié pour ce processus.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" /> indiquant la durée d'exécution du code par le processus à l'intérieur du noyau du système d'exploitation.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessName\">\r\n      <summary>Obtient le nom du processus.</summary>\r\n      <returns>Nom utilisé par le système pour identifier le processus à l'intention de l'utilisateur.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process does not have an identifier, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" />.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is not on this computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessorAffinity\">\r\n      <summary>Obtient ou définit les processeurs sur lesquels l'exécution des threads de ce processus peut être planifiée.</summary>\r\n      <returns>Masque de bits représentant les processeurs sur lesquels les threads du processus associé peuvent s'exécuter.La valeur par défaut dépend du nombre de processeurs dont est équipé l'ordinateur.La valeur par défaut est 2 n -1, où n est le nombre de processeurs.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> was not available.-or- The process has exited. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Refresh\">\r\n      <summary>Ignore toute information concernant le processus associé qui a été mis en cache dans le composant du processus.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SafeHandle\">\r\n      <summary>Obtient le handle natif de ce processus.</summary>\r\n      <returns>Handle natif de ce processus.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SessionId\">\r\n      <summary>Obtient l'identificateur de session Terminal Server du processus associé.</summary>\r\n      <returns>Identificateur de session Terminal Server du processus associé.</returns>\r\n      <exception cref=\"T:System.NullReferenceException\">There is no session associated with this process.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The <see cref=\"P:System.Diagnostics.Process.SessionId\" /> property is not supported on Windows 98.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardError\">\r\n      <summary>Obtient un flux utilisé pour lire la sortie d'erreur de l'application.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IO.StreamReader\" /> qui peut être utilisé pour lire le flux d'erreurs standard de l'application.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginErrorReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardInput\">\r\n      <summary>Obtient un flux utilisé pour écrire l'entrée de l'application.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IO.StreamWriter\" /> qui peut être utilisé pour écrire le flux d'entrée standard de l'application.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> stream has not been defined because <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" /> is set to false. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardOutput\">\r\n      <summary>Obtient un flux utilisé pour lire la sortie textuelle de l'application.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IO.StreamReader\" /> qui peut être utilisé pour lire le flux de sortie standard de l'application.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginOutputReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start\">\r\n      <summary>Démarre (ou réutilise) la ressource de processus qui est spécifiée par la propriété <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> de ce composant <see cref=\"T:System.Diagnostics.Process\" /> et l'associe au composant.</summary>\r\n      <returns>true si une ressource de processus est démarrée ; false si aucune ressource de processus n'est démarrée (par exemple, si un processus existant est réutilisé).</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <see cref=\"T:System.Diagnostics.Process\" /> component's <see cref=\"P:System.Diagnostics.Process.StartInfo\" />.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> member of the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> property is true while <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is true. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)\">\r\n      <summary>Démarre la ressource de processus qui est spécifiée par le paramètre contenant les informations de démarrage du processus (par exemple, le nom de fichier du processus à démarrer) et l'associe à un nouveau composant <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nouvel élément <see cref=\"T:System.Diagnostics.Process\" /> qui est associé à la ressource de processus, ou null si aucune ressource de processus n'est démarrée.Notez qu'un nouveau processus qui est démarré en même temps que les instances du même processus déjà en cours d'exécution sera indépendant des autres.En outre, le démarrage peut retourner un processus non null avec sa propriété <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> déjà définie à true.Dans ce cas, le processus démarré peut avoir activé une instance existante de lui-même, puis s'être arrêté.</returns>\r\n      <param name=\"startInfo\">\r\n        <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> qui contient les informations utilisées pour démarrer le processus, y compris le nom de fichier et d'éventuels arguments de ligne de commande. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is also true.-or-The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UserName\" /> property is not null or empty or the <see cref=\"P:System.Diagnostics.ProcessStartInfo.Password\" /> property is not null.</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"startInfo\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The file specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property could not be found.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String)\">\r\n      <summary>Démarre une ressource de processus en spécifiant le nom d'un document ou d'un fichier d'application et l'associe à un nouveau composant <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nouvel élément <see cref=\"T:System.Diagnostics.Process\" /> qui est associé à la ressource de processus, ou null si aucune ressource de processus n'est démarrée.Notez qu'un nouveau processus qui est démarré en même temps que les instances du même processus déjà en cours d'exécution sera indépendant des autres.En outre, le démarrage peut retourner un processus non null avec sa propriété <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> déjà définie à true.Dans ce cas, le processus démarré peut avoir activé une instance existante de lui-même, puis s'être arrêté.</returns>\r\n      <param name=\"fileName\">Nom d'un document ou d'un fichier d'application à exécuter dans le processus. </param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String)\">\r\n      <summary>Démarre une ressource de processus en spécifiant le nom d'une application et un jeu d'arguments de ligne de commande et l'associe à la ressource avec un nouveau composant <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nouvel élément <see cref=\"T:System.Diagnostics.Process\" /> qui est associé à la ressource de processus, ou null si aucune ressource de processus n'est démarrée.Notez qu'un nouveau processus qui est démarré en même temps que les instances du même processus déjà en cours d'exécution sera indépendant des autres.En outre, le démarrage peut retourner un processus non null avec sa propriété <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> déjà définie à true.Dans ce cas, le processus démarré peut avoir activé une instance existante de lui-même, puis s'être arrêté.</returns>\r\n      <param name=\"fileName\">Nom d'un fichier d'application à exécuter dans le processus. </param>\r\n      <param name=\"arguments\">Arguments de ligne de commande à passer au moment du démarrage du processus. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <paramref name=\"fileName\" /> or <paramref name=\"arguments\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>Démarre une ressource de processus en spécifiant le nom d'une application, un nom d'utilisateur, un mot de passe et un domaine et associe la ressource à un nouveau composant <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nouvel élément <see cref=\"T:System.Diagnostics.Process\" /> qui est associé à la ressource de processus, ou null si aucune ressource de processus n'est démarrée.Notez qu'un nouveau processus qui est démarré en même temps que les instances du même processus déjà en cours d'exécution sera indépendant des autres.En outre, le démarrage peut retourner un processus non null avec sa propriété <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> déjà définie à true.Dans ce cas, le processus démarré peut avoir activé une instance existante de lui-même, puis s'être arrêté.</returns>\r\n      <param name=\"fileName\">Nom d'un fichier d'application à exécuter dans le processus.</param>\r\n      <param name=\"userName\">Nom d'utilisateur à utiliser au moment du démarrage du processus.</param>\r\n      <param name=\"password\">\r\n        <see cref=\"T:System.Security.SecureString\" /> qui contient le mot de passe à utiliser lors du démarrage du processus.</param>\r\n      <param name=\"domain\">Domaine à utiliser au moment du démarrage du processus.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>Démarre une ressource de processus en spécifiant le nom d'une application, un jeu d'arguments de ligne de commande, un nom d'utilisateur, un mot de passe et un domaine, et associe la ressource à un nouveau composant <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nouvel élément <see cref=\"T:System.Diagnostics.Process\" /> qui est associé à la ressource de processus, ou null si aucune ressource de processus n'est démarrée.Notez qu'un nouveau processus qui est démarré en même temps que les instances du même processus déjà en cours d'exécution sera indépendant des autres.En outre, le démarrage peut retourner un processus non null avec sa propriété <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> déjà définie à true.Dans ce cas, le processus démarré peut avoir activé une instance existante de lui-même, puis s'être arrêté.</returns>\r\n      <param name=\"fileName\">Nom d'un fichier d'application à exécuter dans le processus. </param>\r\n      <param name=\"arguments\">Arguments de ligne de commande à passer au moment du démarrage du processus. </param>\r\n      <param name=\"userName\">Nom d'utilisateur à utiliser au moment du démarrage du processus.</param>\r\n      <param name=\"password\">\r\n        <see cref=\"T:System.Security.SecureString\" /> qui contient le mot de passe à utiliser lors du démarrage du processus.</param>\r\n      <param name=\"domain\">Domaine à utiliser au moment du démarrage du processus.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartInfo\">\r\n      <summary>Obtient ou définit les propriétés à passer à la méthode <see cref=\"M:System.Diagnostics.Process.Start\" /> de <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> qui représente les données avec lesquelles démarrer le processus.Ces arguments comprennent le nom du fichier exécutable ou du document utilisé pour démarrer le processus.</returns>\r\n      <exception cref=\"T:System.ArgumentNullException\">The value that specifies the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> is null. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartTime\">\r\n      <summary>Obtient l'heure à laquelle le processus associé a démarré.</summary>\r\n      <returns>Objet qui indique l'heure de démarrage du processus.Une exception est levée si le processus n'est pas en cours d'exécution.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.StartTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or-The process has not been started.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred in the call to the Windows function.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Threads\">\r\n      <summary>Obtient le jeu des threads en cours d'exécution dans le processus associé.</summary>\r\n      <returns>Tableau de type <see cref=\"T:System.Diagnostics.ProcessThread\" /> représentant les threads du système d'exploitation en cours d'exécution dans le processus associé.</returns>\r\n      <exception cref=\"T:System.SystemException\">The process does not have an <see cref=\"P:System.Diagnostics.Process.Id\" />, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" /> instance.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.TotalProcessorTime\">\r\n      <summary>Obtient le temps processeur total pour ce processus.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" /> qui indique la durée d'utilisation de l'unité centrale par le processus associé.Cette valeur est la somme de <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> et de <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" />.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.TotalProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.UserProcessorTime\">\r\n      <summary>Obtient le temps processeur utilisateur pour ce processus.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" /> qui indique la durée d'exécution du code par le processus associé à l'intérieur de la partie application du processus (plutôt qu'à l'intérieur du noyau du système d'exploitation).</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.VirtualMemorySize64\">\r\n      <summary>Obtient la quantité de mémoire virtuelle allouée pour le processus associé.</summary>\r\n      <returns>Quantité de la mémoire virtuelle, en octets, allouée pour le processus associé.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit\">\r\n      <summary>Indique au composant <see cref=\"T:System.Diagnostics.Process\" /> d'attendre indéfiniment que le processus associé s'arrête.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\">\r\n      <summary>Indique au composant <see cref=\"T:System.Diagnostics.Process\" /> d'attendre le nombre de millisecondes spécifié que le processus associé s'arrête.</summary>\r\n      <returns>true si le processus associé s'est arrêté ; sinon, false.</returns>\r\n      <param name=\"milliseconds\">Délai, en millisecondes, à attendre que le processus associé s'arrête.Le maximum est la plus grande valeur possible d'un entier 32 bits, qui représente l'infini pour le système d'exploitation.</param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.WorkingSet64\">\r\n      <summary>Obtient la quantité de mémoire physique allouée pour le processus associé.</summary>\r\n      <returns>Quantité de la mémoire physique, en octets, allouée pour le processus associé.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModule\">\r\n      <summary>Représente un fichier .dll ou .exe chargé dans un processus particulier.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.BaseAddress\">\r\n      <summary>Obtient l'adresse mémoire à laquelle le module a été chargé.</summary>\r\n      <returns>Adresse de chargement du module.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.EntryPointAddress\">\r\n      <summary>Obtient l'adresse mémoire de la fonction qui s'exécute lorsque le système charge et exécute le module.</summary>\r\n      <returns>Point d'entrée du module.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.FileName\">\r\n      <summary>Obtient le chemin d'accès complet du module.</summary>\r\n      <returns>Chemin d'accès qualifié complet qui définit l'emplacement du module.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleMemorySize\">\r\n      <summary>Obtient la quantité de mémoire nécessaire au chargement du module.</summary>\r\n      <returns>Taille en octets de la mémoire utilisée par le module.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleName\">\r\n      <summary>Obtient le nom du module de processus.</summary>\r\n      <returns>Nom du module.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModule.ToString\">\r\n      <summary>Convertit le nom du module en chaîne.</summary>\r\n      <returns>Valeur de la propriété <see cref=\"P:System.Diagnostics.ProcessModule.ModuleName\" />.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModuleCollection\">\r\n      <summary>Fournit une collection fortement typée d'objets <see cref=\"T:System.Diagnostics.ProcessModule\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor\">\r\n      <summary>Initialise une nouvelle instance de la classe <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> à laquelle aucune instance de <see cref=\"T:System.Diagnostics.ProcessModule\" /> n'est associée.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])\">\r\n      <summary>Initialise une nouvelle instance de la classe <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> à l'aide du tableau spécifié d'instances de <see cref=\"T:System.Diagnostics.ProcessModule\" />.</summary>\r\n      <param name=\"processModules\">Tableau d'instances de <see cref=\"T:System.Diagnostics.ProcessModule\" /> avec lequel initialiser cette instance de <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)\">\r\n      <summary>Détermine si le module de processus spécifié existe dans la collection.</summary>\r\n      <returns>true si le module existe dans la collection ; sinon, false.</returns>\r\n      <param name=\"module\">Instance de <see cref=\"T:System.Diagnostics.ProcessModule\" /> qui indique le module à rechercher dans cette collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)\">\r\n      <summary>Copie un tableau d'instances de <see cref=\"T:System.Diagnostics.ProcessModule\" /> vers la collection, à l'index spécifié.</summary>\r\n      <param name=\"array\">Tableau d'instances de <see cref=\"T:System.Diagnostics.ProcessModule\" /> à ajouter à la collection. </param>\r\n      <param name=\"index\">Emplacement auquel ajouter les nouvelles instances. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)\">\r\n      <summary>Fournit l'emplacement d'un module spécifié dans la collection.</summary>\r\n      <returns>Index de base zéro qui définit l'emplacement du module dans <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />.</returns>\r\n      <param name=\"module\">\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> dont l'index est récupéré. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)\">\r\n      <summary>Obtient un index pour itérer au sein du jeu de modules de processus.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> qui indexe les modules dans la collection. </returns>\r\n      <param name=\"index\">Valeur d'index de base zéro du module dans la collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ProcessPriorityClass\">\r\n      <summary>Indique la priorité associée par le système à un processus.Cette valeur, ainsi que la valeur de priorité de chaque thread du processus, déterminent le niveau de priorité de base de chaque thread.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.AboveNormal\">\r\n      <summary>Spécifie que le processus a une priorité supérieure à Normal, mais inférieure à <see cref=\"F:System.Diagnostics.ProcessPriorityClass.High\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.BelowNormal\">\r\n      <summary>Spécifie que le processus a une priorité supérieure à Idle, mais inférieure à Normal.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.High\">\r\n      <summary>Spécifie que le processus effectue des tâches en temps critique qui doivent être exécutées immédiatement, telles que la boîte de dialogue Task List qui doit répondre rapidement lorsqu'elle est appelée par l'utilisateur, peu importe la charge du système d'exploitation.Les threads du processus prévalent sur les threads de processus de classe de priorités normale ou inactive.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Idle\">\r\n      <summary>Spécifie que les threads de ce processus ne s'exécutent que si le système est inactif, par exemple un écran de veille.Les threads de tout processus s'exécutant dans une classe de priorités supérieure prévalent sur les threads du processus.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Normal\">\r\n      <summary>Spécifie que le processus ne possède aucune exigence de planification spéciale.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.RealTime\">\r\n      <summary>Spécifie que le processus possède la priorité la plus élevée.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessStartInfo\">\r\n      <summary>Spécifie un jeu de valeurs utilisées lors du démarrage d'un processus.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor\">\r\n      <summary>Initialise une nouvelle instance de la classe <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> sans spécifier le nom de fichier avec lequel démarrer le processus.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)\">\r\n      <summary>Initialise une nouvelle instance de la classe <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> et spécifie un nom de fichier (d'une application ou d'un document, par exemple) avec lequel démarrer le processus.</summary>\r\n      <param name=\"fileName\">Application ou document avec lequel démarrer un processus. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)\">\r\n      <summary>Initialise une nouvelle instance de la classe <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> et spécifie un nom de fichier d'application avec lequel démarrer le processus, ainsi qu'un jeu d'arguments de ligne de commande à passer à l'application.</summary>\r\n      <param name=\"fileName\">Application avec laquelle démarrer un processus. </param>\r\n      <param name=\"arguments\">Arguments de ligne de commande à passer à l'application lors du démarrage du processus. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Arguments\">\r\n      <summary>Obtient ou définit le jeu d'arguments de ligne de commande à utiliser lors du démarrage de l'application.</summary>\r\n      <returns>Chaîne unique contenant les arguments à passer à l'application cible spécifiée dans la propriété <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" />.La valeur par défaut est une chaîne vide (\"\").Sur Windows Vista et les versions antérieures du système d'exploitation Windows, la longueur des arguments ajoutés à la longueur du chemin d'accès complet au processus doit être inférieur à 2 080.Sur Windows 7 et versions ultérieures, la longueur doit être inférieure à 32 699.Les arguments étant analysés et interprétés par l'application cible, ils doivent correspondre aux attentes de cette application.Pour les applications .NET, comme illustré dans les exemples ci-dessous, les espaces sont interprétés comme un séparateur entre plusieurs arguments.Un argument unique qui comprend des espaces doit être placé entre guillemets, mais les guillemets ne sont pas transmises à l'application cible.Dans les guillemets du dernier argument analysé, vous devez affecter un triple échappement à chaque guillemet.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.CreateNoWindow\">\r\n      <summary>Obtient ou définit une valeur indiquant si le processus doit démarrer dans une nouvelle fenêtre.</summary>\r\n      <returns>true si le processus doit démarrer sans créer de nouvelle fenêtre destinée à le contenir ; sinon, false.La valeur par défaut est false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Domain\">\r\n      <summary>Obtient ou définit une valeur qui identifie le domaine à utiliser lors du démarrage du processus. </summary>\r\n      <returns>Domaine Active Directory à utiliser lors du démarrage du processus.La propriété de domaine présente un intérêt particulier pour les utilisateurs dans les environnements d'entreprise qui utilisent Active Directory.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Environment\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.FileName\">\r\n      <summary>Obtient ou définit l'application ou le document à démarrer.</summary>\r\n      <returns>Nom de l'application à démarrer, ou nom d'un document d'un type de fichier associé à une application et disposant d'une action d'ouverture par défaut.La valeur par défaut est une chaîne vide (\"\").</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.LoadUserProfile\">\r\n      <summary>Obtient ou définit une valeur qui indique si le profil utilisateur Windows doit être chargé à partir du Registre. </summary>\r\n      <returns>true si le profil utilisateur Windows doit être chargé ; sinon, false.La valeur par défaut est false.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Password\">\r\n      <summary>Obtient ou définit une chaîne sécurisée contenant le mot de passe de l'utilisateur à utiliser lors du démarrage du processus.</summary>\r\n      <returns>Mot de passe utilisateur à utiliser lors du démarrage du processus.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\">\r\n      <summary>Obtient ou définit une valeur qui indique si la sortie d'erreur d'une application est écrite dans le flux <see cref=\"P:System.Diagnostics.Process.StandardError\" />.</summary>\r\n      <returns>true si la sortie d'erreur est écrite dans <see cref=\"P:System.Diagnostics.Process.StandardError\" /> ; sinon, false.La valeur par défaut est false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\">\r\n      <summary>Obtient ou définit une valeur qui indique si l'entrée pour une application est lue à partir du flux <see cref=\"P:System.Diagnostics.Process.StandardInput\" />.</summary>\r\n      <returns>true si l'entrée est lue depuis <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> ; sinon, false.La valeur par défaut est false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\">\r\n      <summary>Obtient ou définit une valeur qui indique si la sortie textuelle d'une application est écrite dans le flux <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />.</summary>\r\n      <returns>true si la sortie doit être écrite dans <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> ; sinon, false.La valeur par défaut est false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding\">\r\n      <summary>Obtient ou définit l'encodage recommandé pour la sortie d'erreur.</summary>\r\n      <returns>Objet qui représente l'encodage recommandé pour la sortie d'erreur.La valeur par défaut est null.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding\">\r\n      <summary>Obtient ou définit l'encodage recommandé pour la sortie standard.</summary>\r\n      <returns>Objet qui représente l'encodage recommandé pour la sortie standard.La valeur par défaut est null.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UserName\">\r\n      <summary>Obtient ou définit le nom d'utilisateur à utiliser lors du démarrage du processus.</summary>\r\n      <returns>Nom d'utilisateur à utiliser au moment du démarrage du processus.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\">\r\n      <summary>Obtient ou définit une valeur indiquant si le shell du système d'exploitation doit être utilisé pour démarrer le processus.</summary>\r\n      <returns>true si le shell doit être utilisé lors du démarrage du processus ; false si le processus doit être créé directement à partir du fichier exécutable.La valeur par défaut est true.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.WorkingDirectory\">\r\n      <summary>Lorsque la propriété <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> est false, obtient ou définit le répertoire de travail du processus à démarrer.Lorsque <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> est true, obtient ou définit le répertoire qui contient le processus à démarrer.</summary>\r\n      <returns>Lorsque <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> est true, nom qualifié complet du répertoire qui contient le processus à démarrer.Lorsque la propriété <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> est false, répertoire de travail du processus à démarrer.La valeur par défaut est une chaîne vide (\"\").</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThread\">\r\n      <summary>Représente un thread de processus du système d'exploitation.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.BasePriority\">\r\n      <summary>Obtient la priorité de base du thread.</summary>\r\n      <returns>Priorité de base du thread, calculée par le système d'exploitation en combinant la classe de priorité du processus avec le niveau de priorité du thread associé.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.CurrentPriority\">\r\n      <summary>Obtient la priorité actuelle du thread.</summary>\r\n      <returns>Priorité actuelle du thread, qui peut être différente de la priorité de base, selon la manière dont le système d'exploitation planifie le thread.La priorité peut être renforcée temporairement pour un thread actif.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.Id\">\r\n      <summary>Obtient l'identificateur unique du thread.</summary>\r\n      <returns>Identificateur unique associé à un thread spécifique.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.IdealProcessor\">\r\n      <summary>Définit le processeur par défaut sur lequel exécuter ce thread.</summary>\r\n      <returns>Processeur par défaut pour le thread, utilisé lorsque le système planifie des threads, afin de déterminer le processeur sur lequel exécuter le thread.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Le système n'a pas pu définir le thread pour qu'il démarre sur le processeur spécifié. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plateforme est Windows 98 ou Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Le processus se trouve sur un ordinateur distant.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityBoostEnabled\">\r\n      <summary>Obtient ou définit une valeur indiquant si le système d'exploitation doit renforcer temporairement la priorité du thread qui lui est associé chaque fois que la fenêtre principale du processus du thread reçoit le focus.</summary>\r\n      <returns>true pour renforcer la priorité du thread en cas d'interaction de l'utilisateur avec l'interface du processus ; sinon, false.La valeur par défaut est false.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Les informations sur le renforcement de la priorité n'ont pas pu être récupérées.ouLes informations sur le renforcement de la priorité n'ont pas pu être définies. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plateforme est Windows 98 ou Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Le processus se trouve sur un ordinateur distant.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityLevel\">\r\n      <summary>Obtient ou définit le niveau de priorité du thread.</summary>\r\n      <returns>Une des valeurs <see cref=\"T:System.Diagnostics.ThreadPriorityLevel\" /> spécifiant une plage qui limite la priorité du thread.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Les informations sur le renforcement de la priorité du thread n'ont pas pu être récupérées. ouLe niveau de priorité du thread n'a pas pu être défini.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plateforme est Windows 98 ou Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Le processus se trouve sur un ordinateur distant.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime\">\r\n      <summary>Obtient la durée d'exécution du code par le thread à l'intérieur du noyau du système d'exploitation.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" /> indiquant la durée d'exécution du code par le thread à l'intérieur du noyau du système d'exploitation.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">La durée du thread n'a pas pu être récupérée. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plateforme est Windows 98 ou Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Le processus se trouve sur un ordinateur distant.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ProcessorAffinity\">\r\n      <summary>Définit les processeurs sur lesquels le thread associé peut s'exécuter.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IntPtr\" /> désignant un jeu de bits, chacun d'eux représentant un processeur sur lequel le thread peut s'exécuter.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">L'affinité du processeur n'a pas pu être définie. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plateforme est Windows 98 ou Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Le processus se trouve sur un ordinateur distant.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThread.ResetIdealProcessor\">\r\n      <summary>Réinitialise le processeur idéal pour ce thread afin d'indiquer qu'il n'existe aucun processeur idéal.En d'autres termes, cela signifie que tous les processeurs sont idéaux.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Le processeur idéal n'a pas pu être réinitialisé. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plateforme est Windows 98 ou Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Le processus se trouve sur un ordinateur distant.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartAddress\">\r\n      <summary>Obtient l'adresse mémoire de la fonction appelée par le système d'exploitation qui a démarré ce thread.</summary>\r\n      <returns>Adresse de départ du thread, qui désigne la fonction définie par l'application exécutée par le thread.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plateforme est Windows 98 ou Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Le processus se trouve sur un ordinateur distant.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartTime\">\r\n      <summary>Obtient l'heure à laquelle le système d'exploitation a démarré le thread.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.DateTime\" /> représentant l'heure du système au moment où le système d'exploitation a démarré le thread.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">La durée du thread n'a pas pu être récupérée. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plateforme est Windows 98 ou Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Le processus se trouve sur un ordinateur distant.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ThreadState\">\r\n      <summary>Obtient l'état actuel de ce thread.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ThreadState\" /> indiquant l'exécution du thread (par exemple, s'il est en cours d'exécution, en attente ou terminé).</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plateforme est Windows 98 ou Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Le processus se trouve sur un ordinateur distant.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.TotalProcessorTime\">\r\n      <summary>Obtient la durée totale d'utilisation du processeur par ce thread.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" /> indiquant la durée pendant laquelle le thread contrôlait le processeur.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">La durée du thread n'a pas pu être récupérée. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plateforme est Windows 98 ou Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Le processus se trouve sur un ordinateur distant.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.UserProcessorTime\">\r\n      <summary>Obtient la durée d'exécution du code par le thread associé au sein de l'application.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" /> indiquant la durée d'exécution du code par le thread à l'intérieur de l'application, et non à l'intérieur du noyau du système d'exploitation.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">La durée du thread n'a pas pu être récupérée. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plateforme est Windows 98 ou Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Le processus se trouve sur un ordinateur distant.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.WaitReason\">\r\n      <summary>Obtient la raison pour laquelle le thread est en attente.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ThreadWaitReason\" /> représentant la raison pour laquelle le thread est en état d'attente.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">Le thread n'est pas en état d'attente. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plateforme est Windows 98 ou Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Le processus se trouve sur un ordinateur distant.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThreadCollection\">\r\n      <summary>Fournit une collection fortement typée d'objets <see cref=\"T:System.Diagnostics.ProcessThread\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor\">\r\n      <summary>Initialise une nouvelle instance de la classe <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> à laquelle aucune instance de <see cref=\"T:System.Diagnostics.ProcessThread\" /> n'est associée.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])\">\r\n      <summary>Initialise une nouvelle instance de la classe <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> à l'aide du tableau spécifié d'instances de <see cref=\"T:System.Diagnostics.ProcessThread\" />.</summary>\r\n      <param name=\"processThreads\">Tableau d'instances de <see cref=\"T:System.Diagnostics.ProcessThread\" /> avec lequel initialiser cette instance de <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)\">\r\n      <summary>Ajoute un thread de processus à la collection.</summary>\r\n      <returns>Index de base zéro du thread dans la collection.</returns>\r\n      <param name=\"thread\">Thread à ajouter à la collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)\">\r\n      <summary>Détermine si le thread de processus spécifié existe dans la collection.</summary>\r\n      <returns>true si le thread existe dans la collection ; sinon, false.</returns>\r\n      <param name=\"thread\">Instance de <see cref=\"T:System.Diagnostics.ProcessThread\" /> qui indique le thread à rechercher dans cette collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)\">\r\n      <summary>Copie un tableau d'instances de <see cref=\"T:System.Diagnostics.ProcessThread\" /> vers la collection, à l'index spécifié.</summary>\r\n      <param name=\"array\">Tableau d'instances de <see cref=\"T:System.Diagnostics.ProcessThread\" /> à ajouter à la collection. </param>\r\n      <param name=\"index\">Emplacement auquel ajouter les nouvelles instances. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)\">\r\n      <summary>Fournit l'emplacement d'un thread spécifié dans la collection.</summary>\r\n      <returns>Index de base zéro qui définit l'emplacement du thread dans <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />.</returns>\r\n      <param name=\"thread\">\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> dont l'index est récupéré. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)\">\r\n      <summary>Insère un thread de processus à l'emplacement spécifié dans la collection.</summary>\r\n      <param name=\"index\">Index de base zéro indiquant l'emplacement dans lequel insérer le thread. </param>\r\n      <param name=\"thread\">Thread à insérer dans la collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)\">\r\n      <summary>Obtient un index pour itérer au sein du jeu de threads de processus.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> qui indexe les threads dans la collection.</returns>\r\n      <param name=\"index\">Valeur d'index de base zéro du thread dans la collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)\">\r\n      <summary>Supprime de la collection un thread de processus.</summary>\r\n      <param name=\"thread\">Thread à supprimer de la collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ThreadPriorityLevel\">\r\n      <summary>Spécifie le niveau de priorité d'un thread.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.AboveNormal\">\r\n      <summary>Spécifie un niveau au-dessus de la priorité normale pour le <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> associé.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.BelowNormal\">\r\n      <summary>Spécifie un niveau en dessous de la priorité normale pour le <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> associé.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Highest\">\r\n      <summary>Spécifie la priorité la plus élevée.Elle se situe deux niveaux au-dessus de la priorité normale pour le <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> associé.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Idle\">\r\n      <summary>Spécifie la priorité du type inactif.Il s'agit de la plus basse priorité possible de tous les threads, indépendante de la valeur du <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> associé.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Lowest\">\r\n      <summary>Spécifie la priorité la plus basse.Elle se situe deux niveaux en dessous de la priorité normale pour le <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> associé.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Normal\">\r\n      <summary>Spécifie la priorité normale pour le <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> associé.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.TimeCritical\">\r\n      <summary>Spécifie la priorité critique.Il s'agit de la priorité la plus élevée de tous les threads, indépendante de la valeur du <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> associé.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadState\">\r\n      <summary>Spécifie l'état d'exécution actuel du thread.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Initialized\">\r\n      <summary>État qui indique que le thread a été initialisé, mais n'a pas encore démarré.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Ready\">\r\n      <summary>État qui indique que le thread attend de pouvoir utiliser un processeur, car aucun processeur n'est libre.Le thread est prêt à s'exécuter sur le prochain processeur disponible.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Running\">\r\n      <summary>État qui indique que le thread utilise actuellement un processeur.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Standby\">\r\n      <summary>État qui indique que le thread est sur le point d'utiliser un processeur.Un seul thread peut être dans cet état à la fois.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Terminated\">\r\n      <summary>État qui indique que le thread a terminé de s'exécuter et s'est fermé.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Transition\">\r\n      <summary>État qui indique que le thread attend une ressource autre que le processeur avant de pouvoir s'exécuter.Par exemple, il peut attendre que sa pile d'exécution soit paginée à partir du disque.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Unknown\">\r\n      <summary>L'état du thread est inconnu.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Wait\">\r\n      <summary>État qui indique que le thread n'est pas prêt à utiliser le processeur, car il attend la fin d'une opération de périphérique ou la libération d'une ressource.Lorsque le thread est prêt, il est replanifié.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadWaitReason\">\r\n      <summary>Spécifie la raison pour laquelle un thread attend.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairHigh\">\r\n      <summary>Le thread attend une paire d'événements haute.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairLow\">\r\n      <summary>Le thread attend une paire d'événements basse.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.ExecutionDelay\">\r\n      <summary>L'exécution du thread est différée.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Executive\">\r\n      <summary>Le thread attend le planificateur.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.FreePage\">\r\n      <summary>Le thread attend une page de mémoire virtuelle libre.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReceive\">\r\n      <summary>Le thread attend l'arrivée d'un appel de procédure local.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReply\">\r\n      <summary>Le thread attend l'arrivée d'une réponse à un appel de procédure local.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageIn\">\r\n      <summary>Le thread attend l'arrivée d'une page de mémoire virtuelle en mémoire.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageOut\">\r\n      <summary>Le thread attend l'écriture d'une page de mémoire virtuelle sur le disque.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Suspended\">\r\n      <summary>L'exécution du thread est interrompue.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.SystemAllocation\">\r\n      <summary>Le thread attend une allocation système.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Unknown\">\r\n      <summary>Le thread attend pour une raison inconnue.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.UserRequest\">\r\n      <summary>Le thread attend une demande utilisateur.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.VirtualMemory\">\r\n      <summary>Le thread attend que le système alloue de la mémoire virtuelle.</summary>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/it/System.Diagnostics.Process.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<doc>\r\n  <assembly>\r\n    <name>System.Diagnostics.Process</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\">\r\n      <summary>[SecurityCritical] Fornisce un wrapper gestito per un handle di processo.</summary>\r\n    </member>\r\n    <member name=\"M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)\">\r\n      <summary>[SecurityCritical] Inizializza una nuova istanza della classe <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> dall'handle specificato, indicando se rilasciare l'handle durante la fase di finalizzazione. </summary>\r\n      <param name=\"existingHandle\">Handle di cui eseguire il wrapping.</param>\r\n      <param name=\"ownsHandle\">trueper consentire in modo affidabile <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> rilasciare l'handle durante la fase di finalizzazione; in caso contrario, false.</param>\r\n    </member>\r\n    <member name=\"P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid\"></member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventArgs\">\r\n      <summary>Fornisce i dati per gli eventi <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> e <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.DataReceivedEventArgs.Data\">\r\n      <summary>Ottiene la riga di caratteri che è stata scritta in un flusso di output di <see cref=\"T:System.Diagnostics.Process\" /> reindirizzato.</summary>\r\n      <returns>Riga scritta da un <see cref=\"T:System.Diagnostics.Process\" /> associato al relativo flusso di <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> o di <see cref=\"P:System.Diagnostics.Process.StandardError\" /> reindirizzato.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventHandler\">\r\n      <summary>Rappresenta il metodo che gestirà l'evento <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> o <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> di un oggetto <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <param name=\"sender\">Origine dell'evento. </param>\r\n      <param name=\"e\">Oggetto <see cref=\"T:System.Diagnostics.DataReceivedEventArgs\" /> che contiene i dati dell'evento. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.Process\">\r\n      <summary>Fornisce l'accesso ai processi locali e remoti e permette di avviare e arrestare i processi locali del sistema.Per esaminare il codice sorgente di .NET Framework per questo tipo, vedere Origine riferimento.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.#ctor\">\r\n      <summary>Inizializza una nuova istanza della classe <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.BasePriority\">\r\n      <summary>Ottiene la priorità base del processo associato.</summary>\r\n      <returns>Priorità base, calcolata dalla proprietà <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> del processo associato.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or- The process has not started, so there is no process ID. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginErrorReadLine\">\r\n      <summary>Inizia le operazioni di lettura asincrona sul flusso <see cref=\"P:System.Diagnostics.Process.StandardError\" /> reindirizzato dell'applicazione.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginOutputReadLine\">\r\n      <summary>Inizia le operazioni di lettura asincrona sul flusso <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> reindirizzato dell'applicazione.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelErrorRead\">\r\n      <summary>Annulla l'operazione di lettura asincrona sul flusso <see cref=\"P:System.Diagnostics.Process.StandardError\" /> reindirizzato di un'applicazione.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelOutputRead\">\r\n      <summary>Annulla l'operazione di lettura asincrona sul flusso <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> reindirizzato di un'applicazione.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose\"></member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose(System.Boolean)\">\r\n      <summary>Rilascia tutte le risorse usate dal processo.</summary>\r\n      <param name=\"disposing\">true per rilasciare sia le risorse gestite sia quelle non gestite; false per rilasciare solo le risorse non gestite. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.EnableRaisingEvents\">\r\n      <summary>Ottiene o imposta la generazione dell'evento <see cref=\"E:System.Diagnostics.Process.Exited\" /> quando il processo viene terminato.</summary>\r\n      <returns>true se l'evento <see cref=\"E:System.Diagnostics.Process.Exited\" /> dovrà essere generato quando il processo associato viene terminato (mediante un'uscita o una chiamata al metodo <see cref=\"M:System.Diagnostics.Process.Kill\" />); in caso contrario, false.Il valore predefinito è false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.EnterDebugMode\">\r\n      <summary>Imposta un componente <see cref=\"T:System.Diagnostics.Process\" /> nello stato che gli permette di interagire con i processi del sistema operativo eseguiti in modalità speciale attivando la proprietà nativa SeDebugPrivilege sul thread corrente.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.ErrorDataReceived\">\r\n      <summary>Si verifica quando un'applicazione scrive nel proprio flusso <see cref=\"P:System.Diagnostics.Process.StandardError\" /> reindirizzato.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitCode\">\r\n      <summary>Ottiene il valore specificato dal processo associato quando è stato terminato.</summary>\r\n      <returns>Codice specificato dal processo associato quando è stato terminato.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has not exited.-or- The process <see cref=\"P:System.Diagnostics.Process.Handle\" /> is not valid. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitCode\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.Exited\">\r\n      <summary>Si verifica al termine di un processo.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitTime\">\r\n      <summary>Ottiene l'ora in cui il processo associato è stato terminato.</summary>\r\n      <returns>Oggetto <see cref=\"T:System.DateTime\" /> che indica il momento in cui il processo associato è stato terminato.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetCurrentProcess\">\r\n      <summary>Ottiene un nuovo componente <see cref=\"T:System.Diagnostics.Process\" /> e lo associa al processo attivo.</summary>\r\n      <returns>Nuovo componente <see cref=\"T:System.Diagnostics.Process\" /> associato alla risorsa di processo che sta eseguendo l'applicazione chiamante.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32)\">\r\n      <summary>Restituisce un nuovo componente <see cref=\"T:System.Diagnostics.Process\" />, dato l'identificatore di un processo nel computer locale.</summary>\r\n      <returns>Componente <see cref=\"T:System.Diagnostics.Process\" /> associato alla risorsa locale del processo identificata dal parametro <paramref name=\"processId\" />.</returns>\r\n      <param name=\"processId\">Identificatore univoco nel sistema di una risorsa di processo. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)\">\r\n      <summary>Restituisce un nuovo componente <see cref=\"T:System.Diagnostics.Process\" />, dato un identificatore di processo e il nome di un computer sulla rete.</summary>\r\n      <returns>Componente <see cref=\"T:System.Diagnostics.Process\" /> associato a una risorsa di processo remota identificata dal parametro <paramref name=\"processId\" />.</returns>\r\n      <param name=\"processId\">Identificatore univoco nel sistema di una risorsa di processo. </param>\r\n      <param name=\"machineName\">Nome di un computer della rete. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.-or- The <paramref name=\"machineName\" /> parameter syntax is invalid.The name might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses\">\r\n      <summary>Crea un nuovo componente <see cref=\"T:System.Diagnostics.Process\" /> per ciascuna risorsa di processo del computer locale.</summary>\r\n      <returns>Matrice di tipo <see cref=\"T:System.Diagnostics.Process\" /> che rappresenta tutte le risorse di processo in esecuzione sul computer locale.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses(System.String)\">\r\n      <summary>Crea un nuovo componente <see cref=\"T:System.Diagnostics.Process\" /> per ciascuna risorsa di processo nel computer specificato.</summary>\r\n      <returns>Matrice di tipo <see cref=\"T:System.Diagnostics.Process\" /> che rappresenta tutte le risorse di processo in esecuzione sul computer specificato.</returns>\r\n      <param name=\"machineName\">Computer da cui leggere l'elenco di processi. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String)\">\r\n      <summary>Crea una matrice di nuovi componenti <see cref=\"T:System.Diagnostics.Process\" /> e li associa a tutte le risorse di processo nel computer locale che condividono il nome di processo specificato.</summary>\r\n      <returns>Una matrice di tipo <see cref=\"T:System.Diagnostics.Process\" /> che rappresenta le risorse di processo che eseguono l'applicazione o il file specificati.</returns>\r\n      <param name=\"processName\">Nome descrittivo del processo. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)\">\r\n      <summary>Crea una matrice di nuovi componenti <see cref=\"T:System.Diagnostics.Process\" /> e li associa a tutte le risorse di processo in un computer remoto che condividono il nome di processo specificato.</summary>\r\n      <returns>Una matrice di tipo <see cref=\"T:System.Diagnostics.Process\" /> che rappresenta le risorse di processo che eseguono l'applicazione o il file specificati.</returns>\r\n      <param name=\"processName\">Nome descrittivo del processo. </param>\r\n      <param name=\"machineName\">Nome di un computer della rete. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.HasExited\">\r\n      <summary>Ottiene un valore che indica se il processo associato è stato terminato.</summary>\r\n      <returns>true se il processo del sistema operativo cui fa riferimento il componente <see cref=\"T:System.Diagnostics.Process\" /> è stato terminato; in caso contrario, false.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with the object. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The exit code for the process could not be retrieved. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.HasExited\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Id\">\r\n      <summary>Ottiene l'identificatore univoco per il processo associato.</summary>\r\n      <returns>Identificatore univoco generato dal sistema relativo al processo cui questa istanza di <see cref=\"T:System.Diagnostics.Process\" /> fa riferimento.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process's <see cref=\"P:System.Diagnostics.Process.Id\" /> property has not been set.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Kill\">\r\n      <summary>Arresta immediatamente il processo associato.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to call <see cref=\"M:System.Diagnostics.Process.Kill\" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has already exited. -or-There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.LeaveDebugMode\">\r\n      <summary>Fa uscire un componente <see cref=\"T:System.Diagnostics.Process\" /> dallo stato che permette di interagire con i processi del sistema operativo eseguiti in modalità speciale.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MachineName\">\r\n      <summary>Ottiene il nome del computer sul quale è in esecuzione il processo associato.</summary>\r\n      <returns>Nome del computer sul quale è in esecuzione il processo associato.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MainModule\">\r\n      <summary>Ottiene il modulo principale del processo associato.</summary>\r\n      <returns>Oggetto <see cref=\"T:System.Diagnostics.ProcessModule\" /> usato per avviare il processo.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MainModule\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A 32-bit process is trying to access the modules of a 64-bit process.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MaxWorkingSet\">\r\n      <summary>Ottiene o imposta la dimensione massima del working set consentita per il processo associato.</summary>\r\n      <returns>Dimensione massima del working set consentita in memoria per il processo, in byte.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MaxWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MinWorkingSet\">\r\n      <summary>Ottiene o imposta la dimensione minima del working set consentita per il processo associato.</summary>\r\n      <returns>Dimensione minima del working set richiesta in memoria per il processo, in byte.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MinWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Modules\">\r\n      <summary>Ottiene i moduli che sono stati caricati dal processo associato.</summary>\r\n      <returns>Matrice di tipo <see cref=\"T:System.Diagnostics.ProcessModule\" /> che rappresenta i moduli caricati dal processo associato.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for either the system process or the idle process.These processes do not have modules.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.NonpagedSystemMemorySize64\">\r\n      <summary>Ottiene la quantità di memoria di sistema non di paging allocata per il processo associato.</summary>\r\n      <returns>Quantità di memoria di sistema, in byte, allocata per il processo associato che non può essere scritta nel file di paging della memoria virtuale.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.OnExited\">\r\n      <summary>Genera l'evento <see cref=\"E:System.Diagnostics.Process.Exited\" />.</summary>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.OutputDataReceived\">\r\n      <summary>Si verifica quando un'applicazione scrive nel proprio flusso <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> reindirizzato.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedMemorySize64\">\r\n      <summary>Ottiene la quantità di memoria di paging allocata per il processo associato.</summary>\r\n      <returns>Quantità di memoria, in byte, allocata nel file di paging della memoria virtuale per il processo associato.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedSystemMemorySize64\">\r\n      <summary>Ottiene la quantità di memoria di sistema paginabile allocata per il processo associato.</summary>\r\n      <returns>Quantità di memoria di sistema, in byte, allocata per il processo associato che può essere scritta nel file di paging della memoria virtuale.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakPagedMemorySize64\">\r\n      <summary>Ottiene la quantità massima di memoria nel file di paging della memoria virtuale usata dal processo associato.</summary>\r\n      <returns>Quantità massima di memoria, in byte, allocata nel file di paging della memoria virtuale per il processo associato da quando è stato avviato.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakVirtualMemorySize64\">\r\n      <summary>Ottiene la quantità massima di memoria virtuale usata dal processo associato.</summary>\r\n      <returns>Quantità massima di memoria virtuale, in byte, allocata per il processo associato da quando è stato avviato.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakWorkingSet64\">\r\n      <summary>Ottiene la quantità massima di memoria fisica usata dal processo associato.</summary>\r\n      <returns>Quantità massima di memoria fisica, in byte, allocata per il processo associato da quando è stato avviato.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityBoostEnabled\">\r\n      <summary>Ottiene o imposta un valore che indica se la priorità del processo associato deve essere incrementata temporaneamente dal sistema operativo quando la finestra principale è attiva.</summary>\r\n      <returns>true se va eseguito l'incremento dinamico della priorità del processo uscito dallo stato di attesa; in caso contrario, false.Il valore predefinito è false.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Priority boost information could not be retrieved from the associated process resource. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityBoostEnabled\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityClass\">\r\n      <summary>Ottiene o imposta la categoria di priorità globale per il processo associato.</summary>\r\n      <returns>Categoria di priorità del processo associato, dalla quale viene calcolata la proprietà <see cref=\"P:System.Diagnostics.Process.BasePriority\" /> del processo.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">You have set the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>\r\n      <exception cref=\"T:System.ComponentModel.InvalidEnumArgumentException\">Priority class cannot be set because it does not use a valid value, as defined in the <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> enumeration.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivateMemorySize64\">\r\n      <summary>Ottiene la quantità di memoria privata allocata per il processo associato.</summary>\r\n      <returns>Quantità di memoria, in byte, allocata per il processo associato che non può essere condivisa con altri processi.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\">\r\n      <summary>Ottiene il tempo privilegiato del processore per questo processo.</summary>\r\n      <returns>Valore <see cref=\"T:System.TimeSpan\" /> che indica la quantità di tempo impiegato dal processore nell'eseguire il codice all'interno del nucleo centrale del sistema operativo.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessName\">\r\n      <summary>Ottiene il nome del processo.</summary>\r\n      <returns>Nome usato dal sistema per identificare il processo rispetto all'utente.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process does not have an identifier, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" />.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is not on this computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessorAffinity\">\r\n      <summary>Ottiene o imposta i processori nei quali è pianificata l'esecuzione dei thread di questo processo.</summary>\r\n      <returns>Maschera di bit che rappresenta i processori con cui è possibile eseguire i thread del processo associato.Il valore predefinito dipende dal numero di processori presenti nel computer.Il valore predefinito è 2 n -1, dove n è il numero di processori.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> was not available.-or- The process has exited. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Refresh\">\r\n      <summary>Elimina le informazioni relative al processo associato memorizzate nella cache all'interno del componente del processo.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SafeHandle\">\r\n      <summary>Ottiene l'handle nativo di questo processo.</summary>\r\n      <returns>Handle nativo di questo processo.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SessionId\">\r\n      <summary>Ottiene l'identificatore della sessione di Servizi terminal per il processo associato.</summary>\r\n      <returns>Identificatore della sessione di Servizi terminal per il processo associato.</returns>\r\n      <exception cref=\"T:System.NullReferenceException\">There is no session associated with this process.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The <see cref=\"P:System.Diagnostics.Process.SessionId\" /> property is not supported on Windows 98.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardError\">\r\n      <summary>Ottiene un flusso usato per leggere l'output di errore dell'applicazione.</summary>\r\n      <returns>Oggetto <see cref=\"T:System.IO.StreamReader\" /> che può essere usato per leggere il flusso di errore standard dell'applicazione.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginErrorReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardInput\">\r\n      <summary>Ottiene un flusso usato per scrivere l'input dell'applicazione.</summary>\r\n      <returns>Oggetto <see cref=\"T:System.IO.StreamWriter\" /> che può essere usato per scrivere il flusso di input standard dell'applicazione.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> stream has not been defined because <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" /> is set to false. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardOutput\">\r\n      <summary>Ottiene un flusso usato per leggere l'output dell'applicazione.</summary>\r\n      <returns>Oggetto <see cref=\"T:System.IO.StreamReader\" /> che può essere usato per leggere il flusso di output standard dell'applicazione.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginOutputReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start\">\r\n      <summary>Avvia (o riutilizza) la risorsa di processo specificata dalla proprietà <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> di questo componente <see cref=\"T:System.Diagnostics.Process\" /> e la associa al componente.</summary>\r\n      <returns>true se viene avviata una risorsa di processo, false se non viene avviata alcuna risorsa di processo nuova (ad esempio, se è stato riutilizzato un processo esistente).</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <see cref=\"T:System.Diagnostics.Process\" /> component's <see cref=\"P:System.Diagnostics.Process.StartInfo\" />.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> member of the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> property is true while <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is true. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)\">\r\n      <summary>Avvia la risorsa di processo specificata dal parametro contenente le informazioni di avvio del processo (ad esempio, il nome file del processo da avviare) e associa la risorsa a un nuovo componente <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nuovo <see cref=\"T:System.Diagnostics.Process\" /> associato alla risorsa di processo o null se non viene avviata alcuna risorsa di processo.Si noti che un nuovo processo avviato parallelamente a istanze dello stesso processo già in esecuzione sarà indipendente dalle altre.Inoltre, l'avvio può restituire un processo non Null con la relativa proprietà <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> già impostata su true.In questo caso, è possibile che il processo avviato abbia attivato un'istanza esistente di se stesso e quindi sia terminato.</returns>\r\n      <param name=\"startInfo\">Oggetto <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> che contiene le informazioni usate per avviare il processo, tra cui il nome file e gli eventuali argomenti della riga di comando. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is also true.-or-The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UserName\" /> property is not null or empty or the <see cref=\"P:System.Diagnostics.ProcessStartInfo.Password\" /> property is not null.</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"startInfo\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The file specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property could not be found.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String)\">\r\n      <summary>Avvia una risorsa di processo specificando il nome di un documento o un file di applicazione e associa la risorsa a un nuovo componente <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nuovo <see cref=\"T:System.Diagnostics.Process\" /> associato alla risorsa di processo o null se non viene avviata alcuna risorsa di processo.Si noti che un nuovo processo avviato parallelamente a istanze dello stesso processo già in esecuzione sarà indipendente dalle altre.Inoltre, l'avvio può restituire un processo non Null con la relativa proprietà <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> già impostata su true.In questo caso, è possibile che il processo avviato abbia attivato un'istanza esistente di se stesso e quindi sia terminato.</returns>\r\n      <param name=\"fileName\">Nome di un documento o di un file di applicazione da eseguire nel processo. </param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String)\">\r\n      <summary>Avvia una risorsa di processo specificando il nome di un'applicazione e un insieme di argomenti della riga di comando e associa la risorsa a un nuovo componente <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nuovo <see cref=\"T:System.Diagnostics.Process\" /> associato alla risorsa di processo o null se non viene avviata alcuna risorsa di processo.Si noti che un nuovo processo avviato parallelamente a istanze dello stesso processo già in esecuzione sarà indipendente dalle altre.Inoltre, l'avvio può restituire un processo non Null con la relativa proprietà <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> già impostata su true.In questo caso, è possibile che il processo avviato abbia attivato un'istanza esistente di se stesso e quindi sia terminato.</returns>\r\n      <param name=\"fileName\">Nome di un file di applicazione da eseguire nel processo. </param>\r\n      <param name=\"arguments\">Argomenti della riga di comando da passare all'avvio del processo. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <paramref name=\"fileName\" /> or <paramref name=\"arguments\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>Avvia una risorsa di processo specificando il nome di un'applicazione, un nome utente, una password e un dominio e associa la risorsa a un nuovo componente <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nuovo <see cref=\"T:System.Diagnostics.Process\" /> associato alla risorsa di processo o null se non viene avviata alcuna risorsa di processo.Si noti che un nuovo processo avviato parallelamente a istanze dello stesso processo già in esecuzione sarà indipendente dalle altre.Inoltre, l'avvio può restituire un processo non Null con la relativa proprietà <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> già impostata su true.In questo caso, è possibile che il processo avviato abbia attivato un'istanza esistente di se stesso e quindi sia terminato.</returns>\r\n      <param name=\"fileName\">Nome di un file di applicazione da eseguire nel processo.</param>\r\n      <param name=\"userName\">Nome utente da usare all'avvio del processo.</param>\r\n      <param name=\"password\">Classe <see cref=\"T:System.Security.SecureString\" /> contenente la password da usare all'avvio del processo.</param>\r\n      <param name=\"domain\">Dominio da usare all'avvio del processo.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>Avvia una risorsa di processo specificando il nome di un'applicazione e un insieme di argomenti della riga di comando, un nome utente, una password e un dominio, e associa la risorsa a un nuovo componente <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nuovo <see cref=\"T:System.Diagnostics.Process\" /> associato alla risorsa di processo o null se non viene avviata alcuna risorsa di processo.Si noti che un nuovo processo avviato parallelamente a istanze dello stesso processo già in esecuzione sarà indipendente dalle altre.Inoltre, l'avvio può restituire un processo non Null con la relativa proprietà <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> già impostata su true.In questo caso, è possibile che il processo avviato abbia attivato un'istanza esistente di se stesso e quindi sia terminato.</returns>\r\n      <param name=\"fileName\">Nome di un file di applicazione da eseguire nel processo. </param>\r\n      <param name=\"arguments\">Argomenti della riga di comando da passare all'avvio del processo. </param>\r\n      <param name=\"userName\">Nome utente da usare all'avvio del processo.</param>\r\n      <param name=\"password\">Classe <see cref=\"T:System.Security.SecureString\" /> contenente la password da usare all'avvio del processo.</param>\r\n      <param name=\"domain\">Dominio da usare all'avvio del processo.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartInfo\">\r\n      <summary>Ottiene o imposta le proprietà da passare al metodo <see cref=\"M:System.Diagnostics.Process.Start\" /> del componente <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Oggetto <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> che rappresenta i dati con i quali avviare il processo.Tra gli argomenti sono compresi il nome del file eseguibile o il documento usato per avviare il processo.</returns>\r\n      <exception cref=\"T:System.ArgumentNullException\">The value that specifies the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> is null. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartTime\">\r\n      <summary>Ottiene l'ora in cui è stato avviato il processo associato.</summary>\r\n      <returns>Oggetto che indica il momento in cui è stato avviato il processo.Viene generata un eccezione se il processo non è in esecuzione.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.StartTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or-The process has not been started.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred in the call to the Windows function.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Threads\">\r\n      <summary>Ottiene il gruppo di thread in esecuzione nel processo associato.</summary>\r\n      <returns>Matrice di tipo <see cref=\"T:System.Diagnostics.ProcessThread\" /> che rappresenta i thread del sistema operativo attualmente in esecuzione nel processo associato.</returns>\r\n      <exception cref=\"T:System.SystemException\">The process does not have an <see cref=\"P:System.Diagnostics.Process.Id\" />, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" /> instance.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.TotalProcessorTime\">\r\n      <summary>Ottiene il tempo totale del processore per questo processo.</summary>\r\n      <returns>Valore <see cref=\"T:System.TimeSpan\" /> che indica la quantità di tempo impiegato dal processo associato nell'utilizzo della CPU.Questo valore è la somma delle proprietà <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> e <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" />.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.TotalProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.UserProcessorTime\">\r\n      <summary>Ottiene il tempo utente del processore per questo processo.</summary>\r\n      <returns>Valore <see cref=\"T:System.TimeSpan\" /> che indica la quantità di tempo impiegato dal processo associato nell'esecuzione del codice all'interno della parte di applicazione del processo (non all'interno del nucleo centrale del sistema operativo).</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.VirtualMemorySize64\">\r\n      <summary>Ottiene la quantità di memoria virtuale allocata per il processo associato.</summary>\r\n      <returns>Quantità di memoria virtuale, in byte, allocata per il processo associato.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit\">\r\n      <summary>Indica al componente <see cref=\"T:System.Diagnostics.Process\" /> di attendere in modo indefinito la terminazione del processo associato.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\">\r\n      <summary>Indica al componente <see cref=\"T:System.Diagnostics.Process\" /> di attendere per il numero specificato di millisecondi che il processo venga terminato.</summary>\r\n      <returns>true se il processo associato è stato terminato; in caso contrario, false.</returns>\r\n      <param name=\"milliseconds\">Quantità di tempo, espressa in millisecondi, in base alla quale viene attesa la terminazione del processo associato.Il valore massimo è il valore Integer a 32 bit più alto possibile, che rappresenta l'infinito per il sistema operativo.</param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.WorkingSet64\">\r\n      <summary>Ottiene la quantità di memoria fisica allocata per il processo associato.</summary>\r\n      <returns>Quantità di memoria fisica, in byte, allocata per il processo associato.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModule\">\r\n      <summary>Rappresenta un file DLL o EXE caricato in un particolare processo.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.BaseAddress\">\r\n      <summary>Ottiene l'indirizzo di memoria in cui è stato caricato il modulo.</summary>\r\n      <returns>L'indirizzo di caricamento del modulo.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.EntryPointAddress\">\r\n      <summary>Ottiene l'indirizzo di memoria della funzione eseguita quando il sistema carica ed esegue il modulo.</summary>\r\n      <returns>Il punto di ingresso del modulo.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.FileName\">\r\n      <summary>Ottiene il percorso completo del modulo.</summary>\r\n      <returns>Il percorso completo che definisce la posizione del modulo.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleMemorySize\">\r\n      <summary>Ottiene la quantità di memoria richiesta per caricare il modulo.</summary>\r\n      <returns>La dimensione in byte della memoria occupata dal modulo.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleName\">\r\n      <summary>Ottiene il nome del modulo del processo.</summary>\r\n      <returns>Nome del modulo.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModule.ToString\">\r\n      <summary>Converte il nome del modulo in una stringa.</summary>\r\n      <returns>Valore della proprietà <see cref=\"P:System.Diagnostics.ProcessModule.ModuleName\" />.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModuleCollection\">\r\n      <summary>Fornisce un insieme fortemente tipizzato di oggetti <see cref=\"T:System.Diagnostics.ProcessModule\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor\">\r\n      <summary>Consente di inizializzare una nuova istanza della classe <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />, senza istanze di <see cref=\"T:System.Diagnostics.ProcessModule\" /> associate.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])\">\r\n      <summary>Consente di inizializzare una nuova istanza della classe <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> utilizzando la matrice specificata di istanze <see cref=\"T:System.Diagnostics.ProcessModule\" />.</summary>\r\n      <param name=\"processModules\">Matrice di istanze di <see cref=\"T:System.Diagnostics.ProcessModule\" /> con la quale inizializzare questa istanza <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> . </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)\">\r\n      <summary>Determina se il modulo di processo specificato è contenuto nell'insieme.</summary>\r\n      <returns>Restituisce true se il modulo è presente nell'insieme; in caso contrario, false.</returns>\r\n      <param name=\"module\">Istanza <see cref=\"T:System.Diagnostics.ProcessModule\" /> che indica il modulo da trovare in questo insieme. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)\">\r\n      <summary>Copia una matrice di istanze <see cref=\"T:System.Diagnostics.ProcessModule\" /> nell'insieme, in corrispondenza dell'indice specificato.</summary>\r\n      <param name=\"array\">Matrice di istanze <see cref=\"T:System.Diagnostics.ProcessModule\" /> da aggiungere all'insieme. </param>\r\n      <param name=\"index\">Posizione in cui aggiungere le nuove istanze. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)\">\r\n      <summary>Fornisce la posizione di un modulo specificato nell'insieme.</summary>\r\n      <returns>Indice a base zero che definisce la posizione del modulo in <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />.</returns>\r\n      <param name=\"module\">\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> il cui indice viene richiamato. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)\">\r\n      <summary>Ottiene un indice per scorrere l'insieme di moduli di processo.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> che indicizza i moduli nell'insieme. </returns>\r\n      <param name=\"index\">Valore di indice a base zero del modulo dell'insieme. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ProcessPriorityClass\">\r\n      <summary>Indica la priorità che il sistema associa a un processo.Questo valore, insieme al valore di priorità di ciascun thread del processo, determina il livello di priorità base di ogni thread.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.AboveNormal\">\r\n      <summary>Specifica che il processo ha una priorità superiore a Normal ma inferiore a <see cref=\"F:System.Diagnostics.ProcessPriorityClass.High\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.BelowNormal\">\r\n      <summary>Specifica che il processo ha una priorità superiore a Idle ma inferiore a Normal.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.High\">\r\n      <summary>Specifica che il processo svolge attività critiche a livello temporale che richiedono un'immediata esecuzione, come ad esempio la finestra di dialogo Task List, la quale deve essere aperta velocemente in risposta a una chiamata dell'utente, a prescindere dal carico sul sistema operativo.I thread del processo hanno la precedenza sui thread dei processi con classe di priorità normal o idle.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Idle\">\r\n      <summary>Specifica che i thread di questo processo vengono eseguiti soltanto quando il sistema è inattivo, ad esempio quando è in funzione uno screen saver.I thread del processo hanno la precedenza sui thread di qualsiasi processo con una classe di priorità superiore.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Normal\">\r\n      <summary>Specifica che il processo non ha particolari esigenze di pianificazione.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.RealTime\">\r\n      <summary>Specifica che la priorità del processo è la più alta possibile.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessStartInfo\">\r\n      <summary>Specifica un insieme di valori usati all'avvio di un processo.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor\">\r\n      <summary>Inizializza una nuova istanza della classe <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> senza specificare un nome file con il quale avviare il processo.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)\">\r\n      <summary>Inizializza una nuova istanza della classe <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> e specifica un nome file, ad esempio un'applicazione o un documento, con il quale avviare il processo.</summary>\r\n      <param name=\"fileName\">Un'applicazione o un documento con il quale avviare un processo. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)\">\r\n      <summary>Inizializza una nuova istanza della classe <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />, specifica il nome file di un'applicazione con cui avviare il processo e determina un insieme di argomenti della riga di comando da passare all'applicazione.</summary>\r\n      <param name=\"fileName\">Un'applicazione con la quale avviare un processo. </param>\r\n      <param name=\"arguments\">Argomenti della riga di comando da passare all'applicazione all'avvio del processo. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Arguments\">\r\n      <summary>Ottiene o imposta l'insieme di argomenti della riga di comando da usare all'avvio dell'applicazione.</summary>\r\n      <returns>Una singola stringa contenente gli argomenti da passare all'applicazione di destinazione specificata nella proprietà <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" />.Il valore predefinito è una stringa vuota (\"\").In Windows Vista e nelle versioni precedenti del sistema operativo Windows, la lunghezza degli argomenti aggiunta alla lunghezza del percorso completo del processo deve essere minore di 2080.In Windows 7 e versioni successive la lunghezza deve essere minore di 32699.Gli argomenti vengono analizzati e interpretati dall'applicazione di destinazione, pertanto devono essere allineati con le aspettative dell'applicazione.Per le applicazioni .NET, come illustrato negli esempi seguenti, gli spazi vengono interpretati come un separatore tra più argomenti.Un singolo argomento che include spazi deve essere racchiuso tra virgolette, ma tali virgolette non vengono riportate nell'applicazione di destinazione.Nelle virgolette incluse nell'argomento analizzato finale, aggiungere tre caratteri di escape a ogni virgoletta.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.CreateNoWindow\">\r\n      <summary>Ottiene o imposta un valore che indica se avviare il processo in una nuova finestra.</summary>\r\n      <returns>true se il processo deve essere avviato senza creare una nuova finestra; in caso contrario, false.Il valore predefinito è false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Domain\">\r\n      <summary>Ottiene o imposta un valore che identifica il dominio da usare all'avvio del processo. </summary>\r\n      <returns>Il dominio di Active Directory da usare all'avvio del processo.La proprietà del dominio interessa principalmente gli utenti in ambienti aziendali che usano Active Directory.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Environment\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.FileName\">\r\n      <summary>Ottiene o imposta l'applicazione o il documento da avviare.</summary>\r\n      <returns>Il nome dell'applicazione da avviare oppure il nome di un documento di un tipo di file associato a un'applicazione con un'azione Open predefinita.Il valore predefinito è una stringa vuota (\"\").</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.LoadUserProfile\">\r\n      <summary>Ottiene o imposta un valore che indica se deve essere caricato il profilo utente di Windows dal Registro di sistema. </summary>\r\n      <returns>true se il profilo utente Windows deve essere caricato; in caso contrario, false.Il valore predefinito è false.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Password\">\r\n      <summary>Ottiene o imposta una stringa sicura che contiene la password utente da usare all'avvio del processo.</summary>\r\n      <returns>La password utente da usare all'avvio del processo.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\">\r\n      <summary>Ottiene o imposta un valore che indica se l'output di errore di un'applicazione viene scritto nel flusso <see cref=\"P:System.Diagnostics.Process.StandardError\" />.</summary>\r\n      <returns>true se l'output di errore deve essere scritto in <see cref=\"P:System.Diagnostics.Process.StandardError\" />; in caso contrario, false.Il valore predefinito è false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\">\r\n      <summary>Ottiene o imposta un valore che indica se l'input per un'applicazione viene letto dal flusso <see cref=\"P:System.Diagnostics.Process.StandardInput\" />.</summary>\r\n      <returns>true se l'input deve essere letto da <see cref=\"P:System.Diagnostics.Process.StandardInput\" />; in caso contrario, false.Il valore predefinito è false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\">\r\n      <summary>Ottiene o imposta un valore che indica se l'output testuale di un'applicazione viene scritto nel flusso <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />.</summary>\r\n      <returns>true se l'output deve essere scritto in <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />; in caso contrario, false.Il valore predefinito è false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding\">\r\n      <summary>Ottiene o imposta la codifica preferita per l'output di errore.</summary>\r\n      <returns>Oggetto che rappresenta la codifica preferita per l'output di errore.Il valore predefinito è null.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding\">\r\n      <summary>Ottiene o imposta la codifica preferita per l'output standard.</summary>\r\n      <returns>Oggetto che rappresenta la codifica preferita per l'output standard.Il valore predefinito è null.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UserName\">\r\n      <summary>Ottiene o imposta il nome utente da usare all'avvio del processo.</summary>\r\n      <returns>Nome utente da usare all'avvio del processo.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\">\r\n      <summary>Ottiene o imposta un valore che indica se usare la shell del sistema operativo per avviare il processo.</summary>\r\n      <returns>true se la shell deve essere usata all'avvio del processo; false se il processo deve essere creato direttamente dal file eseguibile.Il valore predefinito è true.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.WorkingDirectory\">\r\n      <summary>Quando la proprietà <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> è false, ottiene o imposta la directory di lavoro per il processo da avviare.Quando la proprietà <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> è true, ottiene o imposta la directory che contiene il processo da avviare.</summary>\r\n      <returns>Quando <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> è true, il nome completo della directory contenente il processo da avviare.Quando la proprietà <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> è false, la directory di lavoro per il processo da avviare.Il valore predefinito è una stringa vuota (\"\").</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThread\">\r\n      <summary>Rappresenta un thread di processo del sistema operativo.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.BasePriority\">\r\n      <summary>Ottiene la priorità base del thread.</summary>\r\n      <returns>La priorità base del thread, calcolata dal sistema operativo combinando la classe di priorità del processo con il livello di priorità del thread associato.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.CurrentPriority\">\r\n      <summary>Ottiene la priorità corrente del thread.</summary>\r\n      <returns>La priorità corrente del thread, che potrebbe essere diversa da quella di base a seconda del modo in cui il sistema operativo pianifica il thread.La priorità può essere temporaneamente aumentata per un thread attivo.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.Id\">\r\n      <summary>Ottiene l'identificatore univoco del thread.</summary>\r\n      <returns>L'identificatore univoco associato a uno specifico thread.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.IdealProcessor\">\r\n      <summary>Imposta il processore preferenziale su cui eseguire questo thread.</summary>\r\n      <returns>Il processore preferenziale del thread, utilizzato quando il sistema pianifica i thread, per determinare il processore su cui eseguirlo.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Il sistema non è stato in grado di impostare l'avvio del thread sul processore specificato. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Il processo è eseguito su un computer remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityBoostEnabled\">\r\n      <summary>Ottiene o imposta un valore che indica se il sistema operativo deve incrementare temporaneamente la priorità del thread associato ogni volta che la finestra principale del processo del thread diventa attiva.</summary>\r\n      <returns>true per incrementare la priorità del thread quando l'utente interagisce con l'interfaccia del processo; in caso contrario, false .Il valore predefinito è false.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Non è possibile recuperare le informazioni sull'incremento di priorità.- oppure -Non è possibile impostare le informazioni sull'incremento di priorità. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Il processo è eseguito su un computer remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityLevel\">\r\n      <summary>Ottiene o imposta il livello di priorità del thread.</summary>\r\n      <returns>Uno dei valori di <see cref=\"T:System.Diagnostics.ThreadPriorityLevel\" />, che specifica un intervallo nel quale rientra la priorità del thread.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Non è possibile recuperare le informazioni sul livello di priorità del thread. - oppure -Non è possibile impostare il livello di priorità del thread.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Il processo è eseguito su un computer remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime\">\r\n      <summary>Ottiene l'intervallo di tempo che il thread ha impiegato nell'esecuzione del codice all'interno del nucleo centrale del sistema operativo.</summary>\r\n      <returns>Valore <see cref=\"T:System.TimeSpan\" /> che indica l'intervallo di tempo impiegato dal thread nell'esecuzione del codice all'interno del nucleo centrale del sistema operativo.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Non è possibile recuperare l'intervallo di tempo del thread. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Il processo è eseguito su un computer remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ProcessorAffinity\">\r\n      <summary>Imposta il processore sul quale può essere eseguito il thread associato.</summary>\r\n      <returns>Un oggetto <see cref=\"T:System.IntPtr\" /> che punta a un insieme di bit, ciascuno dei quali rappresenta un processore sul quale può essere eseguito il thread.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Non è stato possibile impostare l'affinità dei processori. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Il processo è eseguito su un computer remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThread.ResetIdealProcessor\">\r\n      <summary>Reimposta il processore ideale di questo thread a indicare che non è presente un singolo processore ideale.In altre parole, ogni altro processore può essere ideale.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Non è possibile reimpostare il processore ideale. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Il processo è eseguito su un computer remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartAddress\">\r\n      <summary>Ottiene l'indirizzo di memoria della funzione chiamata dal sistema operativo per l'avvio di questo thread.</summary>\r\n      <returns>L'indirizzo iniziale del thread, che punta alla funzione definita dall'applicazione eseguita dal thread.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Il processo è eseguito su un computer remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartTime\">\r\n      <summary>Ottiene l'ora in cui il sistema operativo ha iniziato il thread.</summary>\r\n      <returns>Un oggetto <see cref=\"T:System.DateTime\" /> che rappresenta l'ora di sistema al momento dell'avvio del thread da parte del sistema operativo.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Non è possibile recuperare l'intervallo di tempo del thread. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Il processo è eseguito su un computer remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ThreadState\">\r\n      <summary>Ottiene lo stato corrente di questo thread.</summary>\r\n      <returns>Un oggetto <see cref=\"T:System.Diagnostics.ThreadState\" /> che indica lo stato del thread, ad esempio in esecuzione, in attesa o completato.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Il processo è eseguito su un computer remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.TotalProcessorTime\">\r\n      <summary>Ottiene la quantità totale di tempo impiegata da questo thread nell'utilizzo del processore.</summary>\r\n      <returns>Un oggetto <see cref=\"T:System.TimeSpan\" /> che indica la quantità di tempo in base alla quale il thread ha avuto il controllo del processore.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Non è possibile recuperare l'intervallo di tempo del thread. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Il processo è eseguito su un computer remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.UserProcessorTime\">\r\n      <summary>Ottiene la quantità di tempo che il thread associato ha impiegato nell'esecuzione del codice all'interno dell'applicazione.</summary>\r\n      <returns>Valore <see cref=\"T:System.TimeSpan\" /> che indica la quantità di tempo impiegato dal thread nell'esecuzione del codice all'interno dell'applicazione, rispetto all'esecuzione all'interno del nucleo centrale del sistema operativo.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Non è possibile recuperare l'intervallo di tempo del thread. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Il processo è eseguito su un computer remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.WaitReason\">\r\n      <summary>Ottiene il motivo per cui il thread è in attesa.</summary>\r\n      <returns>Un oggetto <see cref=\"T:System.Diagnostics.ThreadWaitReason\" /> che rappresenta il motivo per il quale il thread è nello stato di attesa.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">Il thread non è nello stato di attesa. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Il processo è eseguito su un computer remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThreadCollection\">\r\n      <summary>Fornisce un insieme fortemente tipizzato di oggetti <see cref=\"T:System.Diagnostics.ProcessThread\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor\">\r\n      <summary>Consente di inizializzare una nuova istanza della classe <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />, senza istanze di <see cref=\"T:System.Diagnostics.ProcessThread\" /> associate.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])\">\r\n      <summary>Consente di inizializzare una nuova istanza della classe <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> utilizzando la matrice specificata di istanze <see cref=\"T:System.Diagnostics.ProcessThread\" />.</summary>\r\n      <param name=\"processThreads\">Matrice di istanze di <see cref=\"T:System.Diagnostics.ProcessThread\" /> con la quale inizializzare questa istanza <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> . </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)\">\r\n      <summary>Accoda un thread di processo all'insieme.</summary>\r\n      <returns>Indice a base zero del thread contenuto nell'insieme.</returns>\r\n      <param name=\"thread\">Thread da aggiungere all'insieme. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)\">\r\n      <summary>Determina se il thread di processo specificato è contenuto nell'insieme.</summary>\r\n      <returns>Restituisce true se il thread è presente nell'insieme; in caso contrario, false.</returns>\r\n      <param name=\"thread\">Istanza <see cref=\"T:System.Diagnostics.ProcessThread\" /> che indica il thread da trovare in questo insieme. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)\">\r\n      <summary>Copia una matrice di istanze <see cref=\"T:System.Diagnostics.ProcessThread\" /> nell'insieme, in corrispondenza dell'indice specificato.</summary>\r\n      <param name=\"array\">Matrice di istanze <see cref=\"T:System.Diagnostics.ProcessThread\" /> da aggiungere all'insieme. </param>\r\n      <param name=\"index\">Posizione in cui aggiungere le nuove istanze. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)\">\r\n      <summary>Fornisce la posizione di un thread specificato nell'insieme.</summary>\r\n      <returns>Indice a base zero che definisce la posizione del thread all'interno di <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />.</returns>\r\n      <param name=\"thread\">\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> il cui indice viene richiamato. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)\">\r\n      <summary>Inserisce un thread di processo nella posizione specificata dell'insieme.</summary>\r\n      <param name=\"index\">Indice a base zero che indica la posizione in cui inserire il thread. </param>\r\n      <param name=\"thread\">Thread da inserire nell'insieme. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)\">\r\n      <summary>Ottiene un indice per scorrere l'insieme di thread di processo.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> che indicizza i thread nell'insieme.</returns>\r\n      <param name=\"index\">Valore dell'indice a base zero del thread dell'insieme. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)\">\r\n      <summary>Elimina un thread di processo dall'insieme.</summary>\r\n      <param name=\"thread\">Thread da rimuovere dall'insieme. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ThreadPriorityLevel\">\r\n      <summary>Specifica il livello di priorità di un thread.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.AboveNormal\">\r\n      <summary>Specifica un livello superiore alla priorità normale della classe <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />  associata.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.BelowNormal\">\r\n      <summary>Specifica un livello inferiore alla priorità normale della classe <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />  associata.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Highest\">\r\n      <summary>Specifica la massima priorità.Questa è di due livelli superiore alla priorità normale della classe <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />  associata.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Idle\">\r\n      <summary>Specifica la priorità idle.Questo è il minimo valore possibile di priorità di tutti i thread, indipendentemente dal valore della classe <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />  associata.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Lowest\">\r\n      <summary>Specifica la minima priorità.Questa è di due livelli inferiore alla priorità normale della classe <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />  associata.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Normal\">\r\n      <summary>Specifica la priorità normale della classe <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />  associata.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.TimeCritical\">\r\n      <summary>Specifica la priorità critica a livello temporale.Questo è il massimo valore di priorità di tutti i thread, indipendentemente dal valore della classe <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />  associata.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadState\">\r\n      <summary>Specifica lo stato di esecuzione corrente del thread.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Initialized\">\r\n      <summary>Uno stato che indica che il thread è stato inizializzato ma non è stato ancora avviato.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Ready\">\r\n      <summary>Uno stato che indica che il thread è in attesa di utilizzare un processore in quanto nessun processore è disponibile.Il thread è pronto per essere eseguito sul prossimo processore disponibile.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Running\">\r\n      <summary>Uno stato che indica che il thread utilizza attualmente un processore.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Standby\">\r\n      <summary>Uno stato che indica che il thread sta per utilizzare un processore.Un solo thread alla volta può trovarsi in questo stato.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Terminated\">\r\n      <summary>Uno stato che indica che il thread ha completato l'esecuzione ed è uscito.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Transition\">\r\n      <summary>Uno stato che indica che il thread è in attesa di una risorsa, diversa dal processore, prima di poter essere eseguito.Può essere ad esempio in attesa che il proprio stack di esecuzione venga paginato dal disco.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Unknown\">\r\n      <summary>Lo stato del thread è sconosciuto.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Wait\">\r\n      <summary>Uno stato che indica che il thread non è pronto per essere utilizzato dal processore in quanto è in attesa che un'operazione secondaria venga completata o che una risorsa venga resa disponibile.Quando il thread è pronto, viene ripianificato.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadWaitReason\">\r\n      <summary>Specifica il motivo per il quale un thread è in attesa.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairHigh\">\r\n      <summary>Il thread è in attesa di Event Pair High.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairLow\">\r\n      <summary>Il thread è in attesa di Event Pair Low.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.ExecutionDelay\">\r\n      <summary>L'esecuzione del thread è stata rinviata.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Executive\">\r\n      <summary>Il thread è in attesa della pianificazione.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.FreePage\">\r\n      <summary>Il thread è in attesa di una pagina di memoria virtuale libera.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReceive\">\r\n      <summary>Il thread è in attesa di una chiamata alla routine locale.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReply\">\r\n      <summary>Il thread è in attesa di una risposta a una chiamata di routine locale.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageIn\">\r\n      <summary>Il thread è in attesa di una pagina di memoria virtuale nella memoria.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageOut\">\r\n      <summary>Il thread è in attesa di una pagina di memoria virtuale da scrivere nel disco.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Suspended\">\r\n      <summary>L'esecuzione del thread è stata sospesa.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.SystemAllocation\">\r\n      <summary>Il thread è in attesa dell'allocazione di sistema.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Unknown\">\r\n      <summary>Il thread è in attesa per un motivo sconosciuto.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.UserRequest\">\r\n      <summary>Il thread è in attesa di una richiesta dell'utente.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.VirtualMemory\">\r\n      <summary>Il thread è in attesa che il sistema allochi la memoria virtuale.</summary>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/ja/System.Diagnostics.Process.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<doc>\r\n  <assembly>\r\n    <name>System.Diagnostics.Process</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\">\r\n      <summary>[セキュリティ クリティカル] プロセス ハンドルのためのマネージ ラッパーを提供します。</summary>\r\n    </member>\r\n    <member name=\"M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)\">\r\n      <summary>[セキュリティ クリティカル] 新しいインスタンスを初期化、<see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" />ファイナライズ フェーズ中にハンドルを解放するかどうかを示す、指定したハンドルからクラスです。</summary>\r\n      <param name=\"existingHandle\">ラップされるハンドル。</param>\r\n      <param name=\"ownsHandle\">true確実にできるようにする<see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" />終了処理中にハンドルを解放します。それ以外の場合、falseです。</param>\r\n    </member>\r\n    <member name=\"P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid\"></member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventArgs\">\r\n      <summary>\r\n        <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> イベントと <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> イベントにデータを提供します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.DataReceivedEventArgs.Data\">\r\n      <summary>リダイレクトされた <see cref=\"T:System.Diagnostics.Process\" /> 出力ストリームに書き込まれた文字の行を取得します。</summary>\r\n      <returns>関連する <see cref=\"T:System.Diagnostics.Process\" /> によって、リダイレクトされた <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> または <see cref=\"P:System.Diagnostics.Process.StandardError\" /> ストリームに書き込まれた行。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventHandler\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> の <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> イベントまたは <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> イベントを処理するメソッドを表します。</summary>\r\n      <param name=\"sender\">イベントのソース。</param>\r\n      <param name=\"e\">イベント データを格納している <see cref=\"T:System.Diagnostics.DataReceivedEventArgs\" />。 </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.Process\">\r\n      <summary>ローカル プロセスとリモート プロセスにアクセスできるようにして、ローカル システム プロセスの起動と中断ができるようにします。この型の .NET Framework ソース コードを参照するには、参照ソースをご覧ください。</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.#ctor\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> クラスの新しいインスタンスを初期化します。</summary>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.BasePriority\">\r\n      <summary>関連付けられたプロセスの基本優先順位を取得します。</summary>\r\n      <returns>関連付けられたプロセスの <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> から算出される基本優先順位。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or- The process has not started, so there is no process ID. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginErrorReadLine\">\r\n      <summary>アプリケーションのリダイレクトされた <see cref=\"P:System.Diagnostics.Process.StandardError\" /> ストリームで、非同期読み取り操作を開始します。</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginOutputReadLine\">\r\n      <summary>アプリケーションのリダイレクトされた <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> ストリームで、非同期読み取り操作を開始します。</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelErrorRead\">\r\n      <summary>アプリケーションのリダイレクトされた <see cref=\"P:System.Diagnostics.Process.StandardError\" /> ストリームで、非同期読み取り操作をキャンセルします。</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelOutputRead\">\r\n      <summary>アプリケーションのリダイレクトされた <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> ストリームで、非同期読み取り操作をキャンセルします。</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose\"></member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose(System.Boolean)\">\r\n      <summary>このプロセスによって使用されているすべてのリソースを解放します。</summary>\r\n      <param name=\"disposing\">マネージ リソースとアンマネージ リソースの両方を解放する場合は true。アンマネージ リソースだけを解放する場合は false。</param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.EnableRaisingEvents\">\r\n      <summary>プロセスが終了したときに、<see cref=\"E:System.Diagnostics.Process.Exited\" /> イベントを発生させるかどうかを取得または設定します。</summary>\r\n      <returns>正常終了または <see cref=\"M:System.Diagnostics.Process.Kill\" /> の呼び出しによって関連付けられたプロセスが終了したときに <see cref=\"E:System.Diagnostics.Process.Exited\" /> イベントを発生させる場合は true。それ以外の場合は false。既定値は、false です。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.EnterDebugMode\">\r\n      <summary>現在のスレッドのネイティブ プロパティ SeDebugPrivilege を有効にすることにより、<see cref=\"T:System.Diagnostics.Process\" /> コンポーネントを、特殊なモードで実行されているオペレーティング システム プロセスと対話する状態にします。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.ErrorDataReceived\">\r\n      <summary>アプリケーションがリダイレクトされた <see cref=\"P:System.Diagnostics.Process.StandardError\" /> ストリームに書き込む場合に発生します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitCode\">\r\n      <summary>関連付けられたプロセスが終了したときにプロセスによって指定された値を取得します。</summary>\r\n      <returns>関連付けられたプロセスが終了したときにプロセスによって指定されたコード。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has not exited.-or- The process <see cref=\"P:System.Diagnostics.Process.Handle\" /> is not valid. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitCode\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.Exited\">\r\n      <summary>プロセスが終了したときに発生します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitTime\">\r\n      <summary>関連付けられたプロセスが終了した時刻を取得します。</summary>\r\n      <returns>関連付けられたプロセスが終了した時刻を示す <see cref=\"T:System.DateTime\" />。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetCurrentProcess\">\r\n      <summary>新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントを取得し、現在アクティブなプロセスに関連付けます。</summary>\r\n      <returns>呼び出し元のアプリケーションを実行しているプロセス リソースに関連付けられた新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネント。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32)\">\r\n      <summary>ローカル コンピューター上のプロセス ID が指定された新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントを返します。</summary>\r\n      <returns>\r\n        <paramref name=\"processId\" /> パラメーターで識別されるローカル プロセス リソースに関連付けられた <see cref=\"T:System.Diagnostics.Process\" /> コンポーネント。</returns>\r\n      <param name=\"processId\">システムで一意なプロセス リソースの識別子。</param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)\">\r\n      <summary>プロセス ID とネットワーク上のコンピューターの名前が指定された新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントを返します。</summary>\r\n      <returns>\r\n        <paramref name=\"processId\" /> パラメーターで識別されるリモート プロセス リソースに関連付けられた <see cref=\"T:System.Diagnostics.Process\" /> コンポーネント。</returns>\r\n      <param name=\"processId\">システムで一意なプロセス リソースの識別子。</param>\r\n      <param name=\"machineName\">ネットワーク上のコンピューターの名前。</param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.-or- The <paramref name=\"machineName\" /> parameter syntax is invalid.The name might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses\">\r\n      <summary>ローカル コンピューター上の各プロセス リソースごとに新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントを作成します。</summary>\r\n      <returns>ローカル コンピューター上で実行されているすべてのプロセス リソースを表す <see cref=\"T:System.Diagnostics.Process\" /> 型の配列。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses(System.String)\">\r\n      <summary>指定したコンピューター上の各プロセス リソースごとに新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントを作成します。</summary>\r\n      <returns>指定したコンピューター上で実行されているすべてのプロセス リソースを表す <see cref=\"T:System.Diagnostics.Process\" /> 型の配列。</returns>\r\n      <param name=\"machineName\">プロセスの一覧を読み取る対象のコンピューター。</param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String)\">\r\n      <summary>新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントの配列を作成し、指定したプロセス名を共有するローカル コンピューター上のすべてのプロセス リソースに関連付けます。</summary>\r\n      <returns>指定したアプリケーションまたはファイルを実行しているプロセス リソースを表す <see cref=\"T:System.Diagnostics.Process\" /> 型の配列。</returns>\r\n      <param name=\"processName\">プロセスのフレンドリ名。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)\">\r\n      <summary>新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントの配列を作成し、指定したプロセス名を共有するリモート コンピューター上のすべてのプロセス リソースに関連付けます。</summary>\r\n      <returns>指定したアプリケーションまたはファイルを実行しているプロセス リソースを表す <see cref=\"T:System.Diagnostics.Process\" /> 型の配列。</returns>\r\n      <param name=\"processName\">プロセスのフレンドリ名。</param>\r\n      <param name=\"machineName\">ネットワーク上のコンピューターの名前。</param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.HasExited\">\r\n      <summary>関連付けられているプロセスが終了したかどうかを示す値を取得します。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントが参照するオペレーティング システム プロセスが終了している場合は true。それ以外の場合は false。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with the object. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The exit code for the process could not be retrieved. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.HasExited\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Id\">\r\n      <summary>関連付けられたプロセスの一意の識別子を取得します。</summary>\r\n      <returns>この <see cref=\"T:System.Diagnostics.Process\" /> インスタンスが参照する、システムが生成したプロセスの一意の識別子。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process's <see cref=\"P:System.Diagnostics.Process.Id\" /> property has not been set.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Kill\">\r\n      <summary>関連付けられたプロセスを即時中断します。</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to call <see cref=\"M:System.Diagnostics.Process.Kill\" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has already exited. -or-There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.LeaveDebugMode\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントを、特殊なモードで実行されているオペレーティング システム プロセスと対話する状態から解放します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MachineName\">\r\n      <summary>関連付けられたプロセスを実行しているコンピューターの名前を取得します。</summary>\r\n      <returns>関連付けられたプロセスを実行しているコンピューターの名前。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MainModule\">\r\n      <summary>関連付けられたプロセスのメイン モジュールを取得します。</summary>\r\n      <returns>プロセスを起動するときに使用した <see cref=\"T:System.Diagnostics.ProcessModule\" />。</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MainModule\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A 32-bit process is trying to access the modules of a 64-bit process.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MaxWorkingSet\">\r\n      <summary>関連付けられたプロセスに許可されるワーキング セットの最大サイズを取得または設定します。</summary>\r\n      <returns>プロセスに許可されるメモリ上のワーキング セットの最大サイズ (バイト単位)。</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MaxWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MinWorkingSet\">\r\n      <summary>関連付けられたプロセスに許可されるワーキング セットの最小サイズを取得または設定します。</summary>\r\n      <returns>プロセスに必要なメモリ上の最小ワーキング セット サイズ (バイト単位)。</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MinWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Modules\">\r\n      <summary>関連付けられたプロセスに読み込まれたモジュールを取得します。</summary>\r\n      <returns>関連付けられたプロセスに読み込まれたモジュールを表す <see cref=\"T:System.Diagnostics.ProcessModule\" /> 型の配列。</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for either the system process or the idle process.These processes do not have modules.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.NonpagedSystemMemorySize64\">\r\n      <summary>関連付けられたプロセスに割り当てられたページングされないシステム メモリの量を取得します。</summary>\r\n      <returns>関連付けられたプロセスに割り当てられた、仮想メモリ ページング ファイルに書き込むことができないシステム メモリの容量 (バイト単位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.OnExited\">\r\n      <summary>\r\n        <see cref=\"E:System.Diagnostics.Process.Exited\" /> イベントを発生させます。</summary>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.OutputDataReceived\">\r\n      <summary>アプリケーションが、リダイレクトされた <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> ストリームに行を書き込む度に発生します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedMemorySize64\">\r\n      <summary>関連付けられたプロセスに割り当てられたページングされるシステム メモリの量を取得します。</summary>\r\n      <returns>関連付けられたプロセスの仮想メモリ ページング ファイル内で割り当てられたメモリの量 (バイト単位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedSystemMemorySize64\">\r\n      <summary>関連付けられたプロセスに割り当てられたページング可能なシステム メモリの量を取得します。</summary>\r\n      <returns>関連付けられたプロセスに割り当てられた、仮想メモリ ページング ファイルに書き込むことができるシステム メモリの容量 (バイト単位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakPagedMemorySize64\">\r\n      <summary>関連付けられたプロセスによって使用される、仮想メモリ ページング ファイル内のメモリの最大量を取得します。</summary>\r\n      <returns>プロセスの開始以降、関連付けられたプロセスの仮想メモリ ページング ファイル内で割り当てられたメモリの最大量 (バイト単位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakVirtualMemorySize64\">\r\n      <summary>関連付けられたプロセスによって使用される仮想メモリの最大量を取得します。</summary>\r\n      <returns>プロセスの開始以降、関連付けられたプロセスに割り当てられた仮想メモリの最大量 (バイト単位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakWorkingSet64\">\r\n      <summary>関連付けられたプロセスによって使用される物理メモリの最大量を取得します。</summary>\r\n      <returns>プロセスの開始以降、関連付けられたプロセスに割り当てられた物理メモリの最大量 (バイト単位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityBoostEnabled\">\r\n      <summary>メイン ウィンドウのフォーカス時に、オペレーティング システムによって関連付けられたプロセスの優先順位を一時的に上げるかどうかを示す値を取得または設定します。</summary>\r\n      <returns>待機状態から抜けたときにプロセスの優先順位を動的に上げる場合は true。それ以外の場合は false。既定値は、false です。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Priority boost information could not be retrieved from the associated process resource. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityBoostEnabled\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityClass\">\r\n      <summary>関連付けられたプロセスの全体的な優先順位カテゴリを取得または設定します。</summary>\r\n      <returns>プロセスの <see cref=\"P:System.Diagnostics.Process.BasePriority\" /> を計算するときに使用する、関連付けられたプロセスの優先順位カテゴリ。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">You have set the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>\r\n      <exception cref=\"T:System.ComponentModel.InvalidEnumArgumentException\">Priority class cannot be set because it does not use a valid value, as defined in the <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> enumeration.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivateMemorySize64\">\r\n      <summary>関連付けられたプロセスに割り当てられたプライベート メモリの量を取得します。</summary>\r\n      <returns>関連付けられたプロセスに割り当てられ、他のプロセスと共有できないメモリの量 (バイト単位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\">\r\n      <summary>このプロセスの特権プロセッサ時間を取得します。</summary>\r\n      <returns>プロセスが、オペレーティング システム コア内でコードを実行した合計時間を示す <see cref=\"T:System.TimeSpan\" />。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessName\">\r\n      <summary>プロセスの名前を取得します。</summary>\r\n      <returns>システムで使用する、ユーザーがプロセスを識別するための名前。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process does not have an identifier, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" />.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is not on this computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessorAffinity\">\r\n      <summary>このプロセスでのスレッドの実行をスケジュールできるプロセッサを取得または設定します。</summary>\r\n      <returns>関連付けられたプロセスのスレッドを実行できるプロセッサを示すビットマスク。既定値は、コンピューターのプロセッサ数によって異なります。既定値は 2 n -1 で、n はプロセッサ数です。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> was not available.-or- The process has exited. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Refresh\">\r\n      <summary>プロセス コンポーネントにキャッシュされている関連付けられたプロセスに関するすべての情報を破棄します。</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SafeHandle\">\r\n      <summary>このプロセスへのネイティブ ハンドルを取得します。</summary>\r\n      <returns>このプロセスへのネイティブ ハンドル。</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SessionId\">\r\n      <summary>関連付けられたプロセスのターミナル サービス セッション識別子を取得します。</summary>\r\n      <returns>関連付けられたプロセスのターミナル サービス セッション識別子。</returns>\r\n      <exception cref=\"T:System.NullReferenceException\">There is no session associated with this process.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The <see cref=\"P:System.Diagnostics.Process.SessionId\" /> property is not supported on Windows 98.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardError\">\r\n      <summary>アプリケーションのエラー出力の読み取りに使用されるストリームを取得します。</summary>\r\n      <returns>アプリケーションの標準エラー ストリームの読み取りに使用できる <see cref=\"T:System.IO.StreamReader\" />。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginErrorReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardInput\">\r\n      <summary>アプリケーションの入力の書き込みに使用されるストリームを取得します。</summary>\r\n      <returns>アプリケーションの標準入力ストリームの書き込みに使用できる <see cref=\"T:System.IO.StreamWriter\" />。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> stream has not been defined because <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" /> is set to false. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardOutput\">\r\n      <summary>アプリケーションのテキスト出力の読み取りに使用されるストリームを取得します。</summary>\r\n      <returns>アプリケーションの標準出力ストリームの読み取りに使用できる <see cref=\"T:System.IO.StreamReader\" />。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginOutputReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start\">\r\n      <summary>この <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントの <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> プロパティで指定されたプロセス リソースを起動 (または再利用) し、コンポーネントに関連付けます。</summary>\r\n      <returns>プロセス リソースが起動された場合は true。新しいプロセス リソースが起動されなかった場合は false (既存のプロセスを再利用した場合など)。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <see cref=\"T:System.Diagnostics.Process\" /> component's <see cref=\"P:System.Diagnostics.Process.StartInfo\" />.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> member of the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> property is true while <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is true. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)\">\r\n      <summary>プロセス起動情報 (起動するプロセスのファイル名など) が格納されているパラメーターで指定されたプロセス リソースを起動し、リソースを新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントに関連付けます。</summary>\r\n      <returns>プロセス リソースに関連付けられている新しい <see cref=\"T:System.Diagnostics.Process\" />。プロセス リソースが起動されていない場合は null。同じプロセスのインスタンスが既に実行されているときに起動された新しいプロセスは、他のインスタンスから独立します。また、Start では、<see cref=\"T:System.Diagnostics.ProcessHasExited\" /> プロパティが既に true に設定されている null 以外の Process が返される場合があります。その場合、起動されたプロセス自体の既存のインスタンスがアクティブ化され、その後に終了されることがあります。</returns>\r\n      <param name=\"startInfo\">ファイル名やコマンド ライン引数など、プロセスの起動に使用する情報が格納されている <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is also true.-or-The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UserName\" /> property is not null or empty or the <see cref=\"P:System.Diagnostics.ProcessStartInfo.Password\" /> property is not null.</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"startInfo\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The file specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property could not be found.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String)\">\r\n      <summary>文書またはアプリケーション ファイルの名前を指定してプロセス リソースを起動し、リソースを新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントに関連付けます。</summary>\r\n      <returns>プロセス リソースに関連付けられている新しい <see cref=\"T:System.Diagnostics.Process\" />。プロセス リソースが起動されていない場合は null。同じプロセスのインスタンスが既に実行されているときに起動された新しいプロセスは、他のインスタンスから独立します。また、Start では、<see cref=\"T:System.Diagnostics.ProcessHasExited\" /> プロパティが既に true に設定されている null 以外の Process が返される場合があります。その場合、起動されたプロセス自体の既存のインスタンスがアクティブ化され、その後に終了されることがあります。</returns>\r\n      <param name=\"fileName\">プロセスで実行する文書またはアプリケーション ファイルの名前。</param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String)\">\r\n      <summary>アプリケーションの名前とコマンド ライン引数のセットを指定してプロセス リソースを起動し、リソースを新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントに関連付けます。</summary>\r\n      <returns>プロセス リソースに関連付けられている新しい <see cref=\"T:System.Diagnostics.Process\" />。プロセス リソースが起動されていない場合は null。同じプロセスのインスタンスが既に実行されているときに起動された新しいプロセスは、他のインスタンスから独立します。また、Start では、<see cref=\"T:System.Diagnostics.ProcessHasExited\" /> プロパティが既に true に設定されている null 以外の Process が返される場合があります。その場合、起動されたプロセス自体の既存のインスタンスがアクティブ化され、その後に終了されることがあります。</returns>\r\n      <param name=\"fileName\">プロセスで実行するアプリケーション ファイルの名前。</param>\r\n      <param name=\"arguments\">プロセスを起動するときに渡すコマンド ライン引数。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <paramref name=\"fileName\" /> or <paramref name=\"arguments\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>アプリケーションの名前、ユーザー名、パスワード、およびドメインを指定してプロセス リソースを起動し、リソースを新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントに関連付けます。</summary>\r\n      <returns>プロセス リソースに関連付けられている新しい <see cref=\"T:System.Diagnostics.Process\" />。プロセス リソースが起動されていない場合は null。同じプロセスのインスタンスが既に実行されているときに起動された新しいプロセスは、他のインスタンスから独立します。また、Start では、<see cref=\"T:System.Diagnostics.ProcessHasExited\" /> プロパティが既に true に設定されている null 以外の Process が返される場合があります。その場合、起動されたプロセス自体の既存のインスタンスがアクティブ化され、その後に終了されることがあります。</returns>\r\n      <param name=\"fileName\">プロセスで実行するアプリケーション ファイルの名前。</param>\r\n      <param name=\"userName\">プロセスの開始時に使用するユーザー名。</param>\r\n      <param name=\"password\">プロセスを開始するときに使用されるパスワードを含んだ <see cref=\"T:System.Security.SecureString\" />。</param>\r\n      <param name=\"domain\">プロセスの開始時に使用するドメイン。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>アプリケーションの名前、コマンド ライン引数のセット、ユーザー名、パスワード、およびドメインを指定してプロセス リソースを起動し、リソースを新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントに関連付けます。</summary>\r\n      <returns>プロセス リソースに関連付けられている新しい <see cref=\"T:System.Diagnostics.Process\" />。プロセス リソースが起動されていない場合は null。同じプロセスのインスタンスが既に実行されているときに起動された新しいプロセスは、他のインスタンスから独立します。また、Start では、<see cref=\"T:System.Diagnostics.ProcessHasExited\" /> プロパティが既に true に設定されている null 以外の Process が返される場合があります。その場合、起動されたプロセス自体の既存のインスタンスがアクティブ化され、その後に終了されることがあります。</returns>\r\n      <param name=\"fileName\">プロセスで実行するアプリケーション ファイルの名前。</param>\r\n      <param name=\"arguments\">プロセスを起動するときに渡すコマンド ライン引数。</param>\r\n      <param name=\"userName\">プロセスの開始時に使用するユーザー名。</param>\r\n      <param name=\"password\">プロセスを開始するときに使用されるパスワードを含んだ <see cref=\"T:System.Security.SecureString\" />。</param>\r\n      <param name=\"domain\">プロセスの開始時に使用するドメイン。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartInfo\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> の <see cref=\"M:System.Diagnostics.Process.Start\" /> メソッドに渡すプロパティを取得または設定します。</summary>\r\n      <returns>プロセスを起動するときに使用するデータを表す <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />。これらの引数には、プロセスの起動時に使用する実行可能ファイルまたは文書の名前があります。</returns>\r\n      <exception cref=\"T:System.ArgumentNullException\">The value that specifies the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> is null. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartTime\">\r\n      <summary>関連付けられたプロセスが起動された時刻を取得します。</summary>\r\n      <returns>プロセスが起動された時刻を示すオブジェクト。プロセスが実行中でない場合は、例外がスローされます。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.StartTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or-The process has not been started.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred in the call to the Windows function.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Threads\">\r\n      <summary>関連付けられたプロセスで実行されているスレッドのセットを取得します。</summary>\r\n      <returns>関連付けられたプロセスで現在実行中のオペレーティング システム スレッドを表す <see cref=\"T:System.Diagnostics.ProcessThread\" /> 型の配列。</returns>\r\n      <exception cref=\"T:System.SystemException\">The process does not have an <see cref=\"P:System.Diagnostics.Process.Id\" />, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" /> instance.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.TotalProcessorTime\">\r\n      <summary>このプロセスの合計プロセッサ時間を取得します。</summary>\r\n      <returns>関連付けられたプロセスが CPU を使用した合計時間を示す <see cref=\"T:System.TimeSpan\" />。この値は、<see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> と <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> の合計です。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.TotalProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.UserProcessorTime\">\r\n      <summary>このプロセスのユーザー プロセッサ時間を取得します。</summary>\r\n      <returns>関連付けられたプロセスが、プロセスのアプリケーション部分の内部 (オペレーティング システム コアの外部) でコードを実行した合計時間を示す <see cref=\"T:System.TimeSpan\" />。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.VirtualMemorySize64\">\r\n      <summary>関連付けられたプロセスに割り当てられた仮想メモリの量を取得します。</summary>\r\n      <returns>関連付けられたプロセスに割り当てられた仮想メモリの量 (バイト単位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit\">\r\n      <summary>関連付けられたプロセスが終了するまで無期限に待機するように <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントに指示します。</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\">\r\n      <summary>関連付けられたプロセスが終了するまで、最大で指定したミリ秒間待機するように <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントに指示します。</summary>\r\n      <returns>関連付けられたプロセスが終了した場合は true。それ以外の場合は false。</returns>\r\n      <param name=\"milliseconds\">関連付けられたプロセスが終了するまで待機する時間。単位はミリ秒です。最大値は、32 ビット整数で表現できる最大値で、オペレーティング システムに対して無限大で表現される値です。</param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.WorkingSet64\">\r\n      <summary>関連付けられたプロセスに割り当てられた物理メモリの量を取得します。</summary>\r\n      <returns>関連付けられたプロセスに割り当てられた物理メモリの量 (バイト単位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModule\">\r\n      <summary>特定のプロセスに読み込まれた .dll ファイルまたは実行可能ファイル (.exe) を表します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.BaseAddress\">\r\n      <summary>モジュールが読み込まれたメモリ アドレスを取得します。</summary>\r\n      <returns>モジュールの読み込みアドレス。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.EntryPointAddress\">\r\n      <summary>システムがモジュールを読み込んで実行するときに実行される関数のメモリ アドレスを取得します。</summary>\r\n      <returns>モジュールのエントリ ポイント。</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.FileName\">\r\n      <summary>モジュールの完全パスを取得します。</summary>\r\n      <returns>モジュールの位置を定義する絶対パス。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleMemorySize\">\r\n      <summary>モジュールの読み込みに必要なメモリ容量を取得します。</summary>\r\n      <returns>モジュールが占有するメモリのサイズ。単位はバイトです。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleName\">\r\n      <summary>プロセス モジュールの名前を取得します。</summary>\r\n      <returns>モジュールの名前です。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModule.ToString\">\r\n      <summary>モジュールの名前を文字列に変換します。</summary>\r\n      <returns>\r\n        <see cref=\"P:System.Diagnostics.ProcessModule.ModuleName\" /> プロパティの値。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModuleCollection\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> オブジェクトの厳密に型指定されたコレクションを提供します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> インスタンスに関連付けずに、<see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> クラスの新しいインスタンスを初期化します。</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> インスタンスの配列を指定して、<see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> クラスの新しいインスタンスを初期化します。</summary>\r\n      <param name=\"processModules\">この <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> インスタンスを初期化するために使用する <see cref=\"T:System.Diagnostics.ProcessModule\" /> インスタンスの配列。</param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)\">\r\n      <summary>指定したプロセス モジュールがコレクション内にあるかどうかを調べます。</summary>\r\n      <returns>モジュールがコレクション内にある場合は true。それ以外の場合は false。</returns>\r\n      <param name=\"module\">コレクション内にあるかどうかを調べるモジュールを示す <see cref=\"T:System.Diagnostics.ProcessModule\" /> インスタンス。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)\">\r\n      <summary>コレクションの指定したインデックスに <see cref=\"T:System.Diagnostics.ProcessModule\" /> インスタンスの配列をコピーします。</summary>\r\n      <param name=\"array\">コレクションに追加する <see cref=\"T:System.Diagnostics.ProcessModule\" /> インスタンスの配列。</param>\r\n      <param name=\"index\">新しいインスタンスを追加する位置。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)\">\r\n      <summary>コレクション内の指定したモジュールの位置を提供します。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 内のモジュールの位置を定義する 0 から始まるインデックス番号。</returns>\r\n      <param name=\"module\">インデックスを取得する <see cref=\"T:System.Diagnostics.ProcessModule\" />。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)\">\r\n      <summary>一連のプロセス モジュールを反復処理するためのインデックスを取得します。</summary>\r\n      <returns>コレクション内のモジュールにインデックスを作成する <see cref=\"T:System.Diagnostics.ProcessModule\" />。</returns>\r\n      <param name=\"index\">コレクション内のモジュールの 0 から始まるインデックス値。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ProcessPriorityClass\">\r\n      <summary>システムがプロセスに関連付ける優先順位を示します。この値は、プロセスの各スレッドの優先順位値と組み合わされ、各スレッドの基本優先順位を決定します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.AboveNormal\">\r\n      <summary>プロセスの優先順位を Normal より高く <see cref=\"F:System.Diagnostics.ProcessPriorityClass.High\" /> より低く指定します。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.BelowNormal\">\r\n      <summary>プロセスの優先順位を Idle より高く Normal より低く指定します。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.High\">\r\n      <summary>Task List ダイアログ ボックスなどの、ユーザーから呼び出されたらオペレーティング システムの負荷にかかわらずすぐに応答する必要のある、即時実行を要求される重要なタスクに対して、プロセス実行時間を指定します。このプロセスのスレッドは、Normal または Idle 優先順位クラスのプロセスのスレッドよりも優先します。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Idle\">\r\n      <summary>このプロセスのスレッドが、スクリーン セーバーなど、システムがアイドル状態のときにだけ実行されるよう指定します。このプロセスのスレッドよりも、より高い優先順位クラスで実行されているあらゆるプロセスのスレッドの方が優先します。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Normal\">\r\n      <summary>プロセスが特別なスケジューリングを必要としないよう指定します。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.RealTime\">\r\n      <summary>プロセスの優先順位をできるだけ高く指定します。</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessStartInfo\">\r\n      <summary>プロセスを起動するときに使用する値のセットを指定します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor\">\r\n      <summary>プロセスを起動するときに使用するファイル名を指定せずに、<see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> クラスの新しいインスタンスを初期化します。</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> クラスの新しいインスタンスを初期化し、アプリケーションやドキュメントなど、プロセスを起動するときに使用するファイル名を指定します。</summary>\r\n      <param name=\"fileName\">プロセスを起動するときに使用するアプリケーションまたはドキュメント。</param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)\">\r\n      <summary>プロセスを起動するときに使用するアプリケーション ファイル名およびアプリケーションに渡すコマンド ライン引数のセットを指定して、<see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> クラスの新しいインスタンスを初期化します。</summary>\r\n      <param name=\"fileName\">プロセスを起動するときに使用するアプリケーション。</param>\r\n      <param name=\"arguments\">プロセスを起動するときにアプリケーションに渡すコマンド ライン引数。</param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Arguments\">\r\n      <summary>アプリケーションを起動するときに使用するコマンド ライン引数のセットを取得または設定します。</summary>\r\n      <returns>\r\n        <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> プロパティで指定したターゲット アプリケーションに渡す引数を格納した単一の文字列。既定値は、空の文字列 (\"\") です。Windows オペレーティング システムの Windows Vista 以前のバージョンでは、プロセスへの完全パスの長さに追加される引数の長さは 2080 よりも小さくする必要があります。Windows 7 およびそれ以降のバージョンでは、長さは 32699 よりも小さくする必要があります。引数はターゲット アプリケーションで解析され、解釈されるため、そのアプリケーションの想定に合わせたものでなければなりません。下記の「例」で説明するとおり、.NET アプリケーションではスペースが複数の引数間の区切り記号として解釈されます。1 つの引数にスペースが含まれる場合は引用符で囲む必要がありますが、これらの引用符はターゲット アプリケーションに渡されません。解析後の最終的な引数に引用符を組み込むには、それぞれの記号をトリプル エスケープします。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.CreateNoWindow\">\r\n      <summary>プロセスを新しいウィンドウで起動するかどうかを示す値を取得または設定します。</summary>\r\n      <returns>プロセス用の新しいウィンドウを作成せずにプロセスを起動する場合は true。それ以外の場合は false。既定値は、false です。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Domain\">\r\n      <summary>プロセスを開始するときに使用されるドメインを指定する値を取得または設定します。</summary>\r\n      <returns>プロセスを開始するときに使用する Active Directory ドメイン。ドメイン プロパティは、主に、Active Directory を使用するエンタープライズ環境のユーザーにとって重要です。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Environment\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.FileName\">\r\n      <summary>起動するアプリケーションまたはドキュメントを取得または設定します。</summary>\r\n      <returns>起動するアプリケーション名。または、アプリケーションに関連付けられていて、既定の \"open\" アクションが利用できるファイル タイプのドキュメント名。既定値は、空の文字列 (\"\") です。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.LoadUserProfile\">\r\n      <summary>Windows ユーザー プロファイルをレジストリから読み込むかどうかを示す値を取得または設定します。</summary>\r\n      <returns>Windows ユーザー プロファイルを読み込む必要がある場合は true。それ以外の場合は false。既定値は、false です。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Password\">\r\n      <summary>プロセスを開始するときに使用するユーザー パスワードを格納するセキュリティ文字列を取得または設定します。</summary>\r\n      <returns>プロセスの開始時に使用するユーザー パスワード。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\">\r\n      <summary>アプリケーションのエラー出力を <see cref=\"P:System.Diagnostics.Process.StandardError\" /> ストリームに書き込むかどうかを示す値を取得または設定します。</summary>\r\n      <returns>エラー出力を <see cref=\"P:System.Diagnostics.Process.StandardError\" /> に書き込む場合は true。それ以外の場合は false。既定値は、false です。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\">\r\n      <summary>アプリケーションの入力を <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> ストリームから読み取るかどうかを示す値を取得または設定します。</summary>\r\n      <returns>\r\n        <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> から入力を読み取る場合は true。それ以外の場合は false。既定値は、false です。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\">\r\n      <summary>アプリケーションのテキスト出力を <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> ストリームに書き込むかどうかを示す値を取得または設定します。</summary>\r\n      <returns>出力を <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> に書き込む場合は true。それ以外の場合は false。既定値は、false です。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding\">\r\n      <summary>エラー出力に最適なエンコーディングを取得または設定します。</summary>\r\n      <returns>エラー出力に最適なエンコーディングを表すオブジェクト。既定値は、null です。</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding\">\r\n      <summary>標準出力に最適なエンコーディングを取得または設定します。</summary>\r\n      <returns>標準出力に最適なエンコーディングを表すオブジェクト。既定値は、null です。</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UserName\">\r\n      <summary>プロセスを開始するときに使用するユーザー名を取得または設定します。</summary>\r\n      <returns>プロセスの開始時に使用するユーザー名。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\">\r\n      <summary>プロセスの起動にオペレーティング システムのシェルを使用するかどうかを示す値を取得または設定します。</summary>\r\n      <returns>プロセスを起動するときにシェルを使用する場合は true。プロセスを実行可能ファイルから直接作成する場合は false。既定値は、true です。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.WorkingDirectory\">\r\n      <summary>\r\n        <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> プロパティが false の場合に、開始するプロセスの作業ディレクトリを取得または設定します。<see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> が true の場合に、開始するプロセスを含むディレクトリを取得または設定します。</summary>\r\n      <returns>\r\n        <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> が true の場合、起動するプロセスがあるディレクトリの完全修飾名。<see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> プロパティが false の場合、開始するプロセスの作業ディレクトリ。既定値は、空の文字列 (\"\") です。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThread\">\r\n      <summary>オペレーティング システムのプロセス スレッドを表します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.BasePriority\">\r\n      <summary>スレッドの基本優先順位を取得します。</summary>\r\n      <returns>プロセスの優先順位クラスと関連付けられたスレッドの優先順位との組み合わせからオペレーティング システムが算出した、スレッドの基本優先順位。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.CurrentPriority\">\r\n      <summary>スレッドの現在の優先順位を取得します。</summary>\r\n      <returns>オペレーティング システムがスレッドをスケジュールする方法によっては、スレッドの現在の優先順位が基本優先順位と異なることがあります。アクティブなスレッドの優先順位を一時的に上げることもできます。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.Id\">\r\n      <summary>スレッドの一意な識別子を取得します。</summary>\r\n      <returns>特定のスレッドに関連付けられた一意な識別子。</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.IdealProcessor\">\r\n      <summary>このスレッドを実行する優先プロセッサを設定します。</summary>\r\n      <returns>スレッドの優先プロセッサは、システムがスレッドをスケジュールするときに、スレッドを実行するプロセッサを決定するために使用します。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">指定したプロセッサでスレッドを起動するよう設定できませんでした。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">プラットフォームは、Windows 98 または Windows Millennium Edition です。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">プロセスは、リモート コンピューター上にあります。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityBoostEnabled\">\r\n      <summary>スレッドのプロセスのメイン ウィンドウがフォーカスを受け取るたびに、関連付けられたスレッドの優先順位をオペレーティング システムが一時的に上げるかどうかを示す値を取得または設定します。</summary>\r\n      <returns>ユーザーがプロセスのインターフェイスと対話しているときにスレッドの優先順位を上げる場合は true。それ以外の場合は false。既定値は、false です。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">優先順位上昇情報を取得できませんでした。または優先順位上昇情報を設定できませんでした。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">プラットフォームは、Windows 98 または Windows Millennium Edition です。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">プロセスは、リモート コンピューター上にあります。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityLevel\">\r\n      <summary>スレッドの優先順位を取得または設定します。</summary>\r\n      <returns>スレッドの優先順位の範囲を指定する <see cref=\"T:System.Diagnostics.ThreadPriorityLevel\" /> 値のいずれか。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">スレッドの優先順位情報を取得できませんでした。またはスレッドの優先順位を設定できませんでした。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">プラットフォームは、Windows 98 または Windows Millennium Edition です。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">プロセスは、リモート コンピューター上にあります。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime\">\r\n      <summary>スレッドが、オペレーティング システム コアでコードを実行した時間を取得します。</summary>\r\n      <returns>スレッドが、オペレーティング システム コアでコードを実行した時間を示す <see cref=\"T:System.TimeSpan\" />。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">スレッド時間を取得できませんでした。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">プラットフォームは、Windows 98 または Windows Millennium Edition です。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">プロセスは、リモート コンピューター上にあります。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ProcessorAffinity\">\r\n      <summary>関連付けられたスレッドを実行できるプロセッサを設定します。</summary>\r\n      <returns>スレッドを実行できるプロセッサを表すビットのセットを指す <see cref=\"T:System.IntPtr\" />。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">プロセッサ アフィニティを設定できませんでした。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">プラットフォームは、Windows 98 または Windows Millennium Edition です。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">プロセスは、リモート コンピューター上にあります。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThread.ResetIdealProcessor\">\r\n      <summary>このスレッドに最も適したプロセッサをリセットして、単一の最も適したプロセッサがないことを示します。つまり、どのプロセッサも適しています。</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">最適なプロセッサをリセットできませんでした。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">プラットフォームは、Windows 98 または Windows Millennium Edition です。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">プロセスは、リモート コンピューター上にあります。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartAddress\">\r\n      <summary>このスレッドを起動するときにオペレーティング システムが呼び出した関数のメモリ アドレスを取得します。</summary>\r\n      <returns>スレッドを実行するアプリケーション定義の関数を指すスレッドの起動アドレス。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">プラットフォームは、Windows 98 または Windows Millennium Edition です。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">プロセスは、リモート コンピューター上にあります。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartTime\">\r\n      <summary>オペレーティング システムによってスレッドを起動した時刻を取得します。</summary>\r\n      <returns>オペレーティング システムがスレッドを起動したときのシステム上の時刻を表す <see cref=\"T:System.DateTime\" />。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">スレッド時間を取得できませんでした。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">プラットフォームは、Windows 98 または Windows Millennium Edition です。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">プロセスは、リモート コンピューター上にあります。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ThreadState\">\r\n      <summary>このスレッドの現在の状態を取得します。</summary>\r\n      <returns>実行中、待機中、終了など、スレッドの実行状態を示す <see cref=\"T:System.Diagnostics.ThreadState\" />。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">プラットフォームは、Windows 98 または Windows Millennium Edition です。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">プロセスは、リモート コンピューター上にあります。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.TotalProcessorTime\">\r\n      <summary>このスレッドがプロセッサを使用した時間の合計を取得します。</summary>\r\n      <returns>スレッドがプロセッサの制御を取得していた時間の合計を示す <see cref=\"T:System.TimeSpan\" />。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">スレッド時間を取得できませんでした。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">プラットフォームは、Windows 98 または Windows Millennium Edition です。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">プロセスは、リモート コンピューター上にあります。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.UserProcessorTime\">\r\n      <summary>関連付けられたスレッドが、アプリケーションでコードを実行した時間を取得します。</summary>\r\n      <returns>スレッドによるコード実行がオペレーティング システム コアではなくアプリケーションで行われた時間を示す <see cref=\"T:System.TimeSpan\" />。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">スレッド時間を取得できませんでした。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">プラットフォームは、Windows 98 または Windows Millennium Edition です。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">プロセスは、リモート コンピューター上にあります。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.WaitReason\">\r\n      <summary>スレッドが待機している理由を取得します。</summary>\r\n      <returns>スレッドが待機状態にある理由を表す <see cref=\"T:System.Diagnostics.ThreadWaitReason\" />。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">スレッドが待機状態にありません。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">プラットフォームは、Windows 98 または Windows Millennium Edition です。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">プロセスは、リモート コンピューター上にあります。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThreadCollection\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> オブジェクトの厳密に型指定されたコレクションを提供します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> インスタンスに関連付けずに、<see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> クラスの新しいインスタンスを初期化します。</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> インスタンスの配列を指定して、<see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> クラスの新しいインスタンスを初期化します。</summary>\r\n      <param name=\"processThreads\">この <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> インスタンスを初期化するために使用する <see cref=\"T:System.Diagnostics.ProcessThread\" /> インスタンスの配列。</param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)\">\r\n      <summary>プロセス スレッドをコレクションに追加します。</summary>\r\n      <returns>コレクション内のスレッドの 0 から始まるインデックス番号。</returns>\r\n      <param name=\"thread\">コレクションに追加するスレッド。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)\">\r\n      <summary>指定したプロセス スレッドがコレクション内にあるかどうかを調べます。</summary>\r\n      <returns>スレッドがコレクション内にある場合は true。それ以外の場合は false。</returns>\r\n      <param name=\"thread\">コレクション内にあるかどうかを調べるスレッドを示す <see cref=\"T:System.Diagnostics.ProcessThread\" /> インスタンス。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)\">\r\n      <summary>コレクションの指定したインデックスに <see cref=\"T:System.Diagnostics.ProcessThread\" /> インスタンスの配列をコピーします。</summary>\r\n      <param name=\"array\">コレクションに追加する <see cref=\"T:System.Diagnostics.ProcessThread\" /> インスタンスの配列。</param>\r\n      <param name=\"index\">新しいインスタンスを追加する位置。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)\">\r\n      <summary>コレクション内の指定したスレッドの位置を提供します。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 内のスレッドの位置を定義する 0 から始まるインデックス番号。</returns>\r\n      <param name=\"thread\">インデックスを取得する <see cref=\"T:System.Diagnostics.ProcessThread\" />。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)\">\r\n      <summary>コレクション内の指定した位置にプロセス スレッドを挿入します。</summary>\r\n      <param name=\"index\">スレッドを挿入する位置を示す 0 から始まるインデックス番号。</param>\r\n      <param name=\"thread\">コレクションに挿入するスレッド。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)\">\r\n      <summary>一連のプロセス スレッドを反復処理するためのインデックスを取得します。</summary>\r\n      <returns>コレクション内のスレッドにインデックスを作成する <see cref=\"T:System.Diagnostics.ProcessThread\" />。</returns>\r\n      <param name=\"index\">コレクション内のスレッドの 0 から始まるインデックス値。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)\">\r\n      <summary>コレクションからプロセス スレッドを削除します。</summary>\r\n      <param name=\"thread\">コレクションから削除するスレッド。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ThreadPriorityLevel\">\r\n      <summary>スレッドの優先順位を指定します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.AboveNormal\">\r\n      <summary>関連付けられた <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> の通常の優先順位を基準に 1 段階上を指定します。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.BelowNormal\">\r\n      <summary>関連付けられた <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> の通常の優先順位を基準に 1 段階下を指定します。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Highest\">\r\n      <summary>最も高い優先順位を指定します。関連付けられた <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> の通常の優先順位から 2 段階上です。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Idle\">\r\n      <summary>アイドル優先順位を指定します。関連付けられた <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> の値とは関係なく、すべてのスレッドの優先順位値の中で最も低い優先順位です。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Lowest\">\r\n      <summary>最も低い優先順位を指定します。関連付けられた <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> の通常の優先順位から 2 段階下です。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Normal\">\r\n      <summary>関連付けられた <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> の通常の優先順位を指定します。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.TimeCritical\">\r\n      <summary>時間が重要な優先順位を指定します。関連付けられた <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> の値とは無関係に、すべてのスレッドの中で最も高い優先順位です。</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadState\">\r\n      <summary>スレッドの現在の実行状態を指定します。</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Initialized\">\r\n      <summary>スレッドは初期化されたが、まだ開始していないことを示す状態。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Ready\">\r\n      <summary>解放されているプロセッサがないため、スレッドがプロセッサの使用を待機していることを示す状態。スレッドは、次に利用可能になるプロセッサで実行する準備が整っています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Running\">\r\n      <summary>スレッドが現在プロセッサを使用していることを示す状態。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Standby\">\r\n      <summary>スレッドがすぐにプロセッサを使用することを示す状態。一度に 1 つのスレッドだけが、この状態になることができます。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Terminated\">\r\n      <summary>スレッドが実行を終了しスレッド自身も終了したことを示す状態。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Transition\">\r\n      <summary>スレッドが、実行前にプロセッサ以外のリソースを待機していることを示す状態。たとえば、ディスクから実行スタックのページングを待機している場合があります。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Unknown\">\r\n      <summary>スレッドの状態が不明です。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Wait\">\r\n      <summary>スレッドが、周辺操作の完了またはリソースの解放を待機しているために、プロセッサを使用する準備が整っていないことを示す状態。スレッドの準備が整うと、スケジュールが再設定されます。</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadWaitReason\">\r\n      <summary>スレッドが待機している理由を示します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairHigh\">\r\n      <summary>スレッドは、イベント ペア High を待機しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairLow\">\r\n      <summary>スレッドは、イベント ペア Low を待機しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.ExecutionDelay\">\r\n      <summary>スレッドの実行が遅延しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Executive\">\r\n      <summary>スレッドは、スケジューラを待機しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.FreePage\">\r\n      <summary>スレッドは、空き仮想メモリ ページを待機しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReceive\">\r\n      <summary>スレッドは、ローカル プロシージャ呼び出しの到達を待機しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReply\">\r\n      <summary>スレッドは、ローカル プロシージャ呼び出しへの応答の到達を待機しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageIn\">\r\n      <summary>スレッドは、仮想メモリ ページのメモリへの到達を待機しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageOut\">\r\n      <summary>スレッドは、仮想メモリ ページのディスクへの書き込みを待機しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Suspended\">\r\n      <summary>スレッドの実行は中断しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.SystemAllocation\">\r\n      <summary>スレッドは、システムによる割り当てを待機しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Unknown\">\r\n      <summary>スレッドは、不明な理由のために待機しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.UserRequest\">\r\n      <summary>スレッドは、ユーザー要求を待機しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.VirtualMemory\">\r\n      <summary>スレッドは、仮想メモリの割り当てを待機しています。</summary>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/ko/System.Diagnostics.Process.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<doc>\r\n  <assembly>\r\n    <name>System.Diagnostics.Process</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\">\r\n      <summary>[보안 중요] 프로세스 핸들에 대해 관리되는 래퍼를 제공합니다.</summary>\r\n    </member>\r\n    <member name=\"M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)\">\r\n      <summary>[보안 중요] 새 인스턴스를 초기화는 <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> 에서 지정된 된 핸들을 종료 단계 핸들을 해제 여부를 나타내는 클래스입니다. </summary>\r\n      <param name=\"existingHandle\">래핑될 핸들입니다.</param>\r\n      <param name=\"ownsHandle\">true안정적으로 있도록 <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> 종료 단계 핸들을 해제 합니다. 그렇지 않은 경우 false.</param>\r\n    </member>\r\n    <member name=\"P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid\"></member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventArgs\">\r\n      <summary>\r\n        <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" />과 <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> 이벤트에 대한 데이터를 제공합니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.DataReceivedEventArgs.Data\">\r\n      <summary>리디렉션된 <see cref=\"T:System.Diagnostics.Process\" /> 출력 스트림에 쓰여진 문자 줄을 가져옵니다.</summary>\r\n      <returns>연결된 <see cref=\"T:System.Diagnostics.Process\" />가 리디렉션된 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 또는 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 스트림에 쓴 줄입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventHandler\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.Process\" />의 <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> 이벤트 또는 <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> 이벤트를 처리할 메서드를 나타냅니다.</summary>\r\n      <param name=\"sender\">이벤트 소스입니다. </param>\r\n      <param name=\"e\">이벤트 데이터가 포함된 <see cref=\"T:System.Diagnostics.DataReceivedEventArgs\" />입니다. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.Process\">\r\n      <summary>로컬 및 원격 프로세스에 대한 액세스를 제공하고 로컬 시스템 프로세스를 시작하고 중지할 수 있습니다.이 형식에 대한 .NET Framework 소스 코드를 찾아보려면 참조 원본을 참조하세요.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.#ctor\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 클래스의 새 인스턴스를 초기화합니다.</summary>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.BasePriority\">\r\n      <summary>연결된 프로세스의 기본 우선 순위를 가져옵니다.</summary>\r\n      <returns>연결된 프로세스의 <see cref=\"P:System.Diagnostics.Process.PriorityClass\" />에서 계산되는 기본 우선 순위입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or- The process has not started, so there is no process ID. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginErrorReadLine\">\r\n      <summary>응용 프로그램의 리디렉션된 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 스트림에 대해 비동기 읽기 작업을 시작합니다.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginOutputReadLine\">\r\n      <summary>응용 프로그램의 리디렉션된 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 스트림에 대해 비동기 읽기 작업을 시작합니다.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelErrorRead\">\r\n      <summary>응용 프로그램의 리디렉션된 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 스트림에 대해 비동기 읽기 작업을 취소합니다.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelOutputRead\">\r\n      <summary>응용 프로그램의 리디렉션된 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 스트림에 대해 비동기 읽기 작업을 취소합니다.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose\"></member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose(System.Boolean)\">\r\n      <summary>이 프로세스에서 사용하는 리소스를 모두 해제합니다.</summary>\r\n      <param name=\"disposing\">관리되는 리소스와 관리되지 않는 리소스를 모두 해제하려면 true로 설정하고, 관리되지 않는 리소스만 해제하려면 false로 설정합니다. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.EnableRaisingEvents\">\r\n      <summary>프로세스가 종료될 때 <see cref=\"E:System.Diagnostics.Process.Exited\" /> 이벤트를 발생시켜야 하는지를 나타내는 값을 가져오거나 설정합니다.</summary>\r\n      <returns>종료 명령 또는 <see cref=\"M:System.Diagnostics.Process.Kill\" /> 호출을 통해 연결된 프로세스가 종료될 때 <see cref=\"E:System.Diagnostics.Process.Exited\" /> 이벤트가 발생해야 한다면 true이고, 그러지 않으면 false입니다.기본값은 false입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.EnterDebugMode\">\r\n      <summary>현재 스레드에서 네이티브 속성 SeDebugPrivilege를 활성화하여 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소를 특수 모드에서 실행되는 운영 체제 프로세스와 상호 작용하는 상태로 만듭니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.ErrorDataReceived\">\r\n      <summary>응용 프로그램이 리디렉션된 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 스트림에 쓸 때 발생합니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitCode\">\r\n      <summary>연결된 프로세스가 종료될 때 연결된 프로세스에서 지정한 값을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스가 종료될 때 연결된 프로세스에서 지정한 코드입니다.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has not exited.-or- The process <see cref=\"P:System.Diagnostics.Process.Handle\" /> is not valid. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitCode\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.Exited\">\r\n      <summary>프로세스가 종료될 때 발생합니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitTime\">\r\n      <summary>연결된 프로세스가 종료된 시간을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스가 종료된 시간을 나타내는 <see cref=\"T:System.DateTime\" />입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetCurrentProcess\">\r\n      <summary>새 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소를 가져온 후 현재 활성화되어 있는 프로세스에 연결합니다.</summary>\r\n      <returns>호출하는 응용 프로그램에서 실행 중인 프로세스 리소스에 연결된 새 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소입니다.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32)\">\r\n      <summary>로컬 컴퓨터의 프로세서에 대한 식별자가 주어지면 새 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소를 반환합니다.</summary>\r\n      <returns>\r\n        <paramref name=\"processId\" /> 매개 변수에 의해 식별되는 로컬 프로세스 리소스에 연결된 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소입니다.</returns>\r\n      <param name=\"processId\">프로세스 리소스의 시스템 고유 식별자입니다. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)\">\r\n      <summary>프로세스 식별자 및 네트워크에 있는 컴퓨터의 이름이 주어지면 새 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소를 반환합니다.</summary>\r\n      <returns>\r\n        <paramref name=\"processId\" /> 매개 변수에 의해 식별되는 원격 프로세스 리소스에 연결된 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소입니다.</returns>\r\n      <param name=\"processId\">프로세스 리소스의 시스템 고유 식별자입니다. </param>\r\n      <param name=\"machineName\">네트워크에 있는 컴퓨터 이름입니다. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.-or- The <paramref name=\"machineName\" /> parameter syntax is invalid.The name might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses\">\r\n      <summary>로컬 컴퓨터의 각 프로세스 리소스에 대해 새 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소를 만듭니다.</summary>\r\n      <returns>로컬 컴퓨터에서 실행 중인 모든 프로세스 리소스를 나타내는 <see cref=\"T:System.Diagnostics.Process\" /> 형식의 배열입니다.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses(System.String)\">\r\n      <summary>지정한 컴퓨터의 각 프로세스 리소스에 대해 새 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소를 만듭니다.</summary>\r\n      <returns>지정된 컴퓨터에서 실행 중인 모든 프로세스 리소스를 나타내는 <see cref=\"T:System.Diagnostics.Process\" /> 형식의 배열입니다.</returns>\r\n      <param name=\"machineName\">프로세스 목록을 읽어 올 컴퓨터입니다. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String)\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소로 이루어진 새 배열을 만들어 지정한 프로세스 이름을 공유하는 로컬 컴퓨터의 모든 프로세스 리소스에 연결합니다.</summary>\r\n      <returns>지정한 응용 프로그램 또는 파일을 실행 중인 프로세스 리소스를 나타내는 <see cref=\"T:System.Diagnostics.Process\" /> 형식의 배열입니다.</returns>\r\n      <param name=\"processName\">프로세스의 이름입니다. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소로 이루어진 새 배열을 만들어 지정한 프로세스 이름을 공유하는 원격 컴퓨터에 있는 모든 프로세스 리소스에 연결합니다.</summary>\r\n      <returns>지정한 응용 프로그램 또는 파일을 실행 중인 프로세스 리소스를 나타내는 <see cref=\"T:System.Diagnostics.Process\" /> 형식의 배열입니다.</returns>\r\n      <param name=\"processName\">프로세스의 이름입니다. </param>\r\n      <param name=\"machineName\">네트워크에 있는 컴퓨터 이름입니다. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.HasExited\">\r\n      <summary>연결된 프로세스가 종료되었는지를 나타내는 값을 가져옵니다.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소가 참조하는 운영 체제 프로세스가 종료되었으면 true이고, 그러지 않으면 false입니다.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with the object. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The exit code for the process could not be retrieved. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.HasExited\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Id\">\r\n      <summary>연결된 프로세스의 고유 식별자를 가져옵니다.</summary>\r\n      <returns>이 <see cref=\"T:System.Diagnostics.Process\" /> 인스턴스에서 참조하는 프로세스의 고유 식별자입니다. 이 식별자는 시스템에서 생성됩니다.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process's <see cref=\"P:System.Diagnostics.Process.Id\" /> property has not been set.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Kill\">\r\n      <summary>연결된 프로세스를 즉시 중지합니다.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to call <see cref=\"M:System.Diagnostics.Process.Kill\" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has already exited. -or-There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.LeaveDebugMode\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소를 특수 모드에서 실행되는 운영 체제 프로세스와 상호 작용할 수 없는 상태로 만듭니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MachineName\">\r\n      <summary>연결된 프로세스가 실행 중인 컴퓨터 이름을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스가 실행 중인 컴퓨터 이름입니다.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MainModule\">\r\n      <summary>연결된 프로세스의 주 모듈을 가져옵니다.</summary>\r\n      <returns>프로세스를 시작하는 데 사용된 <see cref=\"T:System.Diagnostics.ProcessModule\" />입니다.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MainModule\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A 32-bit process is trying to access the modules of a 64-bit process.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MaxWorkingSet\">\r\n      <summary>연결된 프로세스에 대해 허용되는 작업 집합의 최대 크기를 가져오거나 설정합니다.</summary>\r\n      <returns>프로세스에 대해 메모리에서 허용된 작업 집합의 최대 크기(바이트)입니다.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MaxWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MinWorkingSet\">\r\n      <summary>연결된 프로세스에 대해 허용되는 작업 집합의 최소 크기를 가져오거나 설정합니다.</summary>\r\n      <returns>프로세스에 대해 메모리에서 필요로 하는 작업 집합의 최소 크기(바이트)입니다.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MinWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Modules\">\r\n      <summary>연결된 프로세스에 의해 로드된 모듈을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스에 의해 로드된 모듈을 나타내는 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 형식의 배열입니다.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for either the system process or the idle process.These processes do not have modules.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.NonpagedSystemMemorySize64\">\r\n      <summary>연결된 프로세스에 할당된 비페이징 시스템 메모리의 양을 가져옵니다.</summary>\r\n      <returns>가상 메모리 페이징 파일에 쓸 수 없는 연결된 프로세스에 대해 시스템에서 할당한 메모리의 양(바이트)입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.OnExited\">\r\n      <summary>\r\n        <see cref=\"E:System.Diagnostics.Process.Exited\" /> 이벤트를 발생시킵니다.</summary>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.OutputDataReceived\">\r\n      <summary>응용 프로그램이 리디렉션된 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 스트림에 쓸 때마다 발생합니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedMemorySize64\">\r\n      <summary>연결된 프로세스에 할당된 페이징 메모리의 양을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스의 가상 메모리 페이징 파일에 할당된 메모리의 양(바이트)입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedSystemMemorySize64\">\r\n      <summary>연결된 프로세스에 할당된 페이징할 수 있는 시스템 메모리의 양을 가져옵니다.</summary>\r\n      <returns>가상 메모리 페이징 파일에 쓸 수 있는 연결된 프로세스에 대해 할당된 시스템 메모리의 양(바이트)입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakPagedMemorySize64\">\r\n      <summary>연결된 프로세스에서 사용하는 가상 메모리 페이징 파일의 최대 메모리 양을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스가 시작된 이후 연결된 프로세스의 가상 메모리 페이징 파일에 할당된 메모리의 최대 양(바이트)입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakVirtualMemorySize64\">\r\n      <summary>연결된 프로세스에서 사용된 가상 메모리의 최대 양을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스가 시작된 이후 해당 프로세스에 할당된 가상 메모리의 최대 양(바이트)입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakWorkingSet64\">\r\n      <summary>연결된 프로세스에서 사용된 실제 메모리의 최대 양을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스가 시작된 이후 해당 프로세스에 할당된 실제 메모리의 최대 양(바이트)입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityBoostEnabled\">\r\n      <summary>포커스가 주 창에 있을 때 운영 체제가 연결된 프로세스의 우선 순위를 일시적으로 높일지를 나타내는 값을 가져오거나 설정합니다.</summary>\r\n      <returns>프로세스가 대기 상태에서 빠져나올 때 프로세스의 우선 순위를 동적으로 높여야 하는 경우 true이고, 그러지 않으면 false입니다.기본값은 false입니다.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Priority boost information could not be retrieved from the associated process resource. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityBoostEnabled\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityClass\">\r\n      <summary>연결된 프로세스에 대한 전체 우선 순위 범주를 가져오거나 설정합니다.</summary>\r\n      <returns>연결된 프로세스에 대한 우선 순위 범주입니다. 이를 통해 해당 프로세스의 <see cref=\"P:System.Diagnostics.Process.BasePriority\" />를 계산할 수 있습니다.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">You have set the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>\r\n      <exception cref=\"T:System.ComponentModel.InvalidEnumArgumentException\">Priority class cannot be set because it does not use a valid value, as defined in the <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> enumeration.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivateMemorySize64\">\r\n      <summary>연결된 프로세스에 할당된 전용 메모리의 양을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스에 할당되어 다른 프로세스와는 공유할 수 없는 메모리의 양(바이트)입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\">\r\n      <summary>해당 프로세스의 권한 있는 프로세서 시간을 가져옵니다.</summary>\r\n      <returns>프로세스가 운영 체제 코어 내부에서 코드를 실행하는 데 소비한 시간을 나타내는 <see cref=\"T:System.TimeSpan\" />입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessName\">\r\n      <summary>프로세스의 이름을 가져옵니다.</summary>\r\n      <returns>사용자가 프로세스를 식별할 수 있도록 시스템에서 사용하는 이름입니다.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process does not have an identifier, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" />.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is not on this computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessorAffinity\">\r\n      <summary>이 프로세스에 포함된 스레드의 실행을 예약할 수 있는 프로세서를 가져오거나 설정합니다.</summary>\r\n      <returns>연결된 프로세스의 스레드가 실행될 수 있는 프로세서를 나타내는 비트 마스크입니다.기본값은 컴퓨터의 프로세서 수에 따라 다릅니다.기본값은 2 n -1입니다. 여기서 n은 프로세서 수입니다.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> was not available.-or- The process has exited. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Refresh\">\r\n      <summary>프로세스 구성 요소 내에 캐시되어 있는 연결된 프로세스 정보를 모두 삭제합니다.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SafeHandle\">\r\n      <summary>이 프로세스에 대한 기본 핸들을 가져옵니다.</summary>\r\n      <returns>이 프로세스에 대한 기본 핸들입니다.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SessionId\">\r\n      <summary>연결된 프로세스의 터미널 서비스 세션 식별자를 가져옵니다.</summary>\r\n      <returns>연결된 프로세스의 터미널 서비스 세션 식별자입니다.</returns>\r\n      <exception cref=\"T:System.NullReferenceException\">There is no session associated with this process.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The <see cref=\"P:System.Diagnostics.Process.SessionId\" /> property is not supported on Windows 98.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardError\">\r\n      <summary>응용 프로그램의 오류 출력을 읽는 데 사용되는 스트림을 가져옵니다.</summary>\r\n      <returns>응용 프로그램의 표준 오류 스트림을 읽는 데 사용할 수 있는 <see cref=\"T:System.IO.StreamReader\" />입니다.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginErrorReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardInput\">\r\n      <summary>응용 프로그램의 입력을 쓰는 데 사용되는 스트림을 가져옵니다.</summary>\r\n      <returns>응용 프로그램의 표준 입력 스트림을 쓰는 데 사용할 수 있는 <see cref=\"T:System.IO.StreamWriter\" />입니다.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> stream has not been defined because <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" /> is set to false. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardOutput\">\r\n      <summary>응용 프로그램의 텍스트 출력을 읽는 데 사용되는 스트림을 가져옵니다.</summary>\r\n      <returns>응용 프로그램의 표준 출력 스트림을 읽는 데 사용할 수 있는 <see cref=\"T:System.IO.StreamReader\" />입니다.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginOutputReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start\">\r\n      <summary>이 <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> 구성 요소의 <see cref=\"T:System.Diagnostics.Process\" /> 속성으로 지정된 프로세스 리소스를 시작하거나 다시 사용하여 구성 요소에 연결합니다.</summary>\r\n      <returns>프로세스 리소스가 시작된 경우에는 true이고 기존 프로세스를 다시 사용한 경우처럼 새 프로세스 리소스가 시작되지 않은 경우에는 false입니다.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <see cref=\"T:System.Diagnostics.Process\" /> component's <see cref=\"P:System.Diagnostics.Process.StartInfo\" />.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> member of the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> property is true while <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is true. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)\">\r\n      <summary>시작할 프로세스의 파일 이름 같은 프로세스 시작 정보가 포함된 매개 변수에 의해 지정된 프로세스 리소스를 시작하고 해당 리소스를 새 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소에 연결합니다.</summary>\r\n      <returns>프로세스 리소스와 연결되거나 시작된 프로세스가 없는 경우 null에 연결되는 새 <see cref=\"T:System.Diagnostics.Process\" />입니다.같은 프로세스에서 이미 실행 중인 인스턴스와 함께 시작되는 새 프로세스는 서로 독립적인 관계입니다.뿐만 아니라 시작 시 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 속성이 이미 true로 설정되어 있는 null이 아닌 프로세스가 반환될 수 있습니다.이 경우 시작된 프로세스가 자체의 기존 인스턴스를 활성화한 후 종료될 수 있습니다.</returns>\r\n      <param name=\"startInfo\">파일 이름 및 모든 명령줄 인수를 포함하여 프로세스를 시작하는 데 사용되는 정보가 들어 있는 <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />입니다. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is also true.-or-The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UserName\" /> property is not null or empty or the <see cref=\"P:System.Diagnostics.ProcessStartInfo.Password\" /> property is not null.</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"startInfo\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The file specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property could not be found.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String)\">\r\n      <summary>문서 또는 응용 프로그램 파일 이름을 지정하여 프로세스 리소스를 시작하고 해당 리소스를 새 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소에 연결합니다.</summary>\r\n      <returns>프로세스 리소스와 연결되거나 시작된 프로세스가 없는 경우 null에 연결되는 새 <see cref=\"T:System.Diagnostics.Process\" />입니다.같은 프로세스에서 이미 실행 중인 인스턴스와 함께 시작되는 새 프로세스는 서로 독립적인 관계입니다.뿐만 아니라 시작 시 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 속성이 이미 true로 설정되어 있는 null이 아닌 프로세스가 반환될 수 있습니다.이 경우 시작된 프로세스가 자체의 기존 인스턴스를 활성화한 후 종료될 수 있습니다.</returns>\r\n      <param name=\"fileName\">프로세스에서 실행될 문서 또는 응용 프로그램 파일의 이름입니다. </param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String)\">\r\n      <summary>응용 프로그램 이름 및 명령줄 인수 집합을 지정하여 프로세스 리소스를 시작하고 해당 리소스를 새 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소에 연결합니다.</summary>\r\n      <returns>프로세스 리소스와 연결되거나 시작된 프로세스가 없는 경우 null에 연결되는 새 <see cref=\"T:System.Diagnostics.Process\" />입니다.같은 프로세스에서 이미 실행 중인 인스턴스와 함께 시작되는 새 프로세스는 서로 독립적인 관계입니다.뿐만 아니라 시작 시 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 속성이 이미 true로 설정되어 있는 null이 아닌 프로세스가 반환될 수 있습니다.이 경우 시작된 프로세스가 자체의 기존 인스턴스를 활성화한 후 종료될 수 있습니다.</returns>\r\n      <param name=\"fileName\">프로세스에서 실행될 응용 프로그램 파일 이름입니다. </param>\r\n      <param name=\"arguments\">프로세스를 시작할 때 전달할 명령줄 인수입니다. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <paramref name=\"fileName\" /> or <paramref name=\"arguments\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>응용 프로그램 이름, 사용자 이름, 암호 및 도메인을 지정하여 프로세스 리소스를 시작하고 해당 리소스를 새 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소에 연결합니다.</summary>\r\n      <returns>프로세스 리소스와 연결되거나 시작된 프로세스가 없는 경우 null에 연결되는 새 <see cref=\"T:System.Diagnostics.Process\" />입니다.같은 프로세스에서 이미 실행 중인 인스턴스와 함께 시작되는 새 프로세스는 서로 독립적인 관계입니다.뿐만 아니라 시작 시 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 속성이 이미 true로 설정되어 있는 null이 아닌 프로세스가 반환될 수 있습니다.이 경우 시작된 프로세스가 자체의 기존 인스턴스를 활성화한 후 종료될 수 있습니다.</returns>\r\n      <param name=\"fileName\">프로세스에서 실행될 응용 프로그램 파일 이름입니다.</param>\r\n      <param name=\"userName\">프로세스를 시작할 때 사용할 사용자 이름입니다.</param>\r\n      <param name=\"password\">프로세스를 시작할 때 사용할 암호가 포함된 <see cref=\"T:System.Security.SecureString\" />입니다.</param>\r\n      <param name=\"domain\">프로세스를 시작할 때 사용할 도메인입니다.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>응용 프로그램 이름, 명령줄 인수 집합, 사용자 이름, 암호 및 도메인을 지정하여 프로세스 리소스를 시작하고 해당 리소스를 새 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소에 연결합니다.</summary>\r\n      <returns>프로세스 리소스와 연결되거나 시작된 프로세스가 없는 경우 null에 연결되는 새 <see cref=\"T:System.Diagnostics.Process\" />입니다.같은 프로세스에서 이미 실행 중인 인스턴스와 함께 시작되는 새 프로세스는 서로 독립적인 관계입니다.뿐만 아니라 시작 시 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 속성이 이미 true로 설정되어 있는 null이 아닌 프로세스가 반환될 수 있습니다.이 경우 시작된 프로세스가 자체의 기존 인스턴스를 활성화한 후 종료될 수 있습니다.</returns>\r\n      <param name=\"fileName\">프로세스에서 실행될 응용 프로그램 파일 이름입니다. </param>\r\n      <param name=\"arguments\">프로세스를 시작할 때 전달할 명령줄 인수입니다. </param>\r\n      <param name=\"userName\">프로세스를 시작할 때 사용할 사용자 이름입니다.</param>\r\n      <param name=\"password\">프로세스를 시작할 때 사용할 암호가 포함된 <see cref=\"T:System.Security.SecureString\" />입니다.</param>\r\n      <param name=\"domain\">프로세스를 시작할 때 사용할 도메인입니다.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartInfo\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.Process\" />의 <see cref=\"M:System.Diagnostics.Process.Start\" /> 메서드에 전달할 속성을 가져오거나 설정합니다.</summary>\r\n      <returns>프로세스를 시작하는 데 사용된 데이터를 나타내는 <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />입니다.이러한 인수에는 프로세스를 시작하는 데 사용된 실행 파일이나 문서 이름이 포함됩니다.</returns>\r\n      <exception cref=\"T:System.ArgumentNullException\">The value that specifies the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> is null. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartTime\">\r\n      <summary>연결된 프로세스가 시작된 시간을 가져옵니다.</summary>\r\n      <returns>해당 프로세스가 시작된 시간을 나타내는 개체입니다.프로세스가 실행되고 있지 않으면 예외가 throw됩니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.StartTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or-The process has not been started.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred in the call to the Windows function.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Threads\">\r\n      <summary>연결된 프로세스에서 실행 중인 스레드를 가져오거나 설정합니다.</summary>\r\n      <returns>연결된 프로세스에서 현재 실행 중인 운영 체제 스레드를 나타내는 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 형식의 배열입니다.</returns>\r\n      <exception cref=\"T:System.SystemException\">The process does not have an <see cref=\"P:System.Diagnostics.Process.Id\" />, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" /> instance.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.TotalProcessorTime\">\r\n      <summary>이 프로세스의 총 프로세서 시간을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스에서 CPU를 사용해 소비한 시간을 나타내는 <see cref=\"T:System.TimeSpan\" />입니다.이 값은 <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" />과 <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" />의 합입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.TotalProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.UserProcessorTime\">\r\n      <summary>이 프로세스의 사용자 프로세서 시간을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스가 운영 체제 코어 내부가 아닌 프로세스의 응용 프로그램 부분 내부에서 코드를 실행하는 데 소비한 시간을 나타내는 <see cref=\"T:System.TimeSpan\" />입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.VirtualMemorySize64\">\r\n      <summary>연결된 프로세스에 할당된 가상 메모리의 양을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스에 할당된 가상 메모리의 양(바이트)입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit\">\r\n      <summary>연결된 프로세스가 종료될 때까지 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소를 무기한 대기하게 합니다.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\">\r\n      <summary>연결된 프로세스가 종료되도록 지정한 밀리초 동안 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소를 대기하게 합니다.</summary>\r\n      <returns>연결된 프로세스가 종료된 경우 true이고, 그러지 않으면 false입니다.</returns>\r\n      <param name=\"milliseconds\">연결된 프로세스가 종료될 때까지 대기하는 시간(밀리초)입니다.최대값은 사용 가능한 가장 큰 32비트 정수 값이며, 이는 운영 체제에서 사실상 무기한 대기한다는 것을 나타냅니다.</param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.WorkingSet64\">\r\n      <summary>연결된 프로세스에 할당된 실제 메모리의 양을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스에 할당된 실제 메모리의 양(바이트)입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModule\">\r\n      <summary>특정 프로세스에 로드된 .dll 또는 .exe 파일을 나타냅니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.BaseAddress\">\r\n      <summary>모듈이 로드된 메모리 주소를 가져옵니다.</summary>\r\n      <returns>모듈의 로드 주소입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.EntryPointAddress\">\r\n      <summary>시스템에서 모듈을 로드하고 실행할 때 실행되는 함수의 메모리 주소를 가져옵니다.</summary>\r\n      <returns>모듈의 진입점입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.FileName\">\r\n      <summary>모듈의 전체 경로를 가져옵니다.</summary>\r\n      <returns>모듈의 위치를 정의하는 정규화된 경로입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleMemorySize\">\r\n      <summary>모듈을 로드하는 데 필요한 메모리의 양을 가져옵니다.</summary>\r\n      <returns>모듈이 자치하는 메모리의 크기(바이트)입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleName\">\r\n      <summary>프로세스 모듈의 이름을 가져옵니다.</summary>\r\n      <returns>모듈의 이름입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModule.ToString\">\r\n      <summary>모듈 이름을 문자열로 변환합니다.</summary>\r\n      <returns>\r\n        <see cref=\"P:System.Diagnostics.ProcessModule.ModuleName\" /> 속성의 값입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModuleCollection\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> 개체의 강력한 형식의 컬렉션을 제공합니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor\">\r\n      <summary>연결된 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 인스턴스 없이 <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 클래스의 새 인스턴스를 초기화합니다.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> 인스턴스의 지정된 배열을 사용하여 <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 클래스의 새 인스턴스를 초기화합니다.</summary>\r\n      <param name=\"processModules\">이 <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 인스턴스를 초기화하는 데 사용할 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 인스턴스의 배열입니다. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)\">\r\n      <summary>지정한 프로세스 모듈이 컬렉션에 있는지 여부를 확인합니다.</summary>\r\n      <returns>해당 모듈이 컬렉션에 있으면 true이고, 그렇지 않으면 false입니다.</returns>\r\n      <param name=\"module\">이 컬렉션에서 찾을 모듈을 나타내는 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 인스턴스입니다. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> 인스턴스의 배열을 컬렉션 내의 지정된 인덱스에 복사합니다.</summary>\r\n      <param name=\"array\">컬렉션에 추가할 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 인스턴스의 배열입니다. </param>\r\n      <param name=\"index\">새 인스턴스를 추가할 위치입니다. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)\">\r\n      <summary>컬렉션 내에서 지정된 모듈의 위치를 제공합니다.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 내에서 모듈의 위치를 정의하는 인덱스(0부터 시작)입니다.</returns>\r\n      <param name=\"module\">해당 인덱스가 검색되는 <see cref=\"T:System.Diagnostics.ProcessModule\" />입니다. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)\">\r\n      <summary>프로세스 모듈 집합 전체를 반복하기 위한 인덱스를 가져옵니다.</summary>\r\n      <returns>컬렉션의 모듈을 인덱싱하는 <see cref=\"T:System.Diagnostics.ProcessModule\" />입니다. </returns>\r\n      <param name=\"index\">컬렉션 내의 모듈 값에 대한 0부터 시작하는 인덱스입니다. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ProcessPriorityClass\">\r\n      <summary>시스템이 프로세스와 연결되는 우선 순위를 나타냅니다.이 값은 각 프로세스 스레드의 우선 순위 값과 더불어 각 스레드의 기본 우선 순위 수준을 결정합니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.AboveNormal\">\r\n      <summary>프로세스 우선 순위를 Normal보다는 높게, <see cref=\"F:System.Diagnostics.ProcessPriorityClass.High\" />보다는 낮게 지정합니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.BelowNormal\">\r\n      <summary>프로세스 우선 순위를 Idle보다는 높게, Normal보다는 낮게 지정합니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.High\">\r\n      <summary>운영 체제의 부하와 관계없이 사용자가 호출하면 즉시 응답해야 하는 Task List 대화 상자 같이 즉각 실행되어야 하는 시간 위험 작업을 프로세스가 수행하도록 지정합니다.프로세스의 스레드는 정상 또는 유휴 우선 순위 클래스 프로세스의 스레드를 우선합니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Idle\">\r\n      <summary>화면 보호기와 같이 시스템이 유휴 상태일 때에만 이 프로세스의 스레드가 실행되도록 지정합니다.프로세스의 스레드는 더 높은 우선 순위 클래스에서 실행되는 프로세스의 스레드가 우선합니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Normal\">\r\n      <summary>프로세스를 특별히 예약할 필요가 없도록 지정합니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.RealTime\">\r\n      <summary>프로세스의 우선 순위가 최고가 되도록 지정합니다.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessStartInfo\">\r\n      <summary>프로세스를 시작할 때 사용되는 값 집합을 지정합니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor\">\r\n      <summary>프로세스를 시작할 때 사용할 파일 이름을 지정하지 않고 <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> 클래스의 새 인스턴스를 초기화합니다.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> 클래스의 새 인스턴스를 초기화하고 프로세스를 시작할 때 사용할 응용 프로그램이나 문서와 같은 파일 이름을 지정합니다.</summary>\r\n      <param name=\"fileName\">프로세스를 시작할 때 사용할 응용 프로그램이나 문서입니다. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> 클래스의 새 인스턴스를 초기화하고, 프로세스를 시작할 응용 프로그램 파일 이름과 응용 프로그램에 전달할 명령줄 인수 집합을 지정합니다.</summary>\r\n      <param name=\"fileName\">프로세스를 시작할 때 사용할 응용 프로그램입니다. </param>\r\n      <param name=\"arguments\">프로세스가 시작될 때 응용 프로그램에 전달할 명령줄 인수입니다. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Arguments\">\r\n      <summary>응용 프로그램을 시작할 때 사용할 명령줄 인수 집합을 가져오거나 설정합니다.</summary>\r\n      <returns>\r\n        <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> 속성에 지정된 대상 응용 프로그램으로 전달할 인수를 포함한 단일 문자열입니다.기본값은 빈 문자열(\"\")입니다.Windows Vista 및 Windows 운영 체제의 이전 버전에서 프로세스의 전체 경로 길이에 추가되는 인수의 길이는 2080자보다 짧아야 합니다.Windows 7 이상 버전에서는 길이가 32699 미만이어야 합니다.인수가 대상 응용 프로그램에서 분석 및 해석되므로 이 응용 프로그램의 예상과 일치해야 합니다.아래 예제와 같은 .NET 응용 프로그램의 경우 공백은 여러 인수 사이의 구분 기호로 해석됩니다.공백이 포함된 단일 인수는 따옴표로 묶어야 하지만 따옴표 자체는 대상 응용 프로그램으로 전달되지 않습니다.최종 분석 인수에 따옴표를 포함하려면 각 따옴표에 트리플 이스케이프를 적용합니다.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.CreateNoWindow\">\r\n      <summary>프로세스를 새 창에서 시작할지 여부를 나타내는 값을 가져오거나 설정합니다.</summary>\r\n      <returns>프로세스를 포함할 새 창을 만들지 않고 프로세스를 시작해야 하면 true이고, 그러지 않으면 false 입니다.기본값은 false입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Domain\">\r\n      <summary>프로세스를 시작할 때 사용할 도메인을 식별하는 값을 가져오거나 설정합니다. </summary>\r\n      <returns>프로세스를 시작할 때 사용할 Active Directory 도메인입니다.도메인 속성은 Active Directory를 사용하는 엔터프라이즈 환경 내의 사용자가 주로 사용합니다.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Environment\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.FileName\">\r\n      <summary>시작할 응용 프로그램 또는 문서를 가져오거나 설정합니다.</summary>\r\n      <returns>응용 프로그램과 연결되며 그 응용 프로그램에서 사용할 수 있는 기본 열기 동작이 있는 파일 형식의 문서 이름 또는 시작할 응용 프로그램의 이름입니다.기본값은 빈 문자열(\"\")입니다.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.LoadUserProfile\">\r\n      <summary>Windows 사용자 프로필을 레지스트리에서 로드할지 여부를 나타내는 값을 가져오거나 설정합니다. </summary>\r\n      <returns>Windows 사용자 프로필을 로드해야 하는 경우 true이고, 그러지 않으면 false입니다.기본값은 false입니다.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Password\">\r\n      <summary>프로세스를 시작할 때 사용할 사용자 암호가 포함된 보안 문자열을 가져오거나 설정합니다.</summary>\r\n      <returns>프로세스를 시작할 때 사용할 사용자 암호입니다.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\">\r\n      <summary>응용 프로그램의 오류 출력을 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 스트림에 쓸지 여부를 나타내는 값을 가져오거나 설정합니다.</summary>\r\n      <returns>오류 출력을 true에 써야 하는 경우 <see cref=\"P:System.Diagnostics.Process.StandardError\" />이고, 그러지 않으면false입니다.기본값은 false입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\">\r\n      <summary>응용 프로그램의 입력을 <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> 스트림에서 읽을지 여부를 나타내는 값을 가져오거나 설정합니다.</summary>\r\n      <returns>입력을 <see cref=\"P:System.Diagnostics.Process.StandardInput\" />에서 읽어야 하는 경우 true이고, 그러지 않으면 false입니다.기본값은 false입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\">\r\n      <summary>응용 프로그램의 텍스트 출력을 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 스트림에 쓸지 여부를 나타내는 값을 가져오거나 설정합니다.</summary>\r\n      <returns>출력을 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />에 써야 하는 경우 true이고, 그러지 않으면 false입니다.기본값은 false입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding\">\r\n      <summary>오류 출력에 대한 기본 설정 인코딩을 가져오거나 설정합니다.</summary>\r\n      <returns>오류 출력에 대한 기본 설정 인코딩을 나타내는 개체입니다.기본값은 null입니다.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding\">\r\n      <summary>표준 출력에 대한 기본 설정 인코딩을 가져오거나 설정합니다.</summary>\r\n      <returns>표준 출력에 대한 기본 설정 인코딩을 나타내는 개체입니다.기본값은 null입니다.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UserName\">\r\n      <summary>프로세스를 시작할 때 사용할 사용자 이름을 가져오거나 설정합니다.</summary>\r\n      <returns>프로세스를 시작할 때 사용할 사용자 이름입니다.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\">\r\n      <summary>프로세스를 시작할 때 운영 체제 셸을 사용할지 여부를 나타내는 값을 가져오거나 설정합니다.</summary>\r\n      <returns>프로세스를 시작할 때 셸을 사용하려면 true이고, 실행 파일에서 직접 프로세스를 만들어야 하면 false입니다.기본값은 true입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.WorkingDirectory\">\r\n      <summary>\r\n        <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> 속성이 false인 경우 시작할 프로세스의 작업 디렉터리를 가져오거나 설정합니다.<see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" />가 true인 경우 시작할 프로세스가 포함된 디렉터리를 가져오거나 설정합니다.</summary>\r\n      <returns>\r\n        <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" />가 true이면 시작할 프로세스가 들어 있는 디렉터리의 정규화된 이름입니다.<see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> 속성이 false인 경우 시작할 프로세스의 작업 디렉터리입니다.기본값은 빈 문자열(\"\")입니다.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThread\">\r\n      <summary>운영 체제 프로세스 스레드를 나타냅니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.BasePriority\">\r\n      <summary>스레드의 기본 우선 순위를 가져옵니다.</summary>\r\n      <returns>프로세스 우선 순위 클래스와 관련 스레드의 우선 순위 수준을 결합하여 계산되는 스레드의 기본 우선 순위입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.CurrentPriority\">\r\n      <summary>스레드의 현재 우선 순위를 가져옵니다.</summary>\r\n      <returns>운영 체제에서 스레드를 예약하는 방법에 따라 기본 우선 순위에서 벗어날 수도 있는 스레드의 현재 우선 순위입니다.활성 스레드의 경우 우선 순위가 일시적으로 높아질 수 있습니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.Id\">\r\n      <summary>스레드의 고유 식별자를 가져옵니다.</summary>\r\n      <returns>특정 스레드와 관련된 고유 식별자입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.IdealProcessor\">\r\n      <summary>이 스레드가 실행될 기본 설정 프로세서를 설정합니다.</summary>\r\n      <returns>스레드를 실행할 프로세서를 결정하기 위해 시스템에서 스레드를 예약할 때 사용하는 스레드의 기본 설정 프로세서입니다.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">지정한 프로세스에서 스레드가 시작되도록 설정할 수 없는 경우 </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">플랫폼이 Windows 98 또는 Windows Millennium Edition인 경우 </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">프로세스가 원격 컴퓨터에 있는 경우</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityBoostEnabled\">\r\n      <summary>스레드 프로세스의 주 창이 포커스를 받을 때마다 운영 체제에서 관련 스레드의 우선 순위를 일시적으로 높여야 하는지 여부를 나타내는 값을 가져오거나 설정합니다.</summary>\r\n      <returns>프로세스의 인터페이스와 상호 작용할 때 스레드의 우선 순위를 높이려면 true이고, 그렇지 않으면 false입니다.기본값은 false입니다.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">우선 순위 높임 정보를 검색할 수 없는 경우또는우선 순위 높임 정보를 설정할 수 없는 경우 </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">플랫폼이 Windows 98 또는 Windows Millennium Edition인 경우 </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">프로세스가 원격 컴퓨터에 있는 경우</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityLevel\">\r\n      <summary>스레드의 우선 순위 수준을 가져오거나 설정합니다.</summary>\r\n      <returns>스레드의 우선 순위를 한정하는 범위를 지정하는 <see cref=\"T:System.Diagnostics.ThreadPriorityLevel\" /> 값 중 하나입니다.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">스레드 우선 순위 수준 정보를 검색할 수 없는 경우 또는스레드 우선 순위 수준을 설정할 수 없는 경우</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">플랫폼이 Windows 98 또는 Windows Millennium Edition인 경우 </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">프로세스가 원격 컴퓨터에 있는 경우</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime\">\r\n      <summary>스레드가 운영 체제 코어 내부에서 코드를 실행하는데 사용한 시간을 가져옵니다.</summary>\r\n      <returns>스레드가 운영 체제 코어 내부에서 코드를 실행하는데 사용한 시간을 나타내는 <see cref=\"T:System.TimeSpan\" />입니다.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">스레드 시간을 검색할 수 없는 경우 </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">플랫폼이 Windows 98 또는 Windows Millennium Edition인 경우 </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">프로세스가 원격 컴퓨터에 있는 경우</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ProcessorAffinity\">\r\n      <summary>관련 스레드가 실행될 수 있는 프로세서를 설정합니다.</summary>\r\n      <returns>비트 집합을 가리키는 <see cref=\"T:System.IntPtr\" />입니다. 각각의 비트는 스레드가 실행될 수 있는 프로세서를 나타냅니다.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">프로세서 선호도를 설정할 수 없는 경우 </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">플랫폼이 Windows 98 또는 Windows Millennium Edition인 경우 </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">프로세스가 원격 컴퓨터에 있는 경우</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThread.ResetIdealProcessor\">\r\n      <summary>이 스레드의 최적 프로세서를 다시 설정하여 단일 최적 프로세서가 없음을 나타냅니다.다시 말해서 모든 프로세서가 최적 프로세서가 되도록 다시 설정합니다.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">최적 프로세서를 다시 설정할 수 없는 경우 </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">플랫폼이 Windows 98 또는 Windows Millennium Edition인 경우 </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">프로세스가 원격 컴퓨터에 있는 경우</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartAddress\">\r\n      <summary>이 스레드를 시작한 운영 체제가 호출한 함수의 메모리 주소를 가져옵니다.</summary>\r\n      <returns>스레드가 실행하는 응용 프로그램 정의 함수를 가리키는 스레드의 시작 주소입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">플랫폼이 Windows 98 또는 Windows Millennium Edition인 경우 </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">프로세스가 원격 컴퓨터에 있는 경우</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartTime\">\r\n      <summary>운영 체제가 스레드를 시작한 시간을 가져옵니다.</summary>\r\n      <returns>운영 체제가 스레드를 시작했을 때의 시스템 시간을 나타내는 <see cref=\"T:System.DateTime\" />입니다.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">스레드 시간을 검색할 수 없는 경우 </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">플랫폼이 Windows 98 또는 Windows Millennium Edition인 경우 </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">프로세스가 원격 컴퓨터에 있는 경우</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ThreadState\">\r\n      <summary>이 스레드의 현재 상태를 가져옵니다.</summary>\r\n      <returns>실행, 대기, 종료 등 스레드의 실행을 나타내는 <see cref=\"T:System.Diagnostics.ThreadState\" />입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">플랫폼이 Windows 98 또는 Windows Millennium Edition인 경우 </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">프로세스가 원격 컴퓨터에 있는 경우</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.TotalProcessorTime\">\r\n      <summary>이 스레드가 프로세서를 사용하는데 소비한 총 시간을 가져옵니다.</summary>\r\n      <returns>스레드가 프로세서의 제어를 받고 있던 시간을 나타내는 <see cref=\"T:System.TimeSpan\" />입니다.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">스레드 시간을 검색할 수 없는 경우 </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">플랫폼이 Windows 98 또는 Windows Millennium Edition인 경우 </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">프로세스가 원격 컴퓨터에 있는 경우</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.UserProcessorTime\">\r\n      <summary>관련 스레드가 응용 프로그램 내부에서 코드를 실행하는데 사용한 시간을 가져옵니다.</summary>\r\n      <returns>운영 체제 코어 내부와 반대로 스레드가 응용 프로그램 내부에서 코드를 실행하는데 사용한 시간을 나타내는 <see cref=\"T:System.TimeSpan\" />입니다.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">스레드 시간을 검색할 수 없는 경우 </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">플랫폼이 Windows 98 또는 Windows Millennium Edition인 경우 </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">프로세스가 원격 컴퓨터에 있는 경우</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.WaitReason\">\r\n      <summary>스레드가 대기 상태에 있는 이유를 가져옵니다.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ThreadWaitReason\" />은 스레드가 대기 상태에 있는 이유를 나타냅니다.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">스레드가 대기 상태에 있지 않은 경우 </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">플랫폼이 Windows 98 또는 Windows Millennium Edition인 경우 </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">프로세스가 원격 컴퓨터에 있는 경우</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThreadCollection\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> 개체의 강력한 형식의 컬렉션을 제공합니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor\">\r\n      <summary>연결된 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 인스턴스 없이 <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 클래스의 새 인스턴스를 초기화합니다.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> 인스턴스의 지정된 배열을 사용하여 <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 클래스의 새 인스턴스를 초기화합니다.</summary>\r\n      <param name=\"processThreads\">이 <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 인스턴스를 초기화하는 데 사용할 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 인스턴스의 배열입니다. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)\">\r\n      <summary>컬렉션에 프로세스 스레드를 추가합니다.</summary>\r\n      <returns>컬렉션 스레드의 인덱스(0부터 시작)입니다.</returns>\r\n      <param name=\"thread\">컬렉션에 추가할 스레드입니다. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)\">\r\n      <summary>지정한 프로세스 스레드가 컬렉션에 있는지 여부를 확인합니다.</summary>\r\n      <returns>해당 스레드가 컬렉션에 있으면 true이고, 그렇지 않으면 false입니다.</returns>\r\n      <param name=\"thread\">이 컬렉션에서 찾을 스레드를 나타내는 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 인스턴스입니다. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> 인스턴스의 배열을 컬렉션 내의 지정된 인덱스에 복사합니다.</summary>\r\n      <param name=\"array\">컬렉션에 추가할 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 인스턴스의 배열입니다. </param>\r\n      <param name=\"index\">새 인스턴스를 추가할 위치입니다. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)\">\r\n      <summary>컬렉션 내에서 지정된 스레드의 위치를 제공합니다.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 내에서 스레드의 위치를 정의하는 인덱스(0부터 시작)입니다.</returns>\r\n      <param name=\"thread\">해당 인덱스가 검색되는 <see cref=\"T:System.Diagnostics.ProcessThread\" />입니다. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)\">\r\n      <summary>컬렉션의 지정된 위치에 프로세스 스레드를 삽입합니다.</summary>\r\n      <param name=\"index\">스레드가 삽입될 위치를 나타내는 인덱스(0부터 시작)입니다. </param>\r\n      <param name=\"thread\">컬렉션에 삽입할 스레드입니다. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)\">\r\n      <summary>프로세스 스레드 집합 전체를 반복하기 위한 인덱스를 가져옵니다.</summary>\r\n      <returns>컬렉션의 스레드를 인덱싱하는 <see cref=\"T:System.Diagnostics.ProcessThread\" />입니다.</returns>\r\n      <param name=\"index\">컬렉션 내의 스레드 값에 대한 인덱스(0부터 시작)입니다. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)\">\r\n      <summary>컬렉션에서 프로세스 스레드를 삭제합니다.</summary>\r\n      <param name=\"thread\">컬렉션에서 제거할 스레드입니다. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ThreadPriorityLevel\">\r\n      <summary>스레드의 우선 순위 수준을 지정합니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.AboveNormal\">\r\n      <summary>관련된 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />의 보통 우선 순위 보다 한 단계 높게 지정합니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.BelowNormal\">\r\n      <summary>관련된 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />의 보통 우선 순위 보다 한 단계 낮게 지정합니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Highest\">\r\n      <summary>최고 우선 순위를 지정합니다.이는 관련된 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />의 보통 우선 순위보다 두 단계 높습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Idle\">\r\n      <summary>유휴 우선 순위를 지정합니다.이는 관련된 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />의 값에 관계없이 모든 스레드의 우선 순위 값중 가장 낮습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Lowest\">\r\n      <summary>최저 우선 순위를 지정합니다.이는 관련된 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />의 보통 우선 순위보다 두 단계 낮습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Normal\">\r\n      <summary>관련된 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />의 보통 우선 순위를 지정합니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.TimeCritical\">\r\n      <summary>시간 위험 우선 순위를 지정합니다.이는 관련된 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />의 값에 관계없이 모든 스레드의 최고 우선 순위입니다.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadState\">\r\n      <summary>스레드의 현재 실행 상태를 지정합니다.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Initialized\">\r\n      <summary>스레드가 초기화되었으나 아직 시작되지 않았음을 나타내는 상태입니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Ready\">\r\n      <summary>사용 가능한 프로세서가 없으므로 스레드가 프로세서를 사용하기 위해 대기 중임을 나타내는 상태입니다.스레드는 사용 가능한 다음 프로세서에서 실행될 준비가 되어 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Running\">\r\n      <summary>스레드가 현재 프로세서를 사용 중임을 나타내는 상태입니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Standby\">\r\n      <summary>스레드가 곧 프로세서를 사용할 것임을 나타내는 상태입니다.한 번에 하나의 스레드만 이 상태가 될 수 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Terminated\">\r\n      <summary>스레드가 실행을 마치고 종료되었음을 나타내는 상태입니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Transition\">\r\n      <summary>스레드가 실행 전에 프로세서가 아닌 리소스를 대기하고 있음을 나타내는 상태입니다.예를 들어, 디스크에서 해당 실행 스택을 페이지로 나누기 위해 대기하고 있을 수 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Unknown\">\r\n      <summary>스레드의 상태를 알 수 없습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Wait\">\r\n      <summary>스레드가 주변 작업이 완료되거나 리소스가 사용 가능해질 때까지 기다리고 있으므로 프로세서를 사용할 준비가 되어 있지 않음을 나타내는 상태입니다.스레드가 준비 상태가 되면 다시 일정을 잡습니다.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadWaitReason\">\r\n      <summary>스레드 대기 원인을 지정합니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairHigh\">\r\n      <summary>스레드가 상위 이벤트 쌍을 기다리고 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairLow\">\r\n      <summary>스레드가 하위 이벤트 쌍을 기다리고 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.ExecutionDelay\">\r\n      <summary>스레드 실행이 지연됩니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Executive\">\r\n      <summary>스레드가 스케줄러를 기다리고 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.FreePage\">\r\n      <summary>스레드가 사용 가능한 가상 메모리 페이지를 기다리고 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReceive\">\r\n      <summary>스레드가 로컬 프로시저 호출이 도착하기를 기다리고 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReply\">\r\n      <summary>스레드가 로컬 프로시저 호출의 응답이 도착하기를 기다리고 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageIn\">\r\n      <summary>스레드가 메모리에 가상 메모리 페이지가 도착하기를 기다리고 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageOut\">\r\n      <summary>스레드가 디스크에 가상 메모리 페이지가 쓰여지기를 기다리고 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Suspended\">\r\n      <summary>스레드 실행이 일시 중단됩니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.SystemAllocation\">\r\n      <summary>스레드가 시스템 할당을 기다리고 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Unknown\">\r\n      <summary>스레드가 알 수 없는 이유로 기다리고 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.UserRequest\">\r\n      <summary>스레드가 사용자 요청을 기다리고 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.VirtualMemory\">\r\n      <summary>스레드가 시스템에서 가상 메모리를 할당하기를 기다리고 있습니다.</summary>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/ru/System.Diagnostics.Process.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<doc>\r\n  <assembly>\r\n    <name>System.Diagnostics.Process</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\">\r\n      <summary>[SECURITY CRITICAL] Предоставляет управляемую оболочку для дескриптора процесса.</summary>\r\n    </member>\r\n    <member name=\"M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)\">\r\n      <summary>[SECURITY CRITICAL] Инициализирует новый экземпляр класса <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> класса для указанного дескриптора, указывающее, следует ли освободить дескриптор на стадии завершения. </summary>\r\n      <param name=\"existingHandle\">Инкапсулируемый дескриптор.</param>\r\n      <param name=\"ownsHandle\">trueЧтобы надежно <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> освободить дескриптор на стадии завершения; в противном случае — false.</param>\r\n    </member>\r\n    <member name=\"P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid\"></member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventArgs\">\r\n      <summary>Предоставляет данные для событий <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> и <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.DataReceivedEventArgs.Data\">\r\n      <summary>Возвращает строку символов, записанную в перенаправленный поток вывода <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Строка, записанная соответствующим процессом <see cref=\"T:System.Diagnostics.Process\" /> в перенаправленный поток <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> или <see cref=\"P:System.Diagnostics.Process.StandardError\" />.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventHandler\">\r\n      <summary>Представляет метод, обрабатывающий событие <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> или событие <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> объекта <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <param name=\"sender\">Источник события. </param>\r\n      <param name=\"e\">Объект <see cref=\"T:System.Diagnostics.DataReceivedEventArgs\" />, содержащий данные, которые относятся к событию. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.Process\">\r\n      <summary>Предоставляет доступ к локальным и удаленным процессам и позволяет запускать и останавливать локальные системные процессы.Исходный код .NET Framework для этого типа см. в указанном источнике.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.#ctor\">\r\n      <summary>Инициализирует новый экземпляр класса <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.BasePriority\">\r\n      <summary>Получает базовый приоритет связанного процесса.</summary>\r\n      <returns>Базовый приоритет, который вычисляется свойством <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> связанного процесса.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or- The process has not started, so there is no process ID. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginErrorReadLine\">\r\n      <summary>Начинает операции асинхронного чтения с перенаправленного потока <see cref=\"P:System.Diagnostics.Process.StandardError\" /> приложения.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginOutputReadLine\">\r\n      <summary>Начинает операции асинхронного чтения с перенаправленного потока <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> приложения.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelErrorRead\">\r\n      <summary>Отменяет операцию асинхронного чтения в перенаправленном потоке <see cref=\"P:System.Diagnostics.Process.StandardError\" /> приложения.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelOutputRead\">\r\n      <summary>Отменяет операцию асинхронного чтения в перенаправленном потоке <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> приложения.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose\"></member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose(System.Boolean)\">\r\n      <summary>Освобождает все ресурсы, используемые этим процессом.</summary>\r\n      <param name=\"disposing\">Значение true позволяет освободить как управляемые, так и неуправляемые ресурсы; значение false освобождает только неуправляемые ресурсы. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.EnableRaisingEvents\">\r\n      <summary>Получает или задает значение, указывающее, следует ли вызывать событие <see cref=\"E:System.Diagnostics.Process.Exited\" /> при прекращении процесса.</summary>\r\n      <returns>Значение true, если событие <see cref=\"E:System.Diagnostics.Process.Exited\" /> должно быть вызвано при завершении связанного процесса (выход или вызов метода <see cref=\"M:System.Diagnostics.Process.Kill\" />); в противном случае — значение false.Значение по умолчанию — false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.EnterDebugMode\">\r\n      <summary>Помещает компонент <see cref=\"T:System.Diagnostics.Process\" /> в состояние взаимодействия с работающим системным процессом, выполняющимся в специальном режиме путем включения встроенного свойства SeDebugPrivilege в данном потоке.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.ErrorDataReceived\">\r\n      <summary>Происходит, когда приложение выполняет запись в свой перенаправленный поток <see cref=\"P:System.Diagnostics.Process.StandardError\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitCode\">\r\n      <summary>Получает значение, заданное связанным процессом при завершении.</summary>\r\n      <returns>Код, который задал связанный процесс при завершении.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has not exited.-or- The process <see cref=\"P:System.Diagnostics.Process.Handle\" /> is not valid. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitCode\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.Exited\">\r\n      <summary>Происходит при завершении процесса.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitTime\">\r\n      <summary>Получает время завершения связанного процесса.</summary>\r\n      <returns>Класс <see cref=\"T:System.DateTime\" />, показывающий время завершения связанного процесса.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetCurrentProcess\">\r\n      <summary>Получает новый компонент <see cref=\"T:System.Diagnostics.Process\" /> и связывает его с активным в данный момент процессом.</summary>\r\n      <returns>Новый компонент <see cref=\"T:System.Diagnostics.Process\" />, связанный с ресурсом выполняющегося процесса в приложении.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32)\">\r\n      <summary>Возвращает новый компонент <see cref=\"T:System.Diagnostics.Process\" />, по заданному идентификатору процесса на локальном компьютере.</summary>\r\n      <returns>Компонент <see cref=\"T:System.Diagnostics.Process\" />, связанный с локальным ресурсом процесса, определенного параметром <paramref name=\"processId\" />.</returns>\r\n      <param name=\"processId\">Уникальный в системе идентификатор ресурса процесса. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)\">\r\n      <summary>Возвращает новый компонент <see cref=\"T:System.Diagnostics.Process\" />, по заданному идентификатору процесса и имени компьютера в сети.</summary>\r\n      <returns>Компонент <see cref=\"T:System.Diagnostics.Process\" />, связанный с удаленным ресурсом процесса, определенного параметром <paramref name=\"processId\" />.</returns>\r\n      <param name=\"processId\">Уникальный в системе идентификатор ресурса процесса. </param>\r\n      <param name=\"machineName\">Имя компьютера в сети. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.-or- The <paramref name=\"machineName\" /> parameter syntax is invalid.The name might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses\">\r\n      <summary>Создает новый компонент <see cref=\"T:System.Diagnostics.Process\" /> для каждого ресурса процесса на локальном компьютере.</summary>\r\n      <returns>Массив типа <see cref=\"T:System.Diagnostics.Process\" />, представляющий все ресурсы процесса, выполняющегося на локальном компьютере.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses(System.String)\">\r\n      <summary>Создает новый компонент <see cref=\"T:System.Diagnostics.Process\" /> для каждого ресурса процесса на указанном компьютере.</summary>\r\n      <returns>Массив типа <see cref=\"T:System.Diagnostics.Process\" />, представляющий все ресурсы процесса, выполняющегося на указанном компьютере.</returns>\r\n      <param name=\"machineName\">Компьютер, из которого читается список процессов. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String)\">\r\n      <summary>Создает массив из новых компонентов <see cref=\"T:System.Diagnostics.Process\" /> и связывает их со всеми ресурсами процесса на локальном компьютере, для которых заданное имя процесса является общедоступным.</summary>\r\n      <returns>Массив типа <see cref=\"T:System.Diagnostics.Process\" />, представляющий ресурсы процесса, выполняющего указанное приложение или файл.</returns>\r\n      <param name=\"processName\">Понятное имя процесса. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)\">\r\n      <summary>Создает массив из новых компонентов <see cref=\"T:System.Diagnostics.Process\" /> и связывает их со всеми ресурсами процесса на удаленном компьютере, для которых заданное имя процесса является общедоступным.</summary>\r\n      <returns>Массив типа <see cref=\"T:System.Diagnostics.Process\" />, представляющий ресурсы процесса, выполняющего указанное приложение или файл.</returns>\r\n      <param name=\"processName\">Понятное имя процесса. </param>\r\n      <param name=\"machineName\">Имя компьютера в сети. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.HasExited\">\r\n      <summary>Получает значение, определяющее завершение связанного процесса.</summary>\r\n      <returns>Значение true, если процесс операционной системы, на который ссылается компонент <see cref=\"T:System.Diagnostics.Process\" />, был завершен; в противном случае — значение false.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with the object. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The exit code for the process could not be retrieved. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.HasExited\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Id\">\r\n      <summary>Получает уникальный идентификатор связанного процесса.</summary>\r\n      <returns>Созданный системой уникальный идентификатор, на который ссылается этот экземпляр <see cref=\"T:System.Diagnostics.Process\" />.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process's <see cref=\"P:System.Diagnostics.Process.Id\" /> property has not been set.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Kill\">\r\n      <summary>Немедленно останавливает связанный процесс.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to call <see cref=\"M:System.Diagnostics.Process.Kill\" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has already exited. -or-There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.LeaveDebugMode\">\r\n      <summary>Выбирает компонент <see cref=\"T:System.Diagnostics.Process\" /> из состояния, позволяющего ему взаимодействовать с процессами операционной системы, запущенными в специальном режиме.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MachineName\">\r\n      <summary>Получает имя компьютера, на котором выполняется связанный процесс.</summary>\r\n      <returns>Имя компьютера, на котором выполняется связанный процесс.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MainModule\">\r\n      <summary>Получает главный модуль связанного процесса.</summary>\r\n      <returns>Модуль <see cref=\"T:System.Diagnostics.ProcessModule\" />, который был использован для запуска процесса.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MainModule\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A 32-bit process is trying to access the modules of a 64-bit process.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MaxWorkingSet\">\r\n      <summary>Возвращает или задает максимальный размер доступного рабочего множества для связанного процесса.</summary>\r\n      <returns>Максимальный размер рабочего множества в байтах, доступного в памяти для процесса.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MaxWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MinWorkingSet\">\r\n      <summary>Возвращает или задает минимальный размер доступного рабочего множества для связанного процесса.</summary>\r\n      <returns>Минимальный размер рабочего множества в байтах, требуемый в памяти для процесса.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MinWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Modules\">\r\n      <summary>Получает модули, которые были загружены связанным процессом.</summary>\r\n      <returns>Массив объектов типа <see cref=\"T:System.Diagnostics.ProcessModule\" />, который предоставляет модули, загруженные связанным процессом.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for either the system process or the idle process.These processes do not have modules.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.NonpagedSystemMemorySize64\">\r\n      <summary>Получает количество невыгружаемой системной памяти, выделенной для связанного процесса.</summary>\r\n      <returns>Количество системной памяти в байтах, выделенной для связанного процесса, которую нельзя записать в файл подкачки виртуальной памяти.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.OnExited\">\r\n      <summary>Вызывает событие <see cref=\"E:System.Diagnostics.Process.Exited\" />.</summary>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.OutputDataReceived\">\r\n      <summary>Происходит, когда приложение записывает строку в свой перенаправленный поток <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedMemorySize64\">\r\n      <summary>Получает количество выгружаемой системной памяти, выделенной для связанного процесса.</summary>\r\n      <returns>Количество памяти в байтах, выделенной в файле подкачки виртуальной памяти для связанного процесса.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedSystemMemorySize64\">\r\n      <summary>Возвращает объем выгружаемой системной памяти, выделенной для связанного процесса.</summary>\r\n      <returns>Количество системной памяти в байтах, выделенной для связанного процесса, которую можно записать в файл подкачки виртуальной памяти.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakPagedMemorySize64\">\r\n      <summary>Получает максимальное количество памяти в файле подкачки виртуальной памяти, используемой связанным процессом.</summary>\r\n      <returns>Максимальное количество памяти в байтах, выделенной в файле подкачки виртуальной памяти для связанного процесса с момента его запуска.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakVirtualMemorySize64\">\r\n      <summary>Получает максимальное количество виртуальной памяти, используемой связанным процессом.</summary>\r\n      <returns>Максимальное количество виртуальной памяти в байтах, выделенной для связанного процесса с момента его запуска.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakWorkingSet64\">\r\n      <summary>Получает максимальное количество физической памяти, используемой связанным процессом.</summary>\r\n      <returns>Максимальное количество физической памяти в байтах, выделенной для связанного процесса с момента его запуска.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityBoostEnabled\">\r\n      <summary>Возвращает или задает значение, указывающее, должна ли операционная система временно увеличить приоритет связанного процесса, когда основное окно процесса получит фокус.</summary>\r\n      <returns>Значение true, если требуется динамическое увеличение приоритета процесса, когда процесс выходит из состояния ожидания; в противном случае — значение false.Значение по умолчанию — false.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Priority boost information could not be retrieved from the associated process resource. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityBoostEnabled\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityClass\">\r\n      <summary>Возвращает или задает общую категорию приоритета для процесса.</summary>\r\n      <returns>Категория приоритета для связанного процесса, из которой вычисляется свойство <see cref=\"P:System.Diagnostics.Process.BasePriority\" />.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">You have set the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>\r\n      <exception cref=\"T:System.ComponentModel.InvalidEnumArgumentException\">Priority class cannot be set because it does not use a valid value, as defined in the <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> enumeration.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivateMemorySize64\">\r\n      <summary>Получает количество закрытой памяти, выделенной для связанного процесса.</summary>\r\n      <returns>Количество памяти в байтах, выделенное для связанного процесса, который не может быть доступен другим процессам.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\">\r\n      <summary>Получает права доступа на время процессора для этого процесса.</summary>\r\n      <returns>Класс <see cref=\"T:System.TimeSpan\" />, показывающий количество времени, которое процесс потратил на выполнение кода внутри ядра операционной системы.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessName\">\r\n      <summary>Получает имя процесса.</summary>\r\n      <returns>Имя, которое использует система для идентификации процесса для пользователя.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process does not have an identifier, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" />.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is not on this computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessorAffinity\">\r\n      <summary>Возвращает или задает процессоры, на которых может быть запланировано выполнение потоков данного процесса.</summary>\r\n      <returns>Битовая маска, представляющая процессоры, на которых могут выполняться потоки связанного процесса.По умолчанию маска зависит от числа процессоров в компьютере.Значение по умолчанию равно 2 n -1, где n — число процессоров.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> was not available.-or- The process has exited. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Refresh\">\r\n      <summary>Удаляет любые кэшированные внутри компонента процесса сведения о связанном процессе.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SafeHandle\">\r\n      <summary>Возвращает собственный дескриптор процесса.</summary>\r\n      <returns>Собственный дескриптор процесса.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SessionId\">\r\n      <summary>Получает идентификатор сеанса служб терминалов для связанного процесса.</summary>\r\n      <returns>Идентификатор сеанса служба терминалов для связанного процесса.</returns>\r\n      <exception cref=\"T:System.NullReferenceException\">There is no session associated with this process.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The <see cref=\"P:System.Diagnostics.Process.SessionId\" /> property is not supported on Windows 98.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardError\">\r\n      <summary>Получает поток, используемый для чтения вывода ошибок приложения.</summary>\r\n      <returns>Объект <see cref=\"T:System.IO.StreamReader\" />, используемый для чтения стандартного потока ошибок приложения.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginErrorReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardInput\">\r\n      <summary>Получает поток, используемый для записи ввода приложения.</summary>\r\n      <returns>Объект <see cref=\"T:System.IO.StreamWriter\" />, используемый для записи стандартного входного потока приложения.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> stream has not been defined because <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" /> is set to false. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardOutput\">\r\n      <summary>Получает поток, используемый для чтения текстовых выходных данных приложения.</summary>\r\n      <returns>Объект <see cref=\"T:System.IO.StreamReader\" />, используемый для чтения стандартного потока вывода приложения.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginOutputReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start\">\r\n      <summary>Запускает (или повторно использует) ресурс процесса, определенный свойством <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> этого компонента <see cref=\"T:System.Diagnostics.Process\" />, и связывает его с компонентом.</summary>\r\n      <returns>Значение true, если ресурс процесса запущен; значение false, если новый ресурс процесса не был запущен (например, при повторном использовании существующего процесса).</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <see cref=\"T:System.Diagnostics.Process\" /> component's <see cref=\"P:System.Diagnostics.Process.StartInfo\" />.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> member of the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> property is true while <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is true. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)\">\r\n      <summary>Запускает ресурс процесса, определенный параметром, содержащим стартовую информацию процесса (например, имя файла запускаемого процесса), и связывает ресурс с новым компонентом <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Новый процесс <see cref=\"T:System.Diagnostics.Process\" />, связанный с ресурсом процесса, или null, если ресурс процесса не запущен.Обратите внимание, что новый процесс, запущенный с уже выполняющимися экземплярами того же процесса, будет независимым от других.Кроме того, метод Start может вернуть ненулевой тип Process, свойство <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> которого равно true.В этом случае запущенный процесс может активировать существующий экземпляр самого себя, а затем завершить работу.</returns>\r\n      <param name=\"startInfo\">Объект <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />, который содержит информацию, использующуюся для запуска процесса, включая имя файла и все аргументы командной строки. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is also true.-or-The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UserName\" /> property is not null or empty or the <see cref=\"P:System.Diagnostics.ProcessStartInfo.Password\" /> property is not null.</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"startInfo\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The file specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property could not be found.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String)\">\r\n      <summary>Запускает ресурс процесса путем указания имени документа или файла приложения и связывает ресурс с новым компонентом <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Новый процесс <see cref=\"T:System.Diagnostics.Process\" />, связанный с ресурсом процесса, или null, если ресурс процесса не запущен.Обратите внимание, что новый процесс, запущенный наряду с уже выполняющимися экземплярами того же процесса, будет независимым от других.Кроме того, метод Start может вернуть ненулевой тип Process, свойство <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> которого равно true.В этом случае запущенный процесс может активировать существующий экземпляр самого себя, а затем завершить работу.</returns>\r\n      <param name=\"fileName\">Имя документа или файла приложения для запуска в процессе. </param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String)\">\r\n      <summary>Запускает ресурс процесса путем указания имени приложения и набора аргументов командной строки и связывает ресурс с новым компонентом <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Новый процесс <see cref=\"T:System.Diagnostics.Process\" />, связанный с ресурсом процесса, или null, если ресурс процесса не запущен.Обратите внимание, что новый процесс, запущенный наряду с уже выполняющимися экземплярами того же процесса, будет независимым от других.Кроме того, метод Start может вернуть ненулевой тип Process, свойство <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> которого равно true.В этом случае запущенный процесс может активировать существующий экземпляр самого себя, а затем завершить работу.</returns>\r\n      <param name=\"fileName\">Имя файла приложения для запуска в процессе. </param>\r\n      <param name=\"arguments\">Аргументы командной строки для передачи при запуске процесса. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <paramref name=\"fileName\" /> or <paramref name=\"arguments\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>Запускает ресурс процесса путем указания имени приложения, имени пользователя, пароля и домена и связывает ресурс с новым компонентом <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Новый процесс <see cref=\"T:System.Diagnostics.Process\" />, связанный с ресурсом процесса, или null, если ресурс процесса не запущен.Обратите внимание, что новый процесс, запущенный наряду с уже выполняющимися экземплярами того же процесса, будет независимым от других.Кроме того, метод Start может вернуть ненулевой тип Process, свойство <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> которого равно true.В этом случае запущенный процесс может активировать существующий экземпляр самого себя, а затем завершить работу.</returns>\r\n      <param name=\"fileName\">Имя файла приложения для запуска в процессе.</param>\r\n      <param name=\"userName\">Имя пользователя, используемое при запуске процесса.</param>\r\n      <param name=\"password\">Объект <see cref=\"T:System.Security.SecureString\" />, содержащий пароль для использования при запуске процесса.</param>\r\n      <param name=\"domain\">Домен, используемый при запуске процесса.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>Запускает ресурс процесса путем указания имени приложения, набора аргументов командной строки, имени пользователя, пароля и домена и связывает ресурс с новым компонентом <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Новый процесс <see cref=\"T:System.Diagnostics.Process\" />, связанный с ресурсом процесса, или null, если ресурс процесса не запущен.Обратите внимание, что новый процесс, запущенный наряду с уже выполняющимися экземплярами того же процесса, будет независимым от других.Кроме того, метод Start может вернуть ненулевой тип Process, свойство <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> которого равно true.В этом случае запущенный процесс может активировать существующий экземпляр самого себя, а затем завершить работу.</returns>\r\n      <param name=\"fileName\">Имя файла приложения для запуска в процессе. </param>\r\n      <param name=\"arguments\">Аргументы командной строки для передачи при запуске процесса. </param>\r\n      <param name=\"userName\">Имя пользователя, используемое при запуске процесса.</param>\r\n      <param name=\"password\">Объект <see cref=\"T:System.Security.SecureString\" />, содержащий пароль для использования при запуске процесса.</param>\r\n      <param name=\"domain\">Домен, используемый при запуске процесса.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartInfo\">\r\n      <summary>Получает или задает свойства для передачи их методу <see cref=\"M:System.Diagnostics.Process.Start\" /> объекта <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Класс <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />, который представляет данные для запуска процесса.Эти аргументы включают имя исполняемого файла или документа, использованного для запуска процесса.</returns>\r\n      <exception cref=\"T:System.ArgumentNullException\">The value that specifies the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> is null. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartTime\">\r\n      <summary>Получает время запуска связанного процесса.</summary>\r\n      <returns>Объект, показывающий время запуска процесса.Если процесс не выполняется, возникает исключение.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.StartTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or-The process has not been started.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred in the call to the Windows function.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Threads\">\r\n      <summary>Получает множество потоков, выполняющихся в связанном процессе.</summary>\r\n      <returns>Массив объектов типа <see cref=\"T:System.Diagnostics.ProcessThread\" />, представляющий потоки операционной системы, которые в настоящий момент выполняются в связанном процессе.</returns>\r\n      <exception cref=\"T:System.SystemException\">The process does not have an <see cref=\"P:System.Diagnostics.Process.Id\" />, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" /> instance.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.TotalProcessorTime\">\r\n      <summary>Получает полное время процессора для этого процесса.</summary>\r\n      <returns>Объект <see cref=\"T:System.TimeSpan\" />, указывающий количество времени, потраченного процессом на загрузку ЦП.Это значение является суммой значений свойств <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> и <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" />.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.TotalProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.UserProcessorTime\">\r\n      <summary>Получает пользовательское время процессора для этого процесса.</summary>\r\n      <returns>Класс <see cref=\"T:System.TimeSpan\" />, показывающий количество времени, которое связанный процесс потратил на выполнение кода внутри приложения (не внутри ядра операционной системы).</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.VirtualMemorySize64\">\r\n      <summary>Получает количество виртуальной памяти, выделенной для связанного процесса.</summary>\r\n      <returns>Возвращает количество виртуальной памяти в байтах, выделенной для связанного процесса.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit\">\r\n      <summary>Дает компоненту <see cref=\"T:System.Diagnostics.Process\" /> команду ожидать завершения связанного процесса в течение неограниченного времени.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\">\r\n      <summary>Дает компоненту <see cref=\"T:System.Diagnostics.Process\" /> команду ожидать завершения связанного процесса в течение указанного времени в миллисекундах.</summary>\r\n      <returns>Значение true, если связанный процесс завершился; в противном случае — значение false.</returns>\r\n      <param name=\"milliseconds\">Количество времени в миллисекундах для ожидания завершения связанного процесса.Максимальным является наибольшее возможное 32-битное целое число, которое представляет для операционной системы бесконечность.</param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.WorkingSet64\">\r\n      <summary>Получает количество физической памяти, выделенной для связанного процесса.</summary>\r\n      <returns>Количество физической памяти в байтах, выделенной для связанного процесса.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModule\">\r\n      <summary>Представляет файл с расширением .dll или .exe, загруженный в определенный процесс.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.BaseAddress\">\r\n      <summary>Возвращает адрес в памяти, куда был загружен модуль.</summary>\r\n      <returns>Адрес загрузки модуля.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.EntryPointAddress\">\r\n      <summary>Возвращает адрес памяти для функции, выполняющейся при загрузке и выполнении модуля системой.</summary>\r\n      <returns>Точка входа модуля.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.FileName\">\r\n      <summary>Возвращает полный путь к модулю.</summary>\r\n      <returns>Полный путь, который определяет место модуля.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleMemorySize\">\r\n      <summary>Возвращает объем памяти, необходимый для загрузки модуля.</summary>\r\n      <returns>Размер памяти в байтах, которую занимает модуль.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleName\">\r\n      <summary>Возвращает имя модуля процесса.</summary>\r\n      <returns>Имя модуля.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModule.ToString\">\r\n      <summary>Преобразует имя модуля в строку.</summary>\r\n      <returns>Значение свойства <see cref=\"P:System.Diagnostics.ProcessModule.ModuleName\" />.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModuleCollection\">\r\n      <summary>Предоставляет строго типизированную коллекцию объектов <see cref=\"T:System.Diagnostics.ProcessModule\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor\">\r\n      <summary>Инициализирует новый экземпляр класса <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> без использования связанных экземпляров <see cref=\"T:System.Diagnostics.ProcessModule\" />.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])\">\r\n      <summary>Инициализирует новый экземпляр класса <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />, используя указанный массив экземпляров <see cref=\"T:System.Diagnostics.ProcessModule\" />.</summary>\r\n      <param name=\"processModules\">Массив экземпляров <see cref=\"T:System.Diagnostics.ProcessModule\" />, с помощью которого инициализируется экземпляр <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)\">\r\n      <summary>Определяет, существует ли в коллекции указанный модуль процесса.</summary>\r\n      <returns>Значение true, если модуль присутствует в коллекции; в противном случае — значение false.</returns>\r\n      <param name=\"module\">Экземпляр <see cref=\"T:System.Diagnostics.ProcessModule\" />, указывающий на искомый модуль в коллекции. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)\">\r\n      <summary>Копирует в коллекцию массив экземпляров <see cref=\"T:System.Diagnostics.ProcessModule\" /> по указанному индексу.</summary>\r\n      <param name=\"array\">Массив экземпляров <see cref=\"T:System.Diagnostics.ProcessModule\" /> для добавления в коллекцию. </param>\r\n      <param name=\"index\">Место, куда добавляются новые экземпляры. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)\">\r\n      <summary>Предоставляет расположение указанного модуля в коллекции.</summary>\r\n      <returns>Отсчитываемый от нуля индекс, по которому определяется место модуля в коллекции <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />.</returns>\r\n      <param name=\"module\">Класс <see cref=\"T:System.Diagnostics.ProcessModule\" />, чей индекс извлекается. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)\">\r\n      <summary>Возвращает индекс для выполнения итерации по набору модулей процесса.</summary>\r\n      <returns>Класс <see cref=\"T:System.Diagnostics.ProcessModule\" />, который индексирует модули в коллекции. </returns>\r\n      <param name=\"index\">Отсчитываемое от нуля индексное значение модуля в коллекции. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ProcessPriorityClass\">\r\n      <summary>Указывает приоритет, который система связывает с процессом.Это значение вместе со значением приоритета каждого потока процесса определяет базовый уровень приоритета каждого потока.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.AboveNormal\">\r\n      <summary>Указывает, что значение приоритета процесса находится между Normal и <see cref=\"F:System.Diagnostics.ProcessPriorityClass.High\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.BelowNormal\">\r\n      <summary>Указывает, что значение приоритета процесса находится между Idle и Normal.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.High\">\r\n      <summary>Указывает, что процесс выполняет срочные задачи, которые должны быть выполнены немедленно, например диалоговое окно Task List, которое должно быстро отвечать при вызове пользователя независимо от загрузки операционной системы.Потоки процесса выгружают потоки процессов с нормальными или низкими приоритетами.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Idle\">\r\n      <summary>Указывает, что потоки этого процесса выполняются, только когда система не занята. Примером может служить программа-заставка.Потоки данного процесса выгружаются потоками любых процессов с более высоким приоритетом.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Normal\">\r\n      <summary>Указывает, что у процесса нет особых запланированных потребностей.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.RealTime\">\r\n      <summary>Указывает, что процесс обладает максимально высоким приоритетом.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessStartInfo\">\r\n      <summary>Задает набор значений, используемых при запуске процесса.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor\">\r\n      <summary>Инициализирует новый экземпляр класса <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />, не указывая имени файла, вместе с которым должен запускаться процесс.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)\">\r\n      <summary>Инициализирует новый экземпляр класса <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> и задает имя файла, например приложение или документ, вместе с которым должен запускаться процесс.</summary>\r\n      <param name=\"fileName\">Приложение или документ, вместе с которыми должен запускаться процесс. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)\">\r\n      <summary>Инициализирует новый экземпляр класса <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />, задает имя файла приложения, вместе с которым должен запускаться процесс, и указывает передаваемые в приложение аргументы командной строки.</summary>\r\n      <param name=\"fileName\">Приложение, с которым должен запускаться процесс. </param>\r\n      <param name=\"arguments\">Аргументы командной строки, передаваемые в приложение при запуске процесса. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Arguments\">\r\n      <summary>Возвращает или задает набор аргументов командной строки, используемых при запуске приложения.</summary>\r\n      <returns>Одна строка, содержащая аргументы для передачи в целевое приложение, указанное в свойстве <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" />.Значение по умолчанию — пустая строка (\"\").В Windows Vista и более ранних версиях операционной системы Windows длина аргументов, добавляемых к длине полного пути к процессу, должна быть меньше 2080.В Windows 7 и более поздних версиях длина должна быть меньше 32699.Аргументы анализируются и интерпретируются целевым приложением, поэтому они должны соответствовать ожидаемым аргументам приложения.Как показано в примерах ниже, для приложений .NET пробелы считаются разделителями между несколькими аргументами.Одиночный аргумент, включающий пробелы, должен быть заключен в кавычки, но кавычки не указываются в целевом приложении.В финальном проанализированном аргументе при включении кавычек к каждому знаку следует добавить escape-символ.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.CreateNoWindow\">\r\n      <summary>Возвращает или задает значение, позволяющее определить, нужно ли запускать процесс в новом окне.</summary>\r\n      <returns>Значение true, если процесс должен быть запущен без создания для него нового окна; в противном случае — значение false.Значение по умолчанию — false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Domain\">\r\n      <summary>Возвращает или задает значение, позволяющее идентифицировать домен, используемый при запуске процесса. </summary>\r\n      <returns>Домен Active Directory, используемый при запуске процесса.Свойство домена актуально преимущественно для пользователей, работающих в корпоративной среде и использующих службу Active Directory.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Environment\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.FileName\">\r\n      <summary>Возвращает или задает приложение или документ для запуска.</summary>\r\n      <returns>Имя запускаемого приложения или имя документа, тип файла которого связан с приложением и для которого доступно действие открытия по умолчанию.Значение по умолчанию — пустая строка (\"\").</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.LoadUserProfile\">\r\n      <summary>Возвращает или задает значение, позволяющее определить, следует ли загружать профиль пользователя Windows из реестра. </summary>\r\n      <returns>Значение true, если должен быть загружен профиль пользователя Windows; в противном случае — значение false.Значение по умолчанию — false.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Password\">\r\n      <summary>Возвращает или задает параметр безопасности, в котором содержится пароль пользователя, используемый при запуске процесса.</summary>\r\n      <returns>Пароль пользователя, используемый при запуске процесса.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\">\r\n      <summary>Возвращает или задает значение, позволяющее определить, записываются ли выходные данные об ошибках приложения в поток <see cref=\"P:System.Diagnostics.Process.StandardError\" />.</summary>\r\n      <returns>Значение true, если выходные данные должны записываться в <see cref=\"P:System.Diagnostics.Process.StandardError\" />; в противном случае — значение false.Значение по умолчанию — false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\">\r\n      <summary>Возвращает или задает значение, позволяющее определить, будут ли считываться входные данные приложения из потока <see cref=\"P:System.Diagnostics.Process.StandardInput\" />.</summary>\r\n      <returns>Значение true, если входные данные должны считываться из <see cref=\"P:System.Diagnostics.Process.StandardInput\" />; в противном случае — значение false.Значение по умолчанию — false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\">\r\n      <summary>Возвращает или задает значение, позволяющее определить, записываются ли текстовые выходные данные приложения в поток <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />.</summary>\r\n      <returns>Значение true, если выходные данные должны записываться в <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />; в противном случае — значение false.Значение по умолчанию — false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding\">\r\n      <summary>Возвращает или задает предпочтительную кодировку для вывода ошибок.</summary>\r\n      <returns>Объект, представляющий предпочтительную кодировку для вывода ошибок.Значение по умолчанию — null.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding\">\r\n      <summary>Возвращает или задает предпочтительную кодировку для стандартного вывода.</summary>\r\n      <returns>Объект, представляющий предпочтительную кодировку для стандартного вывода.Значение по умолчанию — null.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UserName\">\r\n      <summary>Возвращает или задает имя пользователя, которое следует использовать при запуске процесса.</summary>\r\n      <returns>Имя пользователя, используемое при запуске процесса.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\">\r\n      <summary>Возвращает или задает значение, позволяющее определить, нужно ли использовать оболочку операционной системы для запуска процесса.</summary>\r\n      <returns>Значение true, если оболочка должна использоваться при запуске процесса; значение false, если процесс должен создаваться непосредственно из исполняемого файла.Значение по умолчанию — true.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.WorkingDirectory\">\r\n      <summary>Если свойство <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> имеет значение false, возвращает или задает рабочую папку для процесса для запуска.Если параметру <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> присвоено значение true, возвращает или задает каталог, содержащий процесс, который требуется запустить.</summary>\r\n      <returns>Если <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> имеет значение true, полное имя каталога, в котором содержится запускаемый процесс.Если свойство <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> имеет значение false, рабочая папка для запускаемого процесса.Значение по умолчанию — пустая строка (\"\").</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThread\">\r\n      <summary>Представляет поток процесса операционной системы.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.BasePriority\">\r\n      <summary>Возвращает базовый приоритет потока.</summary>\r\n      <returns>Базовый приоритет потока, вычисляемый операционной системой путем совмещения класса приоритета процесса с уровнем приоритета соответствующего потока.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.CurrentPriority\">\r\n      <summary>Возвращает текущий приоритет потока.</summary>\r\n      <returns>Текущий приоритет потока, который может отклоняться от базового, в зависимости от способа планирования потока в операционной системе.Для активного потока приоритет может быть временно увеличен.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.Id\">\r\n      <summary>Возвращает уникальный идентификатор потока.</summary>\r\n      <returns>Уникальный идентификатор связан с конкретным потоком.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.IdealProcessor\">\r\n      <summary>Устанавливает предпочтительный процессор для выполнения этого потока.</summary>\r\n      <returns>Предпочтительный процессор для потока, используемый при планировании потока системой для определения процессора, на котором будет выполняться поток.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Системе не удалось задать поток для запуска на указанном процессоре. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Используется платформа Windows 98 или Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Данный процесс выполняется на удаленном компьютере.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityBoostEnabled\">\r\n      <summary>Возвращает или задает значение, указывающее, должна ли операционная система временно увеличивать приоритет соответствующего потока всякий раз, когда основное окно процесса, которому принадлежит данный поток, получает фокус.</summary>\r\n      <returns>Значение true для увеличения приоритета потока при взаимодействии пользователя с интерфейсом процесса или значение false в противном случае.Значение по умолчанию — false.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Не удается извлечь информацию о повышении приоритета.– или –Не удается задать информацию о повышении приоритета. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Используется платформа Windows 98 или Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Данный процесс выполняется на удаленном компьютере.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityLevel\">\r\n      <summary>Возвращает или задает уровень приоритета потока.</summary>\r\n      <returns>Одно из значений <see cref=\"T:System.Diagnostics.ThreadPriorityLevel\" />, задающих диапазон, который ограничивает приоритет потока.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Не удается извлечь информацию об уровне приоритета потока. – или –Не удается задать информацию об уровне приоритета потока.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Используется платформа Windows 98 или Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Данный процесс выполняется на удаленном компьютере.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime\">\r\n      <summary>Возвращает количество времени, затрачиваемое потоком на выполнение кода внутри ядра операционной системы.</summary>\r\n      <returns>Объект <see cref=\"T:System.TimeSpan\" />, указывающий количество времени, которое поток потратил на выполнение кода внутри ядра операционной системы.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Не удалось извлечь затраченное потоком время. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Используется платформа Windows 98 или Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Данный процесс выполняется на удаленном компьютере.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ProcessorAffinity\">\r\n      <summary>Задает процессоры, на которых может выполняться соответствующий поток.</summary>\r\n      <returns>Объект <see cref=\"T:System.IntPtr\" />, указывающий на набор битов, каждый из которых представляет процессор, где может выполняться поток.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Не удается задать сходство процессоров. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Используется платформа Windows 98 или Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Данный процесс выполняется на удаленном компьютере.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThread.ResetIdealProcessor\">\r\n      <summary>Отменяет идеальный процессор для данного потока, указывая тем самым на отсутствие единственного идеального процессора.Другими словами, для потока идеален любой процессор.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Не удается сбросить идеальный процессор. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Используется платформа Windows 98 или Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Данный процесс выполняется на удаленном компьютере.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartAddress\">\r\n      <summary>Возвращает адрес функции в памяти, которая была вызвана операционной системой и запустила этот поток.</summary>\r\n      <returns>Начальный адрес потока, указывающий на определенную приложением функцию, которую выполняет данный поток.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Используется платформа Windows 98 или Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Данный процесс выполняется на удаленном компьютере.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartTime\">\r\n      <summary>Возвращает время запуска потока операционной системой.</summary>\r\n      <returns>Класс <see cref=\"T:System.DateTime\" />, представляющий системное время запуска потока операционной системой.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Не удалось извлечь затраченное потоком время. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Используется платформа Windows 98 или Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Данный процесс выполняется на удаленном компьютере.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ThreadState\">\r\n      <summary>Возвращает текущее состояние данного потока.</summary>\r\n      <returns>Объект <see cref=\"T:System.Diagnostics.ThreadState\" />, указывающий на состояние выполнения потока, например, выполняется, ожидает или прекращен.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Используется платформа Windows 98 или Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Данный процесс выполняется на удаленном компьютере.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.TotalProcessorTime\">\r\n      <summary>Возвращает общее количество времени, которое потратил поток на обработку процессором.</summary>\r\n      <returns>Объект <see cref=\"T:System.TimeSpan\" />, указывающий количество времени, на протяжении которого поток контролировал процессор.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Не удалось извлечь затраченное потоком время. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Используется платформа Windows 98 или Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Данный процесс выполняется на удаленном компьютере.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.UserProcessorTime\">\r\n      <summary>Возвращает количество времени, которое поток потратил на выполнение кода внутри приложения.</summary>\r\n      <returns>Объект <see cref=\"T:System.TimeSpan\" />, указывающий количество времени, которое поток потратил на выполнение кода внутри приложения, в отличие от выполнения в ядре операционной системы.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Не удалось извлечь затраченное потоком время. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Используется платформа Windows 98 или Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Данный процесс выполняется на удаленном компьютере.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.WaitReason\">\r\n      <summary>Возвращает причину, по которой поток находится в состоянии ожидания.</summary>\r\n      <returns>Объект <see cref=\"T:System.Diagnostics.ThreadWaitReason\" />, представляющий причину нахождения потока в состоянии ожидания.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">Поток не находится в состоянии ожидания. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Используется платформа Windows 98 или Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Данный процесс выполняется на удаленном компьютере.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThreadCollection\">\r\n      <summary>Содержит строго типизированную коллекцию объектов <see cref=\"T:System.Diagnostics.ProcessThread\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor\">\r\n      <summary>Инициализирует новый экземпляр класса <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> без использования связанных экземпляров <see cref=\"T:System.Diagnostics.ProcessThread\" />.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])\">\r\n      <summary>Инициализирует новый экземпляр класса <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />, используя указанный массив экземпляров <see cref=\"T:System.Diagnostics.ProcessThread\" />.</summary>\r\n      <param name=\"processThreads\">Массив экземпляров <see cref=\"T:System.Diagnostics.ProcessThread\" />, с помощью которого инициализируется экземпляр <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)\">\r\n      <summary>Добавляет поток процесса в коллекцию.</summary>\r\n      <returns>Отсчитываемый с нуля индекс потока в коллекции.</returns>\r\n      <param name=\"thread\">Поток, который требуется добавить в коллекцию. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)\">\r\n      <summary>Определяет, существует ли указанный поток процесса в коллекции.</summary>\r\n      <returns>Значение true, если поток присутствует в коллекции; в противном случае — значение false.</returns>\r\n      <param name=\"thread\">Экземпляр <see cref=\"T:System.Diagnostics.ProcessThread\" />, указывающий на искомый поток в коллекции. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)\">\r\n      <summary>Копирует в коллекцию массив экземпляров <see cref=\"T:System.Diagnostics.ProcessThread\" /> по указанному индексу.</summary>\r\n      <param name=\"array\">Массив экземпляров <see cref=\"T:System.Diagnostics.ProcessThread\" /> для добавления в коллекцию. </param>\r\n      <param name=\"index\">Место, куда добавляются новые экземпляры. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)\">\r\n      <summary>Предоставляет место указанного потока в коллекции.</summary>\r\n      <returns>Отсчитываемый с нуля индекс, который определяет место потока в коллекции <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />.</returns>\r\n      <param name=\"thread\">Класс <see cref=\"T:System.Diagnostics.ProcessThread\" />, чей индекс извлекается. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)\">\r\n      <summary>Вставляет поток процесса в указанное место в коллекции.</summary>\r\n      <param name=\"index\">Отсчитываемый с нуля индекс, указывающий на место, в которое должен быть вставлен поток. </param>\r\n      <param name=\"thread\">Поток, вставляемый в коллекцию. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)\">\r\n      <summary>Получает индекс для итерационного перебора набора потоков процесса.</summary>\r\n      <returns>Класс <see cref=\"T:System.Diagnostics.ProcessThread\" />, который индексирует потоки в коллекции.</returns>\r\n      <param name=\"index\">Отсчитываемое с нуля значение потока в коллекции. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)\">\r\n      <summary>Удаляет поток процесса из коллекции.</summary>\r\n      <param name=\"thread\">Поток, который нужно удалить из коллекции. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ThreadPriorityLevel\">\r\n      <summary>Задает уровень приоритета потока.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.AboveNormal\">\r\n      <summary>Задает приоритет на один уровень выше нормального для связанного <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.BelowNormal\">\r\n      <summary>Задает приоритет на один уровень ниже нормального для связанного <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Highest\">\r\n      <summary>Задает высший приоритет.Он на два уровня выше нормального приоритета для связанного <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Idle\">\r\n      <summary>Задает приоритет простоя.Это самое низкое из возможных значений приоритета всех потоков, независимо от значения связанного <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Lowest\">\r\n      <summary>Задает низший приоритет.Он на два уровня ниже нормального приоритета для связанного <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Normal\">\r\n      <summary>Задает нормальный приоритет для связанного <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.TimeCritical\">\r\n      <summary>Задает критичный по времени приоритет.Это самый высокий приоритет всех потоков, независимо от значения связанного <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadState\">\r\n      <summary>Задает текущее состояние выполнения потока.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Initialized\">\r\n      <summary>Состояние, указывающее, что поток инициализирован, но еще не запущен.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Ready\">\r\n      <summary>Состояние, указывающее, что поток ожидает освобождения процессора.Поток готов к выполнению на следующем доступном процессоре.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Running\">\r\n      <summary>Состояние, указывающее, что поток в данный момент использует процессор.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Standby\">\r\n      <summary>Состояние, указывающее, что поток приступает к использованию процессора.В каждый момент времени в этом состоянии может быть только один поток.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Terminated\">\r\n      <summary>Состояние, указывающее, что выполнение потока завершено и он выполнил выход.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Transition\">\r\n      <summary>Состояние, указывающее, что поток ожидает ресурс (не процессор), необходимый для его выполнения.Например, он может ожидать считывания с диска стека его выполнения.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Unknown\">\r\n      <summary>Состояние потока неизвестно.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Wait\">\r\n      <summary>Состояние, указывающее, что поток не готов использовать процессор, поскольку ожидает завершения внешней операции или освобождения ресурса.Когда поток становится готовым, его выполнение планируется повторно.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadWaitReason\">\r\n      <summary>Указывает причину, по которой поток находится в состоянии ожидания.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairHigh\">\r\n      <summary>Поток ожидает старшую составляющую пары события.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairLow\">\r\n      <summary>Поток ожидает младшую составляющую пары события.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.ExecutionDelay\">\r\n      <summary>Выполнение потока отложено.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Executive\">\r\n      <summary>Поток ожидает планировщик.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.FreePage\">\r\n      <summary>Поток ожидает свободную страницу виртуальной памяти.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReceive\">\r\n      <summary>Поток ожидает поступления вызова локальной процедуры.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReply\">\r\n      <summary>Поток ожидает поступления ответа на вызов локальной процедуры.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageIn\">\r\n      <summary>Поток ожидает поступления страницы виртуальной памяти в память.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageOut\">\r\n      <summary>Поток ожидает записи страницы виртуальной памяти на диск.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Suspended\">\r\n      <summary>Выполнение потока приостановлено.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.SystemAllocation\">\r\n      <summary>Поток ожидает системных ресурсов.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Unknown\">\r\n      <summary>Причина ожидания потока неизвестна.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.UserRequest\">\r\n      <summary>Поток ожидает запроса пользователя.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.VirtualMemory\">\r\n      <summary>Поток ожидает выделения системой виртуальной памяти.</summary>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<doc>\r\n  <assembly>\r\n    <name>System.Diagnostics.Process</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\">\r\n      <summary>[SECURITY CRITICAL] 为一个进程句柄提供托管包装。</summary>\r\n    </member>\r\n    <member name=\"M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)\">\r\n      <summary>[SECURITY CRITICAL] 初始化的新实例<see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" />从，该值指示是否在终结阶段释放该句柄指定的句柄的类。</summary>\r\n      <param name=\"existingHandle\">要包装的句柄。</param>\r\n      <param name=\"ownsHandle\">true若要可靠地让<see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" />在终结阶段 ； 释放该句柄否则为false。</param>\r\n    </member>\r\n    <member name=\"P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid\"></member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventArgs\">\r\n      <summary>为 <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> 和 <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> 事件提供数据。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.DataReceivedEventArgs.Data\">\r\n      <summary>获取写入到重定向 <see cref=\"T:System.Diagnostics.Process\" /> 输出流的字符行。</summary>\r\n      <returns>由关联的 <see cref=\"T:System.Diagnostics.Process\" /> 写入到其重定向 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 或 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 流中的行。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventHandler\">\r\n      <summary>表示将要处理 <see cref=\"T:System.Diagnostics.Process\" /> 的 <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> 事件或 <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> 事件的方法。</summary>\r\n      <param name=\"sender\">事件源。</param>\r\n      <param name=\"e\">包含事件数据的 <see cref=\"T:System.Diagnostics.DataReceivedEventArgs\" />。 </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.Process\">\r\n      <summary>提供对本地和远程进程的访问权限并使你能够启动和停止本地系统进程。若要浏览此类型的 .NET Framework 源代码，请参阅引用源。</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.#ctor\">\r\n      <summary>初始化 <see cref=\"T:System.Diagnostics.Process\" /> 类的新实例。</summary>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.BasePriority\">\r\n      <summary>获取关联进程的基本优先级。</summary>\r\n      <returns>基本优先级别，它从关联进程的 <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> 计算。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or- The process has not started, so there is no process ID. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginErrorReadLine\">\r\n      <summary>在应用程序的重定向 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 流上开始进行异步读取操作。</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginOutputReadLine\">\r\n      <summary>在应用程序的重定向 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 流上开始进行异步读取操作。</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelErrorRead\">\r\n      <summary>取消在应用程序的重定向 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 流上执行的异步读取操作。</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelOutputRead\">\r\n      <summary>取消在应用程序的重定向 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 流上执行的异步读取操作。</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose\"></member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose(System.Boolean)\">\r\n      <summary>释放此进程使用的所有资源。</summary>\r\n      <param name=\"disposing\">若要释放托管资源和非托管资源，则为 true；若仅释放非托管资源，则为 false。</param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.EnableRaisingEvents\">\r\n      <summary>获取或设置在进程终止时是否应激发 <see cref=\"E:System.Diagnostics.Process.Exited\" /> 事件。</summary>\r\n      <returns>如果关联的进程终止（通过退出或者调用 <see cref=\"M:System.Diagnostics.Process.Kill\" />）时应引发 <see cref=\"E:System.Diagnostics.Process.Exited\" /> 事件，则为 true；否则为 false。默认值为 false。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.EnterDebugMode\">\r\n      <summary>通过启用当前线程的本机属性 SeDebugPrivilege，将 <see cref=\"T:System.Diagnostics.Process\" /> 组件置于与以特殊模式运行的操作系统进程交互的状态。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.ErrorDataReceived\">\r\n      <summary>当应用程序写入其重定向 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 流中时发生。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitCode\">\r\n      <summary>获取关联进程终止时指定的值。</summary>\r\n      <returns>关联进程终止时指定的代码。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has not exited.-or- The process <see cref=\"P:System.Diagnostics.Process.Handle\" /> is not valid. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitCode\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.Exited\">\r\n      <summary>在进程退出时发生。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitTime\">\r\n      <summary>获取关联进程退出的时间。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.DateTime\" />，它指示关联进程终止的时间。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetCurrentProcess\">\r\n      <summary>获取新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件并将其与当前活动的进程关联。</summary>\r\n      <returns>与运行调用应用程序的进程资源关联的新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32)\">\r\n      <summary>返回新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件（给定本地计算机上某个进程的标识符）。</summary>\r\n      <returns>一个与 <paramref name=\"processId\" /> 参数标识的本地进程资源关联的 <see cref=\"T:System.Diagnostics.Process\" /> 组件。</returns>\r\n      <param name=\"processId\">进程资源的系统唯一标识符。</param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)\">\r\n      <summary>返回新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件（给定进程标识符和网络中计算机的名称）。</summary>\r\n      <returns>一个与 <paramref name=\"processId\" /> 参数标识的远程进程资源关联的 <see cref=\"T:System.Diagnostics.Process\" /> 组件。</returns>\r\n      <param name=\"processId\">进程资源的系统唯一标识符。</param>\r\n      <param name=\"machineName\">网络上计算机的名称。</param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.-or- The <paramref name=\"machineName\" /> parameter syntax is invalid.The name might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses\">\r\n      <summary>为本地计算机上的每个进程资源创建一个新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 类型的数组，它表示本地计算机上运行的所有进程资源。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses(System.String)\">\r\n      <summary>为指定计算机上的每个进程资源创建一个新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 类型的数组，表示指定计算机上运行的所有进程资源。</returns>\r\n      <param name=\"machineName\">从其中读取进程列表的计算机。</param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String)\">\r\n      <summary>创建新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件的数组，并将它们与本地计算机上共享指定的进程名称的所有进程资源关联。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 类型的数组，表示运行指定应用程序或文件的进程资源。</returns>\r\n      <param name=\"processName\">该进程的友好名称。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)\">\r\n      <summary>创建新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件的数组，并将它们与远程计算机上共享指定进程名称的所有进程资源关联。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 类型的数组，表示运行指定应用程序或文件的进程资源。</returns>\r\n      <param name=\"processName\">该进程的友好名称。</param>\r\n      <param name=\"machineName\">网络上计算机的名称。</param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.HasExited\">\r\n      <summary>获取指示关联进程是否已终止的值。</summary>\r\n      <returns>如果 <see cref=\"T:System.Diagnostics.Process\" /> 组件引用的操作系统进程已终止，则为 true；否则为 false。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with the object. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The exit code for the process could not be retrieved. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.HasExited\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Id\">\r\n      <summary>获取关联进程的唯一标识符。</summary>\r\n      <returns>此 <see cref=\"T:System.Diagnostics.Process\" /> 实例引用的、由系统生成的进程的唯一标识符。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process's <see cref=\"P:System.Diagnostics.Process.Id\" /> property has not been set.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Kill\">\r\n      <summary>立即停止关联的进程。</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to call <see cref=\"M:System.Diagnostics.Process.Kill\" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has already exited. -or-There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.LeaveDebugMode\">\r\n      <summary>使 <see cref=\"T:System.Diagnostics.Process\" /> 组件离开允许它与以特殊模式运行的操作系统进程交互的状态。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MachineName\">\r\n      <summary>获取关联进程正在其上运行的计算机的名称。</summary>\r\n      <returns>关联进程正在其上运行的计算机的名称。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MainModule\">\r\n      <summary>获取关联进程的主模块。</summary>\r\n      <returns>用于启动进程的 <see cref=\"T:System.Diagnostics.ProcessModule\" />。</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MainModule\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A 32-bit process is trying to access the modules of a 64-bit process.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MaxWorkingSet\">\r\n      <summary>获取或设置关联进程的允许的最大工作集大小。</summary>\r\n      <returns>内存中允许的进程的最大工作集大小（以字节为单位）。</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MaxWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MinWorkingSet\">\r\n      <summary>获取或设置关联进程的允许的最小工作集大小。</summary>\r\n      <returns>内存中进程所需的最小工作集大小（以字节为单位）。</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MinWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Modules\">\r\n      <summary>获取已由关联进程加载的模块。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> 类型的数组，它表示已由关联进程加载的模块。</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for either the system process or the idle process.These processes do not have modules.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.NonpagedSystemMemorySize64\">\r\n      <summary>获取为关联的进程分配的非分页系统内存量。</summary>\r\n      <returns>为关联的进程分配的、不能写入虚拟内存分页文件中的系统内存量（以字节为单位）。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.OnExited\">\r\n      <summary>引发 <see cref=\"E:System.Diagnostics.Process.Exited\" /> 事件。</summary>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.OutputDataReceived\">\r\n      <summary>每次应用程序向其重定向 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 流中写入行时发生。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedMemorySize64\">\r\n      <summary>获取为关联的进程分配的分页内存量。</summary>\r\n      <returns>在虚拟内存分页文件中为关联进程分配的内存量（以字节为单位）。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedSystemMemorySize64\">\r\n      <summary>获取为关联进程分配的可分页系统内存量。</summary>\r\n      <returns>为可写入虚拟内存分页文件的关联内存分配的系统内存量（以字节为单位）。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakPagedMemorySize64\">\r\n      <summary>获取关联的进程使用的虚拟内存分页文件中的最大内存量。</summary>\r\n      <returns>从启动关联的进程以来在为虚拟内存分页文件中关联进程分配的最大内存量（以字节为单位）。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakVirtualMemorySize64\">\r\n      <summary>获取关联进程使用的最大虚拟内存量。</summary>\r\n      <returns>从关联进程启动以来为关联进程分配的最大虚拟内存量（以字节为单位）。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakWorkingSet64\">\r\n      <summary>获取关联进程使用的最大物理内存量。</summary>\r\n      <returns>从启动关联进程以来为关联进程分配的最大物理内存量（以字节为单位）。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityBoostEnabled\">\r\n      <summary>获取或设置一个值，该值指示主窗口拥有焦点时是否应由操作系统暂时提升关联进程优先级。</summary>\r\n      <returns>如果进程离开等待状态时应动态提升进程优先级别，则为 true；否则为 false。默认值为 false。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Priority boost information could not be retrieved from the associated process resource. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityBoostEnabled\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityClass\">\r\n      <summary>获取或设置关联进程的总体优先级类别。</summary>\r\n      <returns>关联进程的优先级别类别，可从该类别计算进程的 <see cref=\"P:System.Diagnostics.Process.BasePriority\" />。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">You have set the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>\r\n      <exception cref=\"T:System.ComponentModel.InvalidEnumArgumentException\">Priority class cannot be set because it does not use a valid value, as defined in the <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> enumeration.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivateMemorySize64\">\r\n      <summary>获取为关联进程分配的专用内存量。</summary>\r\n      <returns>为关联进程分配的不能与其他进程共享的内存量（以字节为单位）。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\">\r\n      <summary>获取此进程的特权处理器时间。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" />，它指示进程在操作系统内核中运行代码所用的时间。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessName\">\r\n      <summary>获取该进程的名称。</summary>\r\n      <returns>系统用以向用户标识该进程的名称。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process does not have an identifier, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" />.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is not on this computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessorAffinity\">\r\n      <summary>获取或设置一些处理器，此进程中的线程可以按计划在这些处理器上运行。</summary>\r\n      <returns>位掩码，表示关联进程内的线程可以在其上运行的处理器。默认值取决于计算机上的处理器数。默认值为 2 n -1，其中 n 是处理器数。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> was not available.-or- The process has exited. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Refresh\">\r\n      <summary>放弃已缓存到进程组件的关联仅存的任何相关信息。</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SafeHandle\">\r\n      <summary>获取此进程的本机句柄。</summary>\r\n      <returns>此进程的本机句柄。</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SessionId\">\r\n      <summary>获取关联进程的终端服务会话标识符。</summary>\r\n      <returns>关联进程的终端服务会话标识符。</returns>\r\n      <exception cref=\"T:System.NullReferenceException\">There is no session associated with this process.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The <see cref=\"P:System.Diagnostics.Process.SessionId\" /> property is not supported on Windows 98.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardError\">\r\n      <summary>获取用于读取应用程序错误输出的流。</summary>\r\n      <returns>一个 <see cref=\"T:System.IO.StreamReader\" />，可用于读取应用程序的标准错误流。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginErrorReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardInput\">\r\n      <summary>获取用于写入应用程序输入的流。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IO.StreamWriter\" />，可用于写入应用程序的标准输入流。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> stream has not been defined because <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" /> is set to false. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardOutput\">\r\n      <summary>获取用于读取应用程序文本输出的流。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IO.StreamReader\" />，可用于读取应用程序的标准输出流。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginOutputReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start\">\r\n      <summary>启动（或重用）此 <see cref=\"T:System.Diagnostics.Process\" /> 组件的 <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> 属性指定的进程资源，并将其与该组件关联。</summary>\r\n      <returns>如果启动了进程资源，则为 true；如果没有启动新的进程资源（例如，如果重用了现有进程），则为 false。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <see cref=\"T:System.Diagnostics.Process\" /> component's <see cref=\"P:System.Diagnostics.Process.StartInfo\" />.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> member of the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> property is true while <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is true. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)\">\r\n      <summary>启动由包含进程启动信息（例如，要启动的进程的文件名）的参数指定的进程资源，并将该资源与新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件关联。</summary>\r\n      <returns>一个与进程资源关联的新 <see cref=\"T:System.Diagnostics.Process\" />，如果未启动进程资源，则为 null。请注意，随着同一进程已在运行的实例启动的新进程将独立于其他进程。此外，启动可能返回一个 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 属性已设置为 true 的非 null 进程。在这种情况下，启动的进程可能已激活现有实例自身，然后退出。</returns>\r\n      <param name=\"startInfo\">\r\n        <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />，包含用于启动进程的信息（包括文件名和任何命令行参数）。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is also true.-or-The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UserName\" /> property is not null or empty or the <see cref=\"P:System.Diagnostics.ProcessStartInfo.Password\" /> property is not null.</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"startInfo\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The file specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property could not be found.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String)\">\r\n      <summary>通过指定文档或应用程序文件的名称来启动进程资源，并将资源与新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件关联。</summary>\r\n      <returns>一个与进程资源关联的新 <see cref=\"T:System.Diagnostics.Process\" />，如果未启动进程资源，则为 null。请注意，随着同一进程已在运行的实例启动的新进程将独立于其他进程。此外，启动可能返回一个 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 属性已设置为 true 的非 null 进程。在这种情况下，启动的进程可能已激活现有实例自身，然后退出。</returns>\r\n      <param name=\"fileName\">要在进程中运行的文档或应用程序文件的名称。</param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String)\">\r\n      <summary>通过指定应用程序的名称和一组命令行参数来启动一个进程资源，并将该资源与新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件相关联。</summary>\r\n      <returns>一个与进程资源关联的新 <see cref=\"T:System.Diagnostics.Process\" />，如果未启动进程资源，则为 null。请注意，随着同一进程已在运行的实例启动的新进程将独立于其他进程。此外，启动可能返回一个 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 属性已设置为 true 的非 null 进程。在这种情况下，启动的进程可能已激活现有实例自身，然后退出。</returns>\r\n      <param name=\"fileName\">要在进程中运行的应用程序文件的名称。</param>\r\n      <param name=\"arguments\">启动该进程时传递的命令行参数。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <paramref name=\"fileName\" /> or <paramref name=\"arguments\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>通过指定应用程序的名称、用户名、密码和域来启动一个进程资源，并将该资源与新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件关联起来。</summary>\r\n      <returns>一个与进程资源关联的新 <see cref=\"T:System.Diagnostics.Process\" />，如果未启动进程资源，则为 null。请注意，随着同一进程已在运行的实例启动的新进程将独立于其他进程。此外，启动可能返回一个 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 属性已设置为 true 的非 null 进程。在这种情况下，启动的进程可能已激活现有实例自身，然后退出。</returns>\r\n      <param name=\"fileName\">要在进程中运行的应用程序文件的名称。</param>\r\n      <param name=\"userName\">启动进程时使用的用户名。</param>\r\n      <param name=\"password\">一个 <see cref=\"T:System.Security.SecureString\" />，它包含启动进程时要使用的密码。</param>\r\n      <param name=\"domain\">启动进程时要使用的域。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>通过指定应用程序的名称、一组命令行参数、用户名、密码和域来启动一个进程资源，并将该资源与新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件关联起来。</summary>\r\n      <returns>一个与进程资源关联的新 <see cref=\"T:System.Diagnostics.Process\" />，如果未启动进程资源，则为 null。请注意，随着同一进程已在运行的实例启动的新进程将独立于其他进程。此外，启动可能返回一个 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 属性已设置为 true 的非 null 进程。在这种情况下，启动的进程可能已激活现有实例自身，然后退出。</returns>\r\n      <param name=\"fileName\">要在进程中运行的应用程序文件的名称。</param>\r\n      <param name=\"arguments\">启动该进程时传递的命令行参数。</param>\r\n      <param name=\"userName\">启动进程时使用的用户名。</param>\r\n      <param name=\"password\">一个 <see cref=\"T:System.Security.SecureString\" />，它包含启动进程时要使用的密码。</param>\r\n      <param name=\"domain\">启动进程时要使用的域。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartInfo\">\r\n      <summary>获取或设置要传递给 <see cref=\"T:System.Diagnostics.Process\" /> 的 <see cref=\"M:System.Diagnostics.Process.Start\" /> 方法的属性。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />，它表示启动该进程时要使用的数据。这些参数包括用于启动该进程的可执行文件或文档的名称。</returns>\r\n      <exception cref=\"T:System.ArgumentNullException\">The value that specifies the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> is null. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartTime\">\r\n      <summary>获取关联进程启动的时间。</summary>\r\n      <returns>指示进程启动的时间的对象。如果进程未运行，将会引发异常。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.StartTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or-The process has not been started.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred in the call to the Windows function.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Threads\">\r\n      <summary>获取在关联进程中运行的一组线程。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> 类型的数组，它表示当前在关联进程中运行的操作系统线程。</returns>\r\n      <exception cref=\"T:System.SystemException\">The process does not have an <see cref=\"P:System.Diagnostics.Process.Id\" />, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" /> instance.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.TotalProcessorTime\">\r\n      <summary>获取此进程的总的处理器时间。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" />，它指示关联进程使用 CPU 的时间。此值是 <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> 和 <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> 的和。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.TotalProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.UserProcessorTime\">\r\n      <summary>获取此进程的用户处理器时间。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" />，它指示关联进程在该进程的应用程序部分内（而不是在操作系统内核中）运行代码所用的时间。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.VirtualMemorySize64\">\r\n      <summary>获取为关联进程分配的虚拟内存量。</summary>\r\n      <returns>为关联进程分配的虚拟内存量（以字节为单位）。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit\">\r\n      <summary>指示 <see cref=\"T:System.Diagnostics.Process\" /> 组件无限期地等待关联进程退出。</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\">\r\n      <summary>指示 <see cref=\"T:System.Diagnostics.Process\" /> 组件在指定的毫秒数内等待关联进程退出。</summary>\r\n      <returns>如果关联进程已退出，则为 true；否则为 false。</returns>\r\n      <param name=\"milliseconds\">等待关联进程退出的时间（以毫秒为单位）。最大值为 32 位整数的最大可能值，这对于操作系统而言表示无限大。</param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.WorkingSet64\">\r\n      <summary>获取为关联进程分配的物理内存量。</summary>\r\n      <returns>为关的进程分配的物理内存量（以字节为单位）。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModule\">\r\n      <summary>表示加载到特定进程中的 .dll 或 .exe 文件。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.BaseAddress\">\r\n      <summary>获取加载模块的内存地址。</summary>\r\n      <returns>模块的加载地址。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.EntryPointAddress\">\r\n      <summary>获取在系统加载和运行模块时运行的函数的内存地址。</summary>\r\n      <returns>模块的入口点。</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.FileName\">\r\n      <summary>获取模块的完整路径。</summary>\r\n      <returns>定义模块位置的完全限定路径。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleMemorySize\">\r\n      <summary>获取加载模块所需内存量。</summary>\r\n      <returns>模块占用的内存大小（以字节为单位）。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleName\">\r\n      <summary>获取进程模块的名称。</summary>\r\n      <returns>模块的名称。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModule.ToString\">\r\n      <summary>将模块的名称转换为字符串。</summary>\r\n      <returns>\r\n        <see cref=\"P:System.Diagnostics.ProcessModule.ModuleName\" /> 属性的值。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModuleCollection\">\r\n      <summary>提供 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 对象的强类型集合。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor\">\r\n      <summary>在没有关联的 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 实例的情况下，初始化 <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 类的新实例。</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])\">\r\n      <summary>使用指定的 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 实例数组来初始化 <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 类的新实例。</summary>\r\n      <param name=\"processModules\">用来初始化该 <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 实例的 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 实例的数组。</param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)\">\r\n      <summary>确定集合中是否存在指定的进程模块。</summary>\r\n      <returns>如果集合中存在该模块，则为 true；否则为 false。</returns>\r\n      <param name=\"module\">一个 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 实例，它指示要该集合中查找的模块。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)\">\r\n      <summary>将 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 实例的数组复制到集合的指定索引处。</summary>\r\n      <param name=\"array\">要添加到集合的 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 实例的数组。</param>\r\n      <param name=\"index\">要添加新实例的位置。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)\">\r\n      <summary>提供指定模块在集合中的位置。</summary>\r\n      <returns>从零开始的索引，它定义模块在 <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 中的位置。</returns>\r\n      <param name=\"module\">检索其索引的 <see cref=\"T:System.Diagnostics.ProcessModule\" />。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)\">\r\n      <summary>获取用于循环访问进程模块集的索引。</summary>\r\n      <returns>一个 <see cref=\"T:System.Diagnostics.ProcessModule\" />，它对集合中的模块进行索引</returns>\r\n      <param name=\"index\">集合中该模块的从零开始的索引值。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ProcessPriorityClass\">\r\n      <summary>指示系统将与进程关联的优先级。此值与进程的每个线程的优先级值一起来确定每个线程的基本优先级别。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.AboveNormal\">\r\n      <summary>指定进程的优先级在 Normal 之上，但在 <see cref=\"F:System.Diagnostics.ProcessPriorityClass.High\" /> 之下。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.BelowNormal\">\r\n      <summary>指定进程的优先级在 Idle 之上，但在 Normal 之下。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.High\">\r\n      <summary>指定进程执行必须立即执行的时间关键任务，如 Task List 对话框，不管操作系统的负荷如何，用户调用该对话框后均必须迅速响应。该进程的线程优先于普通或空闲优先级类进程的线程。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Idle\">\r\n      <summary>指定此进程的线程只能在系统空闲时运行，如屏幕保护程序。更高优先级类中运行的任何进程的线程都优先于此进程的线程。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Normal\">\r\n      <summary>指定进程没有特殊的安排需求。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.RealTime\">\r\n      <summary>指定进程拥有可能的最高优先级。</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessStartInfo\">\r\n      <summary>指定启动进程时使用的一组值。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor\">\r\n      <summary>初始化 <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> 类的新实例，而不指定启动进程时使用的文件名。</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)\">\r\n      <summary>初始化 <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> 类的新实例，并指定启动进程时使用的诸如应用程序或文档的文件名。</summary>\r\n      <param name=\"fileName\">启动进程时使用的应用程序或文档。</param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)\">\r\n      <summary>初始化 <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> 类的新实例，指定启动该进程时使用的应用程序文件名以及要传递给该应用程序的一组命令行参数。</summary>\r\n      <param name=\"fileName\">启动进程时使用的应用程序。</param>\r\n      <param name=\"arguments\">进程启动时要传递给应用程序的命令行参数。</param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Arguments\">\r\n      <summary>获取或设置启动应用程序时要使用的一组命令行参数。</summary>\r\n      <returns>单个字符串包含要传递给在 <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> 属性中指定的目标应用程序的参数。默认值为空字符串 (\"\")。在 Windows Vista 和早期的 Windows 操作系统上，添加至进程全径的长度的参数长度必须小于 2080。在 Windows 7 和更高版本，此长度必须小于 32699。参数由目标应用程序进行分析和解释，因此必须与该应用程序的预期保持一致。对于以下示例中所演示的 .NET 的应用程序，空格被解释为多个参数之间的分隔符。包含空格的单个参数必须用引号引起来，但这些引号不会传递到目标应用程序。在包括引号在内的最终已分析的参数中，每个标记均会进行三重转义。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.CreateNoWindow\">\r\n      <summary>获取或设置指示是否在新窗口中启动该进程的值。</summary>\r\n      <returns>如果应启动该进程而不创建包含它的新窗口，则为 true；否则为 false。默认值为 false。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Domain\">\r\n      <summary>获取或设置一个值，该值标识要在启动进程时使用的域。</summary>\r\n      <returns>要在启动进程时使用的 Active Directory 域。域属性主要与使用 Active Directory 的企业级环境内的用户相关。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Environment\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.FileName\">\r\n      <summary>获取或设置要启动的应用程序或文档。</summary>\r\n      <returns>要启动的应用程序的名称或某文件类型的文档的名称，该文件类型与应用程序关联并且拥有可用的默认打开操作。默认值为空字符串 (\"\")。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.LoadUserProfile\">\r\n      <summary>获取或设置一个值，该值指示是否从注册表加载 Windows 用户配置文件。</summary>\r\n      <returns>如果应加载 Windows 用户概况，则为 true；否则为 false。默认值为 false。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Password\">\r\n      <summary>获取或设置一个安全字符串，其中包含要在启动进程时使用的用户密码。</summary>\r\n      <returns>启动进程时使用的用户密码。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\">\r\n      <summary>获取或设置一个值，该值指示是否将应用程序的错误输出写入 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 流中。</summary>\r\n      <returns>如果错误输出应写入 <see cref=\"P:System.Diagnostics.Process.StandardError\" />，则为 true；否则为 false。默认值为 false。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\">\r\n      <summary>获取或设置一个值，该值指示应用程序的输入是否从 <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> 流中读取。</summary>\r\n      <returns>如果应从 <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> 读取输入，则为 true；否则为 false。默认值为 false。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\">\r\n      <summary>获取或设置一个值，该值指示是否将应用程序的输出写入 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 流中。</summary>\r\n      <returns>如果输出应写入 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />，则为 true；否则为 false。默认值为 false。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding\">\r\n      <summary>获取或设置错误输出的首选编码。</summary>\r\n      <returns>一个对象，表示错误输出的首选编码。默认值为 null。</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding\">\r\n      <summary>获取或设置标准输出的首选编码。</summary>\r\n      <returns>一个对象，表示标准输出的首选编码。默认值为 null。</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UserName\">\r\n      <summary>获取或设置在启动进程时使用的用户名。</summary>\r\n      <returns>启动进程时使用的用户名。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\">\r\n      <summary>获取或设置一个值，该值指示是否使用操作系统 shell 启动进程。</summary>\r\n      <returns>如果应在启动进程时使用 shell，则为 true；如果直接从可执行文件创建进程，则为 false。默认值为 true。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.WorkingDirectory\">\r\n      <summary>当 <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> 属性为 false 时，将获取或设置要启动的进程的工作目录。当 <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> 为 true 时，获取或设置包含要启动的进程的目录。</summary>\r\n      <returns>当 <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> 为 true 时，是包含要启动的进程的目录的完全限定名。当 <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> 属性为 false 时，则为要启动的进程的工作目录。默认值为空字符串 (\"\")。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThread\">\r\n      <summary>表示操作系统进程线程。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.BasePriority\">\r\n      <summary>获取线程的基本优先级。</summary>\r\n      <returns>线程的基本优先级，它由操作系统通过将进程优先级类与关联线程的优先级别相结合进行计算。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.CurrentPriority\">\r\n      <summary>获取线程的当前优先级。</summary>\r\n      <returns>线程的当前优先级，可根据操作系统如何安排该线程而偏离基本优先级。可为活动线程暂时提升优先级。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.Id\">\r\n      <summary>获取线程的唯一标识符。</summary>\r\n      <returns>与指定线程关联的唯一标识符。</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.IdealProcessor\">\r\n      <summary>设置让此线程在其上运行的首选处理器。</summary>\r\n      <returns>线程的首选处理器，用来在系统安排线程时确定在哪个处理器上运行线程。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">系统未能设置线程在指定的处理器上启动。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台为 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">进程在远程计算机上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityBoostEnabled\">\r\n      <summary>获取或设置一个值，该值指示每当关联线程的进程主窗口接收焦点时，操作系统是否暂时提升该线程的优先级。</summary>\r\n      <returns>若要在用户与进程的界面交互时提升线程的优先级，则为 true；否则为 false。默认值为 false。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">未能检索到优先级提升信息。- 或 -未能设置优先级提升信息。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台为 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">进程在远程计算机上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityLevel\">\r\n      <summary>获取或设置线程的优先级别。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ThreadPriorityLevel\" /> 值之一，它指定限制线程优先级的范围。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">未能检索到线程优先级别信息。- 或 -未能设置线程优先级别。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台为 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">进程在远程计算机上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime\">\r\n      <summary>获取线程在操作系统内核中运行代码所用的时间。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" />，它指示线程在操作系统内核中运行代码所用的时间。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">未能检索到线程时间。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台为 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">进程在远程计算机上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ProcessorAffinity\">\r\n      <summary>设置关联线程可以在其上运行的处理器。</summary>\r\n      <returns>指向一组位的 <see cref=\"T:System.IntPtr\" />，每个位表示该线程可在其上运行的一个处理器。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">未能设置处理器关联。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台为 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">进程在远程计算机上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThread.ResetIdealProcessor\">\r\n      <summary>重置此线程的理想处理器，以指示没有单个的理想处理器。换言之，任何处理器都是理想处理器。</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">未能重置理想处理器。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台为 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">进程在远程计算机上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartAddress\">\r\n      <summary>获取操作系统调用的、启动此线程的函数的内存地址。</summary>\r\n      <returns>线程的起始地址，它指向线程执行的应用程序定义的函数。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台为 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">进程在远程计算机上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartTime\">\r\n      <summary>获取操作系统启动该线程的时间。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.DateTime\" />，它表示操作系统启动该线程时系统上的时间。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">未能检索到线程时间。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台为 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">进程在远程计算机上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ThreadState\">\r\n      <summary>获取此线程的当前状态。</summary>\r\n      <returns>指示线程执行情况的 <see cref=\"T:System.Diagnostics.ThreadState\" />（例如运行、等待或终止）。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台为 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">进程在远程计算机上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.TotalProcessorTime\">\r\n      <summary>获取此线程使用处理器的时间总量。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" />，它指示线程控制处理器的时间。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">未能检索到线程时间。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台为 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">进程在远程计算机上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.UserProcessorTime\">\r\n      <summary>获取关联的线程在应用程序内运行代码所用的时间。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" />，它指示线程在应用程序内（相对于在操作系统内核中）运行代码所用的时间。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">未能检索到线程时间。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台为 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">进程在远程计算机上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.WaitReason\">\r\n      <summary>获取线程等待的原因。</summary>\r\n      <returns>一个 <see cref=\"T:System.Diagnostics.ThreadWaitReason\" />，表示线程处于等待状态的原因。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">线程不在等待状态。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台为 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">进程在远程计算机上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThreadCollection\">\r\n      <summary>提供 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 对象的强类型集合。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor\">\r\n      <summary>在没有关联的 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 实例的情况下，初始化 <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 类的新实例。</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])\">\r\n      <summary>使用指定的 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 实例数组来初始化 <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 类的新实例。</summary>\r\n      <param name=\"processThreads\">用来初始化该 <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 实例的 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 实例的数组。</param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)\">\r\n      <summary>将进程线程附加到集合。</summary>\r\n      <returns>集合中线程的从零开始的索引。</returns>\r\n      <param name=\"thread\">要添加到集合中的线程。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)\">\r\n      <summary>确定集合中是否存在指定的进程线程。</summary>\r\n      <returns>如果集合中存在该线程，则为 true；否则为 false。</returns>\r\n      <param name=\"thread\">一个 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 实例，它指示要在该集合中查找的线程。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)\">\r\n      <summary>将 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 实例的数组复制到集合的指定索引处。</summary>\r\n      <param name=\"array\">要添加到集合的 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 实例的数组。</param>\r\n      <param name=\"index\">要添加新实例的位置。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)\">\r\n      <summary>提供指定线程在集合中的位置。</summary>\r\n      <returns>从零开始的索引，它定义线程在 <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 中的位置。</returns>\r\n      <param name=\"thread\">检索其索引的 <see cref=\"T:System.Diagnostics.ProcessThread\" />。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)\">\r\n      <summary>在集合中的指定位置插入进程线程。</summary>\r\n      <param name=\"index\">从零开始的索引，指示插入线程的位置。</param>\r\n      <param name=\"thread\">要插入到集合中的线程。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)\">\r\n      <summary>获取用于循环访问进程线程集的索引。</summary>\r\n      <returns>一个 <see cref=\"T:System.Diagnostics.ProcessThread\" />，它对集合中的线程进行索引。</returns>\r\n      <param name=\"index\">集合中该值的从零开始的索引。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)\">\r\n      <summary>从集合中删除进程线程。</summary>\r\n      <param name=\"thread\">要从该集合中移除的线程。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ThreadPriorityLevel\">\r\n      <summary>指定线程的优先级别。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.AboveNormal\">\r\n      <summary>指定的优先级比关联的 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的普通优先级高一级。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.BelowNormal\">\r\n      <summary>指定的优先级比关联的 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的普通优先级低一级。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Highest\">\r\n      <summary>指定最高优先级。这比关联的 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的普通优先级高两级。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Idle\">\r\n      <summary>指定空闲优先级。它是所有线程的可能的最低优先级值，与关联的 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的值无关。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Lowest\">\r\n      <summary>指定最低优先级。这比关联的 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的普通优先级低两级。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Normal\">\r\n      <summary>指定关联的 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的普通优先级。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.TimeCritical\">\r\n      <summary>指定时间关键优先级。这是所有线程中的最高优先级，与关联的 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的值无关。</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadState\">\r\n      <summary>指定线程的当前执行状态。</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Initialized\">\r\n      <summary>此状态指示线程已初始化但尚未启动。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Ready\">\r\n      <summary>此状态指示线程因无可用的处理器而等待使用处理器。线程准备在下一个可用的处理器上运行。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Running\">\r\n      <summary>此状态指示线程当前正在使用处理器。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Standby\">\r\n      <summary>此状态指示线程将要使用处理器。一次只能有一个线程处于此状态。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Terminated\">\r\n      <summary>此状态指示线程已完成执行并已退出。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Transition\">\r\n      <summary>此状态指示线程在可以执行前等待处理器之外的资源。例如，它可能正在等待其执行堆栈从磁盘中分页。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Unknown\">\r\n      <summary>线程的状态未知。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Wait\">\r\n      <summary>此状态指示线程尚未准备好使用处理器，因为它正在等待外围操作完成或等待资源释放。当线程就绪后，将对其进行重排。</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadWaitReason\">\r\n      <summary>指定线程等待的原因。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairHigh\">\r\n      <summary>线程正在等待事件对高。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairLow\">\r\n      <summary>线程正在等待事件对低。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.ExecutionDelay\">\r\n      <summary>线程执行延迟。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Executive\">\r\n      <summary>线程正在等待计划程序。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.FreePage\">\r\n      <summary>线程正在等待可用的虚拟内存页。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReceive\">\r\n      <summary>线程正在等待本地过程调用到达。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReply\">\r\n      <summary>线程正在等待对本地过程调用的回复到达。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageIn\">\r\n      <summary>线程正在等待虚拟内存页到达内存。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageOut\">\r\n      <summary>线程正在等待虚拟内存页写入磁盘。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Suspended\">\r\n      <summary>线程执行暂停。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.SystemAllocation\">\r\n      <summary>线程正在等待系统分配。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Unknown\">\r\n      <summary>线程正在因未知原因而等待。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.UserRequest\">\r\n      <summary>线程正在等待用户请求。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.VirtualMemory\">\r\n      <summary>线程正在等待系统分配虚拟内存。</summary>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<doc>\r\n  <assembly>\r\n    <name>System.Diagnostics.Process</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\">\r\n      <summary>[安全性關鍵] 提供處理序控制代碼的 Managed 包裝函式。</summary>\r\n    </member>\r\n    <member name=\"M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)\">\r\n      <summary>[安全性關鍵] 初始化的新執行個體<see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" />從指定的控制代碼，指出是否要在完成階段期間釋放控制代碼的類別。</summary>\r\n      <param name=\"existingHandle\">要被包裝的控制代碼。</param>\r\n      <param name=\"ownsHandle\">true若要可靠地讓<see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" />放開最終處理階段中，控點否則， false。</param>\r\n    </member>\r\n    <member name=\"P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid\"></member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventArgs\">\r\n      <summary>為 <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> 和 <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> 事件提供資料。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.DataReceivedEventArgs.Data\">\r\n      <summary>取得已寫入至重新導向 <see cref=\"T:System.Diagnostics.Process\" /> 輸出資料流的字元行。</summary>\r\n      <returns>由關聯的 <see cref=\"T:System.Diagnostics.Process\" /> 寫入至其重新導向的 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 或 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 資料流的字行。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventHandler\">\r\n      <summary>表示將處理 <see cref=\"T:System.Diagnostics.Process\" /> 的 <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> 事件或 <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> 事件的方法。</summary>\r\n      <param name=\"sender\">事件的來源。</param>\r\n      <param name=\"e\">包含事件資料的 <see cref=\"T:System.Diagnostics.DataReceivedEventArgs\" />。 </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.Process\">\r\n      <summary>提供對本機和遠端處理序的存取，並讓您能夠啟動和停止本機系統處理序。若要瀏覽此類型的 .NET Framework 原始程式碼，請參閱參考來源。</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.#ctor\">\r\n      <summary>初始化 <see cref=\"T:System.Diagnostics.Process\" /> 類別的新執行個體。</summary>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.BasePriority\">\r\n      <summary>取得相關處理序的基礎優先權 (Base Priority)。</summary>\r\n      <returns>基礎優先權，它是從相關聯處理序的 <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> 計算出來的。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or- The process has not started, so there is no process ID. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginErrorReadLine\">\r\n      <summary>在應用程式的重新導向 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 資料流上開始非同步讀取作業。</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginOutputReadLine\">\r\n      <summary>在應用程式的重新導向 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 資料流上開始非同步讀取作業。</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelErrorRead\">\r\n      <summary>在應用程式的重新導向 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 資料流上取消非同步讀取作業。</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelOutputRead\">\r\n      <summary>在應用程式的重新導向 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 資料流上取消非同步讀取作業。</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose\"></member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose(System.Boolean)\">\r\n      <summary>釋放這個處理序使用的所有資源。</summary>\r\n      <param name=\"disposing\">true 表示釋放 Managed 和 Unmanaged 資源，false 則表示只釋放 Unmanaged 資源。</param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.EnableRaisingEvents\">\r\n      <summary>取得或設定是否應該在處理序終止時引發 <see cref=\"E:System.Diagnostics.Process.Exited\" /> 事件。</summary>\r\n      <returns>如果應該在相關聯處理序終止時引發 <see cref=\"E:System.Diagnostics.Process.Exited\" /> 事件 (經由結束或呼叫 <see cref=\"M:System.Diagnostics.Process.Kill\" />)，則為 true，否則為 false。預設為 false。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.EnterDebugMode\">\r\n      <summary>啟用目前執行緒上的原生屬性 SeDebugPrivilege，將 <see cref=\"T:System.Diagnostics.Process\" /> 元件置於某種狀態，以便與使用特殊模式執行的作業系統處理序互動。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.ErrorDataReceived\">\r\n      <summary>發生於應用程式寫入至其重新導向的 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 資料流時。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitCode\">\r\n      <summary>取得相關處理序終止時指定的值。</summary>\r\n      <returns>相關處理序終止時指定的程式碼。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has not exited.-or- The process <see cref=\"P:System.Diagnostics.Process.Handle\" /> is not valid. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitCode\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.Exited\">\r\n      <summary>發生於處理序結束時。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitTime\">\r\n      <summary>取得相關的處理序結束的時間。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.DateTime\" />，表示相關聯處理序何時終止。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetCurrentProcess\">\r\n      <summary>取得新的 <see cref=\"T:System.Diagnostics.Process\" /> 元件，並將其與目前現用處理序相關聯。</summary>\r\n      <returns>新的 <see cref=\"T:System.Diagnostics.Process\" /> 元件，與正在執行呼叫應用程式的處理序資源相關聯。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32)\">\r\n      <summary>傳回新的 <see cref=\"T:System.Diagnostics.Process\" /> 元件，需指定本機電腦上的處理序識別項。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 元件，與 <paramref name=\"processId\" /> 參數所識別的本機處理序資源相關聯。</returns>\r\n      <param name=\"processId\">處理序資源的系統唯一識別項。</param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)\">\r\n      <summary>傳回新的 <see cref=\"T:System.Diagnostics.Process\" /> 元件，需指定網路上電腦的處理序識別項和名稱。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 元件，與 <paramref name=\"processId\" /> 參數所識別的遠端處理序資源相關聯。</returns>\r\n      <param name=\"processId\">處理序資源的系統唯一識別項。</param>\r\n      <param name=\"machineName\">網路上的電腦名稱。</param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.-or- The <paramref name=\"machineName\" /> parameter syntax is invalid.The name might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses\">\r\n      <summary>為本機電腦上的每個處理序資源建立新的 <see cref=\"T:System.Diagnostics.Process\" /> 元件。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 類型的陣列，代表正在本機電腦上執行的所有處理序資源。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses(System.String)\">\r\n      <summary>為指定電腦上的每個處理序資源建立新的 <see cref=\"T:System.Diagnostics.Process\" /> 元件。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 類型的陣列，代表正在指定的電腦上執行的所有處理序資源。</returns>\r\n      <param name=\"machineName\">要讀取處理序清單的電腦。</param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String)\">\r\n      <summary>建立新 <see cref=\"T:System.Diagnostics.Process\" /> 元件的陣列，並將其與本機電腦上共用指定處理序名稱的所有處理序資源相關聯。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 類型的陣列，代表正在執行指定的應用程式或檔案的處理序資源。</returns>\r\n      <param name=\"processName\">處理序的易記名稱。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)\">\r\n      <summary>建立新 <see cref=\"T:System.Diagnostics.Process\" /> 元件的陣列，並將其與遠端電腦上共用指定處理序名稱的所有處理序資源相關聯。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 類型的陣列，代表正在執行指定的應用程式或檔案的處理序資源。</returns>\r\n      <param name=\"processName\">處理序的易記名稱。</param>\r\n      <param name=\"machineName\">網路上的電腦名稱。</param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.HasExited\">\r\n      <summary>取得值，指出相關的處理序是否已經終止。</summary>\r\n      <returns>如果 <see cref=\"T:System.Diagnostics.Process\" /> 元件所參考的作業系統處理序已終止，則為 true，否則為 false。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with the object. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The exit code for the process could not be retrieved. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.HasExited\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Id\">\r\n      <summary>取得相關處理序的唯一識別項。</summary>\r\n      <returns>這個 <see cref=\"T:System.Diagnostics.Process\" /> 執行個體所參考的處理序之系統產生的唯一識別項。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process's <see cref=\"P:System.Diagnostics.Process.Id\" /> property has not been set.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Kill\">\r\n      <summary>立即停止相關的處理序。</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to call <see cref=\"M:System.Diagnostics.Process.Kill\" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has already exited. -or-There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.LeaveDebugMode\">\r\n      <summary>讓 <see cref=\"T:System.Diagnostics.Process\" /> 元件離開可與使用特殊模式執行的作業系統處理序互動的狀態。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MachineName\">\r\n      <summary>取得相關處理序正在執行的所在電腦的名稱。</summary>\r\n      <returns>相關處理序正在執行的所在電腦的名稱。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MainModule\">\r\n      <summary>取得相關處理序的主要模組。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" />，用來啟動處理序。</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MainModule\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A 32-bit process is trying to access the modules of a 64-bit process.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MaxWorkingSet\">\r\n      <summary>取得或設定相關處理序的允許工作集 (Working Set) 大小的上限。</summary>\r\n      <returns>處理序所需記憶體中工作集大小的最大值，以位元組 (Byte) 為單位。</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MaxWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MinWorkingSet\">\r\n      <summary>取得或設定相關處理序的最小允許工作集大小。</summary>\r\n      <returns>處理序所需記憶體中工作集大小的最小值，以位元組 (Byte) 為單位。</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MinWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Modules\">\r\n      <summary>取得相關的處理序所載入的模組。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> 類型的陣列，代表相關聯處理序所載入的模組。</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for either the system process or the idle process.These processes do not have modules.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.NonpagedSystemMemorySize64\">\r\n      <summary>取得配置給關聯處理序的未分頁系統記憶體量。</summary>\r\n      <returns>配置給關聯處理序的系統記憶體量 (以位元組為單位)，不能寫入虛擬記憶體分頁檔案。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.OnExited\">\r\n      <summary>引發 <see cref=\"E:System.Diagnostics.Process.Exited\" /> 事件。</summary>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.OutputDataReceived\">\r\n      <summary>發生於應用程式將某行寫入至其重新導向的 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 資料流時。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedMemorySize64\">\r\n      <summary>取得配置給關聯處理序的分頁記憶體量。</summary>\r\n      <returns>虛擬記憶體分頁檔案中，配置給關聯處理序的記憶體量 (以位元組為單位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedSystemMemorySize64\">\r\n      <summary>取得配置給關聯處理序的可分頁系統記憶體量。</summary>\r\n      <returns>配置給關聯處理序的系統記憶體量 (以位元組為單位)，可以寫入虛擬記憶體分頁檔案。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakPagedMemorySize64\">\r\n      <summary>取得關聯處理序所使用之虛擬記憶體分頁檔的最大記憶體量。</summary>\r\n      <returns>虛擬記憶體分頁檔案中，從啟動以來配置給關聯處理序的最大記憶體量 (以位元組為單位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakVirtualMemorySize64\">\r\n      <summary>取得關聯處理序所使用的最大虛擬記憶體量。</summary>\r\n      <returns>從啟動以來配置給關聯處理序的最大虛擬記憶體量 (以位元組為單位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakWorkingSet64\">\r\n      <summary>取得關聯處理序所使用最大實體記憶體量。</summary>\r\n      <returns>從啟動以來配置給關聯處理序的最大實體記憶體量 (以位元組為單位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityBoostEnabled\">\r\n      <summary>取得或設定值，指出作業系統是否應該在主視窗有焦點 (Focus) 時，暫時提高相關的處理序優先權。</summary>\r\n      <returns>當處理序離開等候狀態時，如果應動態提高處理序優先權，則為 true，否則為 false。預設為 false。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Priority boost information could not be retrieved from the associated process resource. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityBoostEnabled\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityClass\">\r\n      <summary>取得或設定相關處理序的整體優先權分類。</summary>\r\n      <returns>相關聯處理序的優先權分類，處理序的 <see cref=\"P:System.Diagnostics.Process.BasePriority\" /> 由此計算出來。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">You have set the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>\r\n      <exception cref=\"T:System.ComponentModel.InvalidEnumArgumentException\">Priority class cannot be set because it does not use a valid value, as defined in the <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> enumeration.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivateMemorySize64\">\r\n      <summary>取得配置給關聯處理序的私用記憶體量。</summary>\r\n      <returns>配置給關聯處理序的記憶體量 (以位元組為單位)，不能與其他處理序共用。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\">\r\n      <summary>取得這個處理序使用處理器的授權時間。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" />，表示處理序在作業系統核心內執行程式碼所花費的時間。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessName\">\r\n      <summary>取得處理序的名稱。</summary>\r\n      <returns>名稱，系統用來向使用者識別處理序。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process does not have an identifier, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" />.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is not on this computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessorAffinity\">\r\n      <summary>取得或設定處理器，這個處理序中的執行緒可以在其上排程執行。</summary>\r\n      <returns>位元遮罩，表示相關的處理序中的執行緒可以在其上執行的處理器。預設值取決於電腦上的處理器數目。預設值為 2 n -1，其中的 n 是處理器的數目。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> was not available.-or- The process has exited. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Refresh\">\r\n      <summary>捨棄快取於處理序元件內之相關處理序的任何資訊。</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SafeHandle\">\r\n      <summary>取得這個處理序的原生控制代碼。</summary>\r\n      <returns>這個處理序的原生控制代碼。</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SessionId\">\r\n      <summary>取得相關處理序的終端機服務工作階段識別項。</summary>\r\n      <returns>相關處理序的終端機服務工作階段識別項。</returns>\r\n      <exception cref=\"T:System.NullReferenceException\">There is no session associated with this process.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The <see cref=\"P:System.Diagnostics.Process.SessionId\" /> property is not supported on Windows 98.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardError\">\r\n      <summary>取得用來讀取應用程式錯誤輸出的資料流。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IO.StreamReader\" />，可用來讀取應用程式的標準錯誤資料流。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginErrorReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardInput\">\r\n      <summary>取得用來寫入應用程式輸入的資料流。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IO.StreamWriter\" />，可用來寫入應用程式的標準輸入資料流。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> stream has not been defined because <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" /> is set to false. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardOutput\">\r\n      <summary>取得用來讀取應用程式文字輸出的資料流。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IO.StreamReader\" />，可用來讀取應用程式的標準輸出資料流。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginOutputReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start\">\r\n      <summary>啟動 (或重複使用) 這個 <see cref=\"T:System.Diagnostics.Process\" /> 元件的 <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> 屬性指定的處理序資源，並將其與元件相關聯。</summary>\r\n      <returns>如果啟動處理序資源，則為 true；如果沒有啟動任何新的處理序資源 (例如，如果重複使用現有的處理序)，則為 false。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <see cref=\"T:System.Diagnostics.Process\" /> component's <see cref=\"P:System.Diagnostics.Process.StartInfo\" />.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> member of the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> property is true while <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is true. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)\">\r\n      <summary>啟動含有處理序啟動資訊 (例如，要啟動之處理序的檔名) 的參數所指定的處理序資源，並將該資源與新的 <see cref=\"T:System.Diagnostics.Process\" /> 元件相關聯。</summary>\r\n      <returns>與處理程序資源關聯的新 <see cref=\"T:System.Diagnostics.Process\" />，或者是 null (若未啟動任何處理程序資源)。請注意，隨著已在執行中之相同處理程序啟動的新處理程序將獨立於其他處理程序之外。此外，啟動可能會傳回非空值處理程序，且其 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 屬性會設定為 true。在此案例中，已啟動的處理程序可能已啟用本身的現有執行個體並結束。</returns>\r\n      <param name=\"startInfo\">\r\n        <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />，包含用來啟動處理序的資訊，包括檔名和任何命令列引數。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is also true.-or-The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UserName\" /> property is not null or empty or the <see cref=\"P:System.Diagnostics.ProcessStartInfo.Password\" /> property is not null.</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"startInfo\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The file specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property could not be found.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String)\">\r\n      <summary>藉由指定文件或應用程式檔案的名稱啟動處理序資源，並將該資源與新的 <see cref=\"T:System.Diagnostics.Process\" /> 元件相關聯。</summary>\r\n      <returns>與處理程序資源關聯的新 <see cref=\"T:System.Diagnostics.Process\" />，或者是 null (若未啟動任何處理程序資源)。請注意，隨著已在執行中之相同處理程序啟動的新處理程序將獨立於其他處理程序之外。此外，啟動可能會傳回非空值處理程序，且其 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 屬性會設定為 true。在此案例中，已啟動的處理程序可能已啟用本身的現有執行個體並結束。</returns>\r\n      <param name=\"fileName\">要在處理序中執行之文件或應用程式檔案的名稱。</param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String)\">\r\n      <summary>藉由指定應用程式的名稱和一組命令列引數來啟動處理序資源，並將該資源與新的 <see cref=\"T:System.Diagnostics.Process\" /> 元件相關聯。</summary>\r\n      <returns>與處理程序資源關聯的新 <see cref=\"T:System.Diagnostics.Process\" />，或者是 null (若未啟動任何處理程序資源)。請注意，隨著已在執行中之相同處理程序啟動的新處理程序將獨立於其他處理程序之外。此外，啟動可能會傳回非空值處理程序，且其 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 屬性會設定為 true。在此案例中，已啟動的處理程序可能已啟用本身的現有執行個體並結束。</returns>\r\n      <param name=\"fileName\">要在處理序中執行之應用程式檔案的名稱。</param>\r\n      <param name=\"arguments\">啟動處理程序時要傳遞的命令列引數。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <paramref name=\"fileName\" /> or <paramref name=\"arguments\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>藉由指定應用程式的名稱、使用者名稱、密碼和網域來啟動處理序資源，並將該資源與新的 <see cref=\"T:System.Diagnostics.Process\" /> 元件相關聯。</summary>\r\n      <returns>與處理程序資源關聯的新 <see cref=\"T:System.Diagnostics.Process\" />，或者是 null (若未啟動任何處理程序資源)。請注意，隨著已在執行中之相同處理程序啟動的新處理程序將獨立於其他處理程序之外。此外，啟動可能會傳回非空值處理程序，且其 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 屬性會設定為 true。在此案例中，已啟動的處理程序可能已啟用本身的現有執行個體並結束。</returns>\r\n      <param name=\"fileName\">要在處理序中執行之應用程式檔案的名稱。</param>\r\n      <param name=\"userName\">要在啟動處理序時使用的使用者名稱。</param>\r\n      <param name=\"password\">\r\n        <see cref=\"T:System.Security.SecureString\" />，包含啟動處理序時要使用的密碼。</param>\r\n      <param name=\"domain\">要在啟動處理序時使用的網域。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>藉由指定應用程式的名稱、一組命令列引數、使用者名稱、密碼和網域來啟動處理序資源，並將該資源與新的 <see cref=\"T:System.Diagnostics.Process\" /> 元件相關聯。</summary>\r\n      <returns>與處理程序資源關聯的新 <see cref=\"T:System.Diagnostics.Process\" />，或者是 null (若未啟動任何處理程序資源)。請注意，隨著已在執行中之相同處理程序啟動的新處理程序將獨立於其他處理程序之外。此外，啟動可能會傳回非空值處理程序，且其 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 屬性會設定為 true。在此案例中，已啟動的處理程序可能已啟用本身的現有執行個體並結束。</returns>\r\n      <param name=\"fileName\">要在處理序中執行之應用程式檔案的名稱。</param>\r\n      <param name=\"arguments\">啟動處理程序時要傳遞的命令列引數。</param>\r\n      <param name=\"userName\">要在啟動處理序時使用的使用者名稱。</param>\r\n      <param name=\"password\">\r\n        <see cref=\"T:System.Security.SecureString\" />，包含啟動處理序時要使用的密碼。</param>\r\n      <param name=\"domain\">要在啟動處理序時使用的網域。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartInfo\">\r\n      <summary>取得或設定要傳遞給 <see cref=\"T:System.Diagnostics.Process\" /> 之 <see cref=\"M:System.Diagnostics.Process.Start\" /> 方法的屬性。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />，代表用來啟動處理序的資料。這些引數包括用來啟動處理序的可執行檔或文件的名稱。</returns>\r\n      <exception cref=\"T:System.ArgumentNullException\">The value that specifies the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> is null. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartTime\">\r\n      <summary>取得相關的處理序啟動的時間。</summary>\r\n      <returns>物件，指出處理序何時啟動。如果處理序並未執行，則會擲回例外狀況。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.StartTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or-The process has not been started.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred in the call to the Windows function.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Threads\">\r\n      <summary>取得正在相關的處理序中執行的執行緒集。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> 類型的陣列，代表目前正在相關聯處理序中執行的作業系統執行緒。</returns>\r\n      <exception cref=\"T:System.SystemException\">The process does not have an <see cref=\"P:System.Diagnostics.Process.Id\" />, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" /> instance.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.TotalProcessorTime\">\r\n      <summary>取得這個處理序的總處理器時間。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" />，表示相關聯處理序花在使用 CPU 的時間。這個值是 <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> 和 <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> 的總和。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.TotalProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.UserProcessorTime\">\r\n      <summary>取得這個處理序的使用者處理器時間。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" />，表示相關聯處理序花在處理序的應用程式部分內 (而不是在作業系統核心內) 執行程式碼的時間。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.VirtualMemorySize64\">\r\n      <summary>取得配置給關聯處理序的虛擬記憶體量。</summary>\r\n      <returns>配置給關聯處理序的虛擬記憶體量，以位元組為單位。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit\">\r\n      <summary>指示 <see cref=\"T:System.Diagnostics.Process\" /> 元件無限期等候相關聯處理序結束。</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\">\r\n      <summary>指示 <see cref=\"T:System.Diagnostics.Process\" /> 元件等候相關聯處理序結束的指定毫秒數。</summary>\r\n      <returns>如果相關聯處理序已結束，則為 true，否則為 false。</returns>\r\n      <param name=\"milliseconds\">等候相關的處理序結束的時間量，以毫秒計算。最大值是 32 位元整數的最大可能值，對作業系統來說，這表示無限。</param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.WorkingSet64\">\r\n      <summary>取得配置給關聯處理序的實體記憶體量。</summary>\r\n      <returns>配置給關聯處理序的實體記憶體量，以位元組為單位。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModule\">\r\n      <summary>表示載入至特定處理序的 .dll 或 .exe 檔。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.BaseAddress\">\r\n      <summary>取得模組載入的記憶體位址。</summary>\r\n      <returns>模組的載入位址。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.EntryPointAddress\">\r\n      <summary>取得系統載入和執行模組時所執行的函式記憶體位址。</summary>\r\n      <returns>模組的進入點 (Entry Point)。</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.FileName\">\r\n      <summary>取得通往模組的完整路徑。</summary>\r\n      <returns>完整路徑，定義模組的位置。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleMemorySize\">\r\n      <summary>取得載入模組所需的記憶體數量。</summary>\r\n      <returns>模組所佔有的記憶體大小 (以位元組為單位)。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleName\">\r\n      <summary>取得處理序模組的名稱。</summary>\r\n      <returns>模組名稱。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModule.ToString\">\r\n      <summary>將模組名稱轉換為字串。</summary>\r\n      <returns>\r\n        <see cref=\"P:System.Diagnostics.ProcessModule.ModuleName\" /> 屬性的值。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModuleCollection\">\r\n      <summary>提供 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 物件的強型別 (Strongly Typed) 集合。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor\">\r\n      <summary>不使用相關的 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 執行個體，初始化 <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 類別的新執行個體。</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])\">\r\n      <summary>使用 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 執行個體指定的陣列，初始化 <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 類別的新執行個體。</summary>\r\n      <param name=\"processModules\">\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> 執行個體的陣列，用來初始化這個 <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 執行個體。</param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)\">\r\n      <summary>判斷指定的處理序模組是否在集合中。</summary>\r\n      <returns>如果模組在集合中，則為 true，否則為 false。</returns>\r\n      <param name=\"module\">\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> 執行個體，表示要在這個集合中搜尋的模組。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)\">\r\n      <summary>將 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 執行個體的陣列複製至集合的指定索引位置。</summary>\r\n      <param name=\"array\">要加入至集合的 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 執行個體的陣列。</param>\r\n      <param name=\"index\">要加入新執行個體的所在位置。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)\">\r\n      <summary>提供指定模組在集合中的位置。</summary>\r\n      <returns>以零起始的索引，定義模組在 <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 中的位置。</returns>\r\n      <param name=\"module\">\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" />，其索引已擷取。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)\">\r\n      <summary>取得逐一查看處理序 (Process) 模組集的索引。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" />，建立集合的模組索引。</returns>\r\n      <param name=\"index\">集合中模組的以零起始的索引值。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ProcessPriorityClass\">\r\n      <summary>表示系統與處理序 (Process) 關聯的優先權。這個值與處理序每個執行緒的優先權值會判斷每個執行緒的基礎優先權層級。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.AboveNormal\">\r\n      <summary>指定處理序具有高於 Normal 但低於 <see cref=\"F:System.Diagnostics.ProcessPriorityClass.High\" /> 的優先權。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.BelowNormal\">\r\n      <summary>指定處理序具有高於 Idle 但低於 Normal 的優先權。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.High\">\r\n      <summary>指定處理序執行必須立即執行的時間緊急工作，例如 Task List 對話方塊，而這項工作必須在使用者呼叫時迅速回應，而不管作業系統上的載入。該處理序的執行緒會優先於正常或閒置優先權類別處理序的執行緒。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Idle\">\r\n      <summary>指定這個處理序的執行緒只於系統閒置時執行，例如螢幕保護程式。該處理序之執行緒會由任何具有較高優先權類別的處理序之執行緒優先佔用。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Normal\">\r\n      <summary>指定處理序不需特別的排程。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.RealTime\">\r\n      <summary>指定處理序具有最高的可能優先權。</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessStartInfo\">\r\n      <summary>指定一組啟動處理序時所使用的值。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor\">\r\n      <summary>不指定用來啟動處理序的檔案名稱，初始化 <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> 類別的新執行個體。</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)\">\r\n      <summary>初始化 <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> 類別的新執行個體，並指定用來啟動處理序的檔案名稱 (例如應用程式或文件)。</summary>\r\n      <param name=\"fileName\">用來啟動處理序的應用程式或文件。</param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)\">\r\n      <summary>初始化 <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> 類別的新執行個體，並指定用來啟動處理序的應用程式檔案名稱，以及指定要傳遞至應用程式的命令列引數集。</summary>\r\n      <param name=\"fileName\">用來啟動處理序的應用程式。</param>\r\n      <param name=\"arguments\">要在處理序啟動時傳遞至應用程式的命令列引數。</param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Arguments\">\r\n      <summary>取得或設定啟動應用程式時要使用的命令列引數集。</summary>\r\n      <returns>單一字串，包含要傳遞至 <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> 屬性中所指定之目標應用程式的引數。預設為空字串 (\"\")。在 Windows Vista 及較早版本的 Windows 作業系統上，加入處理序之完整路徑長度的引數長度必須小於 2080。在 Windows 7 及更新版本中，長度必須小於 32699。引數會由目標應用程式剖析及解譯，因此必須配合該應用程式的期望。針對下列範例所示的 .NET 應用程式，空格會解譯為多個引數之間的分隔符號。您必須以引號括住含有空格的單一引數，但這些引號不會傳送至目標應用程式。在最後剖析之引數所包含的引號中，三重逸出 (Triple-Escape) 每個標記。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.CreateNoWindow\">\r\n      <summary>取得或設定值，表示是否要在新視窗中啟動處理序。</summary>\r\n      <returns>如果應該啟動處理序而不建立要包含處理序的新視窗，則為 true，否則為 false。預設為 false。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Domain\">\r\n      <summary>取得或設定值，識別在啟動處理序時要使用的網域。</summary>\r\n      <returns>啟動處理序時要使用的 Active Directory 網域。網域屬性主要是對使用 Active Directory 之企業環境內的使用者有利。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Environment\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.FileName\">\r\n      <summary>取得或設定要啟動的應用程式或文件。</summary>\r\n      <returns>要啟動的應用程式名稱，或是與應用程式相關聯且具有可用預設開啟動作之檔案類型的文件名稱。預設為空字串 (\"\")。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.LoadUserProfile\">\r\n      <summary>取得或設定值，表示是否要從登錄載入 Windows 使用者設定檔。</summary>\r\n      <returns>如果應該載入 Windows 使用者設定檔，則為 true，否則為 false。預設為 false。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Password\">\r\n      <summary>取得或設定安全字串，其中包含啟動處理序時要使用的使用者密碼。</summary>\r\n      <returns>要在啟動處理序時使用的使用者密碼。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\">\r\n      <summary>取得或設定值，表示應用程式的錯誤輸出是否寫入至 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 資料流。</summary>\r\n      <returns>如果錯誤輸出應該寫入至 <see cref=\"P:System.Diagnostics.Process.StandardError\" />，則為 true，否則為 false。預設為 false。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\">\r\n      <summary>取得或設定值，表示應用程式的輸入是否從 <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> 資料流讀取。</summary>\r\n      <returns>如果應該從 <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> 讀取輸入，則為 true，否則為false。預設為 false。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\">\r\n      <summary>取得或設定值，表示應用程式的文字輸出是否寫入至 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 資料流。</summary>\r\n      <returns>如果輸出應該寫入至 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />，則為 true，否則為 false。預設為 false。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding\">\r\n      <summary>取得或設定錯誤輸出的慣用編碼。</summary>\r\n      <returns>物件，代表錯誤輸出的慣用編碼。預設為 null。</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding\">\r\n      <summary>取得或設定標準輸出的慣用編碼。</summary>\r\n      <returns>物件，代表標準輸出的慣用編碼。預設為 null。</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UserName\">\r\n      <summary>取得或設定要在啟動處理序時使用的使用者名稱。</summary>\r\n      <returns>要在啟動處理序時使用的使用者名稱。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\">\r\n      <summary>取得或設定值，表示是否要使用作業系統 Shell 來啟動處理序。</summary>\r\n      <returns>如果在啟動處理序時使用 Shell，則為 true；如果處理序應直接從可執行檔建立，則為 false。預設為 true。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.WorkingDirectory\">\r\n      <summary>當 <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> 屬性為 false 時，取得或設定要啟動之處理序的工作目錄。當 <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> 為 true 時，取得或設定包含要啟動之處理序的目錄。</summary>\r\n      <returns>如果 <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> 為 true，則為包含要啟動之處理序的目錄完整名稱。當 <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> 屬性為 false 時，則為要啟動之處理序的工作目錄。預設為空字串 (\"\")。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThread\">\r\n      <summary>表示作業系統處理序 (Process) 執行緒。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.BasePriority\">\r\n      <summary>取得執行緒的基礎優先權 (Base Priority)。</summary>\r\n      <returns>執行緒的基礎優先權，由作業系統結合處理序的優先權類別和相關執行緒的優先權層級計算所得。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.CurrentPriority\">\r\n      <summary>取得執行緒的目前優先權。</summary>\r\n      <returns>執行緒目前的優先權，可能與基礎優先權 (根據作業系統如何排程執行緒) 不符合。針對作用中的執行緒，可能暫時提高優先權。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.Id\">\r\n      <summary>取得執行緒的唯一識別項。</summary>\r\n      <returns>與特定執行緒相關的唯一識別項。</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.IdealProcessor\">\r\n      <summary>設定執行這個執行緒的慣用處理器。</summary>\r\n      <returns>執行緒的慣用處理器，用於系統排程執行緒時，以判斷執行執行緒所在的處理器。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">系統無法設定在指定的處理器上啟動執行緒。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台為 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">處理序位於遠端電腦上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityBoostEnabled\">\r\n      <summary>取得或設定數值，表示每當執行緒的處理序之主視窗接收到焦點 (Focus) 時，作業系統是否應該暫時提高相關執行緒的優先權。</summary>\r\n      <returns>若要在使用者與處理序的介面互動時，提高執行緒的優先權，則為 true，否則為 false。預設為 false。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">無法擷取優先權提高資訊。-或-無法設定優先權提高資訊。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台為 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">處理序位於遠端電腦上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityLevel\">\r\n      <summary>取得或設定執行緒的優先權層級。</summary>\r\n      <returns>其中一個 <see cref=\"T:System.Diagnostics.ThreadPriorityLevel\" /> 值，指定限定執行緒優先權的範圍。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">無法擷取執行緒優先權層級資訊。-或-無法設定執行緒優先權層級。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台為 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">處理序位於遠端電腦上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime\">\r\n      <summary>取得執行緒在作業系統核心中執行程式碼所耗用的時間量。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" />，表示執行緒在作業系統核心中執行程式碼所耗用的時間量。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">無法擷取執行緒時間。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台為 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">處理序位於遠端電腦上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ProcessorAffinity\">\r\n      <summary>設定可以執行相關執行緒的處理器。</summary>\r\n      <returns>指向一組位元的 <see cref=\"T:System.IntPtr\" />，其中每個位元表示執行緒可以在其上執行的處理器。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">處理序相似性不能被設定。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台為 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">處理序位於遠端電腦上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThread.ResetIdealProcessor\">\r\n      <summary>重設這個執行緒的理想處理器，以指示沒有一個的理想處理器。換句話說，沒有任何處理器是理想的。</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">無法重設理想處理器。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台為 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">處理序位於遠端電腦上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartAddress\">\r\n      <summary>取得作業系統啟動這個執行緒所呼叫之函式的記憶體位址。</summary>\r\n      <returns>執行緒的起始位址，指向執行緒執行之應用程式定義的函式。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台為 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">處理序位於遠端電腦上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartTime\">\r\n      <summary>取得作業系統啟動執行緒的時間。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.DateTime\" />，表示當作業系統啟動執行緒時的系統時間。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">無法擷取執行緒時間。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台為 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">處理序位於遠端電腦上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ThreadState\">\r\n      <summary>取得這個執行緒目前的狀態。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ThreadState\" />，表示執行緒的執行，例如，執行中、等候中或終止。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台為 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">處理序位於遠端電腦上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.TotalProcessorTime\">\r\n      <summary>取得這個執行緒使用處理器所耗用的總時間量。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" />，表示執行緒已控制處理器的時間量。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">無法擷取執行緒時間。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台為 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">處理序位於遠端電腦上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.UserProcessorTime\">\r\n      <summary>取得相關執行緒在應用程式內部執行程式碼所耗用的時間量。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" />，表示執行緒在應用程式內部 (相對於在作業系統核心中) 執行程式碼所耗用的時間量。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">無法擷取執行緒時間。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台為 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">處理序位於遠端電腦上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.WaitReason\">\r\n      <summary>取得執行緒正在等候的原因。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ThreadWaitReason\" />，表示執行緒在等候狀態的原因。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">執行緒不在等候狀態。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台為 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">處理序位於遠端電腦上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThreadCollection\">\r\n      <summary>提供 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 物件的強型別 (Strongly Typed) 集合。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor\">\r\n      <summary>不使用相關的 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 執行個體，初始化 <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 類別的新執行個體。</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])\">\r\n      <summary>使用 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 執行個體指定的陣列，初始化 <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 類別的新執行個體。</summary>\r\n      <param name=\"processThreads\">\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> 執行個體的陣列，用來初始化這個 <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 執行個體。</param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)\">\r\n      <summary>將處理序執行緒附加至集合。</summary>\r\n      <returns>集合中執行緒之以零起始的索引。</returns>\r\n      <param name=\"thread\">要加入至集合的執行緒。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)\">\r\n      <summary>判斷指定的處理序執行緒是否在集合中。</summary>\r\n      <returns>如果執行緒在集合中，則為 true，否則為 false。</returns>\r\n      <param name=\"thread\">\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> 執行個體，表示要在這個集合中搜尋的執行緒。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)\">\r\n      <summary>將 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 執行個體的陣列複製至集合的指定索引位置。</summary>\r\n      <param name=\"array\">要加入至集合的 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 執行個體的陣列。</param>\r\n      <param name=\"index\">要加入新執行個體的所在位置。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)\">\r\n      <summary>提供指定執行緒在集合中的位置。</summary>\r\n      <returns>以零起始的索引，定義執行緒在 <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 中的位置。</returns>\r\n      <param name=\"thread\">\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" />，其索引已擷取。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)\">\r\n      <summary>將處理序執行緒插入於集合中的指定位置。</summary>\r\n      <param name=\"index\">以零起始的索引，表示要插入執行緒的所在位置。</param>\r\n      <param name=\"thread\">要插入至集合的執行緒。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)\">\r\n      <summary>取得逐一查看處理序 (Process) 執行緒集的索引。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" />，建立集合的執行緒索引。</returns>\r\n      <param name=\"index\">集合中執行緒的以零起始的索引值。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)\">\r\n      <summary>從集合刪除處理序執行緒。</summary>\r\n      <param name=\"thread\">要從集合移除的執行緒。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ThreadPriorityLevel\">\r\n      <summary>指定執行緒的優先權層級。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.AboveNormal\">\r\n      <summary>指定相關 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的高於一般優先權一級的優先權。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.BelowNormal\">\r\n      <summary>指定相關 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的低於一般優先權一級的優先權。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Highest\">\r\n      <summary>指定最高優先權。這是相關 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的高於一般優先權兩級的優先權。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Idle\">\r\n      <summary>指定閒置優先權。這是所有執行緒的最低可能優先權值，與相關 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的值無關。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Lowest\">\r\n      <summary>指定最低優先權。這是相關 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的低於一般優先權兩級的優先權。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Normal\">\r\n      <summary>指定相關 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的一般優先權。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.TimeCritical\">\r\n      <summary>指定時間關鍵 (Time Critical) 優先權。這是所有執行緒的最高優先權，與相關 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的值無關。</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadState\">\r\n      <summary>指定執行緒的目前執行狀態。</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Initialized\">\r\n      <summary>指示執行緒已經初始化，但尚未啟動的狀態。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Ready\">\r\n      <summary>該狀態指示沒有可用的處理器，所以執行緒正在等待以使用處理器。執行緒準備在下一個可用的處理器上執行。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Running\">\r\n      <summary>該狀態指示執行緒目前正在使用處理器。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Standby\">\r\n      <summary>該狀態指示執行緒正要使用處理器。一次只能有一個執行緒可以處於這個狀態。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Terminated\">\r\n      <summary>該狀態指示執行緒已經執行完成並離開。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Transition\">\r\n      <summary>該狀態指示執行緒在可以執行之前正在等待資源，而不是等待處理器。例如，它可能正在等待其執行堆疊從磁碟分頁進來。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Unknown\">\r\n      <summary>執行緒的狀態不明。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Wait\">\r\n      <summary>該狀態指示執行緒尚未準備使用處理器，因為它正在等待要完成的週邊作業或可以使用的資源。執行緒會在備妥時重新排程。</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadWaitReason\">\r\n      <summary>指定執行緒正在等待的原因。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairHigh\">\r\n      <summary>執行緒正在等待 Event Pair High。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairLow\">\r\n      <summary>執行緒正在等待 Event Pair Low。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.ExecutionDelay\">\r\n      <summary>執行緒的執行受延遲。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Executive\">\r\n      <summary>執行緒正在等待排程器。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.FreePage\">\r\n      <summary>執行緒正在等待可用的虛擬記憶體分頁。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReceive\">\r\n      <summary>執行緒正在等待本機程序呼叫到達。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReply\">\r\n      <summary>執行緒正在等待對本機程序呼叫的回應到達。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageIn\">\r\n      <summary>執行緒正在等待虛擬記憶體分頁到達記憶體。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageOut\">\r\n      <summary>執行緒正在等待虛擬記憶體分頁寫入至磁碟。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Suspended\">\r\n      <summary>執行緒的執行受暫止。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.SystemAllocation\">\r\n      <summary>執行緒正在等待系統配置。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Unknown\">\r\n      <summary>執行緒正在等待不明原因。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.UserRequest\">\r\n      <summary>執行緒正在等待使用者要求。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.VirtualMemory\">\r\n      <summary>執行緒正在等待系統配置虛擬記憶體。</summary>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/System.Diagnostics.Process.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<doc>\r\n  <assembly>\r\n    <name>System.Diagnostics.Process</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\">\r\n      <summary>[SECURITY CRITICAL] Provides a managed wrapper for a process handle.</summary>\r\n    </member>\r\n    <member name=\"M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)\">\r\n      <summary>[SECURITY CRITICAL] Initializes a new instance of the <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> class from the specified handle, indicating whether to release the handle during the finalization phase. </summary>\r\n      <param name=\"existingHandle\">The handle to be wrapped.</param>\r\n      <param name=\"ownsHandle\">true to reliably let <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> release the handle during the finalization phase; otherwise, false.</param>\r\n    </member>\r\n    <member name=\"P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid\"></member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventArgs\">\r\n      <summary>Provides data for the <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> and <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> events.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.DataReceivedEventArgs.Data\">\r\n      <summary>Gets the line of characters that was written to a redirected <see cref=\"T:System.Diagnostics.Process\" /> output stream.</summary>\r\n      <returns>The line that was written by an associated <see cref=\"T:System.Diagnostics.Process\" /> to its redirected <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> or <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventHandler\">\r\n      <summary>Represents the method that will handle the <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> event or <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> event of a <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <param name=\"sender\">The source of the event. </param>\r\n      <param name=\"e\">A <see cref=\"T:System.Diagnostics.DataReceivedEventArgs\" /> that contains the event data. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.Process\">\r\n      <summary>Provides access to local and remote processes and enables you to start and stop local system processes.To browse the .NET Framework source code for this type, see the Reference Source.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.#ctor\">\r\n      <summary>Initializes a new instance of the <see cref=\"T:System.Diagnostics.Process\" /> class.</summary>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.BasePriority\">\r\n      <summary>Gets the base priority of the associated process.</summary>\r\n      <returns>The base priority, which is computed from the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> of the associated process.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or- The process has not started, so there is no process ID. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginErrorReadLine\">\r\n      <summary>Begins asynchronous read operations on the redirected <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream of the application.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginOutputReadLine\">\r\n      <summary>Begins asynchronous read operations on the redirected <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream of the application.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelErrorRead\">\r\n      <summary>Cancels the asynchronous read operation on the redirected <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream of an application.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelOutputRead\">\r\n      <summary>Cancels the asynchronous read operation on the redirected <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream of an application.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose\"></member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose(System.Boolean)\">\r\n      <summary>Release all resources used by this process.</summary>\r\n      <param name=\"disposing\">true to release both managed and unmanaged resources; false to release only unmanaged resources. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.EnableRaisingEvents\">\r\n      <summary>Gets or sets whether the <see cref=\"E:System.Diagnostics.Process.Exited\" /> event should be raised when the process terminates.</summary>\r\n      <returns>true if the <see cref=\"E:System.Diagnostics.Process.Exited\" /> event should be raised when the associated process is terminated (through either an exit or a call to <see cref=\"M:System.Diagnostics.Process.Kill\" />); otherwise, false. The default is false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.EnterDebugMode\">\r\n      <summary>Puts a <see cref=\"T:System.Diagnostics.Process\" /> component in state to interact with operating system processes that run in a special mode by enabling the native property SeDebugPrivilege on the current thread.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.ErrorDataReceived\">\r\n      <summary>Occurs when an application writes to its redirected <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitCode\">\r\n      <summary>Gets the value that the associated process specified when it terminated.</summary>\r\n      <returns>The code that the associated process specified when it terminated.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has not exited.-or- The process <see cref=\"P:System.Diagnostics.Process.Handle\" /> is not valid. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitCode\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.Exited\">\r\n      <summary>Occurs when a process exits.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitTime\">\r\n      <summary>Gets the time that the associated process exited.</summary>\r\n      <returns>A <see cref=\"T:System.DateTime\" /> that indicates when the associated process was terminated.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitTime\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetCurrentProcess\">\r\n      <summary>Gets a new <see cref=\"T:System.Diagnostics.Process\" /> component and associates it with the currently active process.</summary>\r\n      <returns>A new <see cref=\"T:System.Diagnostics.Process\" /> component associated with the process resource that is running the calling application.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32)\">\r\n      <summary>Returns a new <see cref=\"T:System.Diagnostics.Process\" /> component, given the identifier of a process on the local computer.</summary>\r\n      <returns>A <see cref=\"T:System.Diagnostics.Process\" /> component that is associated with the local process resource identified by the <paramref name=\"processId\" /> parameter.</returns>\r\n      <param name=\"processId\">The system-unique identifier of a process resource. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running. The identifier might be expired. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)\">\r\n      <summary>Returns a new <see cref=\"T:System.Diagnostics.Process\" /> component, given a process identifier and the name of a computer on the network.</summary>\r\n      <returns>A <see cref=\"T:System.Diagnostics.Process\" /> component that is associated with a remote process resource identified by the <paramref name=\"processId\" /> parameter.</returns>\r\n      <param name=\"processId\">The system-unique identifier of a process resource. </param>\r\n      <param name=\"machineName\">The name of a computer on the network. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running. The identifier might be expired.-or- The <paramref name=\"machineName\" /> parameter syntax is invalid. The name might have length zero (0). </exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses\">\r\n      <summary>Creates a new <see cref=\"T:System.Diagnostics.Process\" /> component for each process resource on the local computer.</summary>\r\n      <returns>An array of type <see cref=\"T:System.Diagnostics.Process\" /> that represents all the process resources running on the local computer.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses(System.String)\">\r\n      <summary>Creates a new <see cref=\"T:System.Diagnostics.Process\" /> component for each process resource on the specified computer.</summary>\r\n      <returns>An array of type <see cref=\"T:System.Diagnostics.Process\" /> that represents all the process resources running on the specified computer.</returns>\r\n      <param name=\"machineName\">The computer from which to read the list of processes. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid. It might have length zero (0). </exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information. This exception is specific to Windows NT, Windows 2000, and Windows XP. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String)\">\r\n      <summary>Creates an array of new <see cref=\"T:System.Diagnostics.Process\" /> components and associates them with all the process resources on the local computer that share the specified process name.</summary>\r\n      <returns>An array of type <see cref=\"T:System.Diagnostics.Process\" /> that represents the process resources running the specified application or file.</returns>\r\n      <param name=\"processName\">The friendly name of the process. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information. This exception is specific to Windows NT, Windows 2000, and Windows XP. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)\">\r\n      <summary>Creates an array of new <see cref=\"T:System.Diagnostics.Process\" /> components and associates them with all the process resources on a remote computer that share the specified process name.</summary>\r\n      <returns>An array of type <see cref=\"T:System.Diagnostics.Process\" /> that represents the process resources running the specified application or file.</returns>\r\n      <param name=\"processName\">The friendly name of the process. </param>\r\n      <param name=\"machineName\">The name of a computer on the network. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid. It might have length zero (0). </exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information. This exception is specific to Windows NT, Windows 2000, and Windows XP. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.HasExited\">\r\n      <summary>Gets a value indicating whether the associated process has been terminated.</summary>\r\n      <returns>true if the operating system process referenced by the <see cref=\"T:System.Diagnostics.Process\" /> component has terminated; otherwise, false.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with the object. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The exit code for the process could not be retrieved. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.HasExited\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Id\">\r\n      <summary>Gets the unique identifier for the associated process.</summary>\r\n      <returns>The system-generated unique identifier of the process that is referenced by this <see cref=\"T:System.Diagnostics.Process\" /> instance.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process's <see cref=\"P:System.Diagnostics.Process.Id\" /> property has not been set.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Kill\">\r\n      <summary>Immediately stops the associated process.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to call <see cref=\"M:System.Diagnostics.Process.Kill\" /> for a process that is running on a remote computer. The method is available only for processes running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has already exited. -or-There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.LeaveDebugMode\">\r\n      <summary>Takes a <see cref=\"T:System.Diagnostics.Process\" /> component out of the state that lets it interact with operating system processes that run in a special mode.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MachineName\">\r\n      <summary>Gets the name of the computer the associated process is running on.</summary>\r\n      <returns>The name of the computer that the associated process is running on.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MainModule\">\r\n      <summary>Gets the main module for the associated process.</summary>\r\n      <returns>The <see cref=\"T:System.Diagnostics.ProcessModule\" /> that was used to start the process.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MainModule\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A 32-bit process is trying to access the modules of a 64-bit process.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MaxWorkingSet\">\r\n      <summary>Gets or sets the maximum allowable working set size for the associated process.</summary>\r\n      <returns>The maximum working set size that is allowed in memory for the process, in bytes.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The maximum working set size is invalid. It must be greater than or equal to the minimum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MaxWorkingSet\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MinWorkingSet\">\r\n      <summary>Gets or sets the minimum allowable working set size for the associated process.</summary>\r\n      <returns>The minimum working set size that is required in memory for the process, in bytes.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The minimum working set size is invalid. It must be less than or equal to the maximum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MinWorkingSet\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Modules\">\r\n      <summary>Gets the modules that have been loaded by the associated process.</summary>\r\n      <returns>An array of type <see cref=\"T:System.Diagnostics.ProcessModule\" /> that represents the modules that have been loaded by the associated process.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for either the system process or the idle process. These processes do not have modules.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.NonpagedSystemMemorySize64\">\r\n      <summary>Gets the amount of nonpaged system memory allocated for the associated process.</summary>\r\n      <returns>The amount of system memory, in bytes, allocated for the associated process that cannot be written to the virtual memory paging file.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.OnExited\">\r\n      <summary>Raises the <see cref=\"E:System.Diagnostics.Process.Exited\" /> event.</summary>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.OutputDataReceived\">\r\n      <summary>Occurs each time an application writes a line to its redirected <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedMemorySize64\">\r\n      <summary>Gets the amount of paged memory allocated for the associated process.</summary>\r\n      <returns>The amount of memory, in bytes, allocated in the virtual memory paging file for the associated process.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedSystemMemorySize64\">\r\n      <summary>Gets the amount of pageable system memory allocated for the associated process.</summary>\r\n      <returns>The amount of system memory, in bytes, allocated for the associated process that can be written to the virtual memory paging file.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakPagedMemorySize64\">\r\n      <summary>Gets the maximum amount of memory in the virtual memory paging file used by the associated process.</summary>\r\n      <returns>The maximum amount of memory, in bytes, allocated in the virtual memory paging file for the associated process since it was started.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakVirtualMemorySize64\">\r\n      <summary>Gets the maximum amount of virtual memory used by the associated process.</summary>\r\n      <returns>The maximum amount of virtual memory, in bytes, allocated for the associated process since it was started.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakWorkingSet64\">\r\n      <summary>Gets the maximum amount of physical memory used by the associated process.</summary>\r\n      <returns>The maximum amount of physical memory, in bytes, allocated for the associated process since it was started.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityBoostEnabled\">\r\n      <summary>Gets or sets a value indicating whether the associated process priority should temporarily be boosted by the operating system when the main window has the focus.</summary>\r\n      <returns>true if dynamic boosting of the process priority should take place for a process when it is taken out of the wait state; otherwise, false. The default is false.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Priority boost information could not be retrieved from the associated process resource. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero. (The process has not been started.) </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityBoostEnabled\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityClass\">\r\n      <summary>Gets or sets the overall priority category for the associated process.</summary>\r\n      <returns>The priority category for the associated process, from which the <see cref=\"P:System.Diagnostics.Process.BasePriority\" /> of the process is calculated.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero. (The process has not been started.) </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">You have set the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me). These platforms do not support those values for the priority class. </exception>\r\n      <exception cref=\"T:System.ComponentModel.InvalidEnumArgumentException\">Priority class cannot be set because it does not use a valid value, as defined in the <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> enumeration.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivateMemorySize64\">\r\n      <summary>Gets the amount of private memory allocated for the associated process.</summary>\r\n      <returns>The amount of memory, in bytes, allocated for the associated process that cannot be shared with other processes.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\">\r\n      <summary>Gets the privileged processor time for this process.</summary>\r\n      <returns>A <see cref=\"T:System.TimeSpan\" /> that indicates the amount of time that the process has spent running code inside the operating system core.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessName\">\r\n      <summary>Gets the name of the process.</summary>\r\n      <returns>The name that the system uses to identify the process to the user.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process does not have an identifier, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" />.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is not on this computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessorAffinity\">\r\n      <summary>Gets or sets the processors on which the threads in this process can be scheduled to run.</summary>\r\n      <returns>A bitmask representing the processors that the threads in the associated process can run on. The default depends on the number of processors on the computer. The default value is 2 n -1, where n is the number of processors.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero. (The process has not been started.) </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> was not available.-or- The process has exited. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Refresh\">\r\n      <summary>Discards any information about the associated process that has been cached inside the process component.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SafeHandle\">\r\n      <summary>Gets the native handle to this process.</summary>\r\n      <returns>The native handle to this process.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SessionId\">\r\n      <summary>Gets the Terminal Services session identifier for the associated process.</summary>\r\n      <returns>The Terminal Services session identifier for the associated process.</returns>\r\n      <exception cref=\"T:System.NullReferenceException\">There is no session associated with this process.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The <see cref=\"P:System.Diagnostics.Process.SessionId\" /> property is not supported on Windows 98.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardError\">\r\n      <summary>Gets a stream used to read the error output of the application.</summary>\r\n      <returns>A <see cref=\"T:System.IO.StreamReader\" /> that can be used to read the standard error stream of the application.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginErrorReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardInput\">\r\n      <summary>Gets a stream used to write the input of the application.</summary>\r\n      <returns>A <see cref=\"T:System.IO.StreamWriter\" /> that can be used to write the standard input stream of the application.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> stream has not been defined because <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" /> is set to false. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardOutput\">\r\n      <summary>Gets a stream used to read the textual output of the application.</summary>\r\n      <returns>A <see cref=\"T:System.IO.StreamReader\" /> that can be used to read the standard output stream of the application.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginOutputReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start\">\r\n      <summary>Starts (or reuses) the process resource that is specified by the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> property of this <see cref=\"T:System.Diagnostics.Process\" /> component and associates it with the component.</summary>\r\n      <returns>true if a process resource is started; false if no new process resource is started (for example, if an existing process is reused).</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <see cref=\"T:System.Diagnostics.Process\" /> component's <see cref=\"P:System.Diagnostics.Process.StartInfo\" />.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> member of the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> property is true while <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is true. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)\">\r\n      <summary>Starts the process resource that is specified by the parameter containing process start information (for example, the file name of the process to start) and associates the resource with a new <see cref=\"T:System.Diagnostics.Process\" /> component.</summary>\r\n      <returns>A new <see cref=\"T:System.Diagnostics.Process\" /> that is associated with the process resource, or null if no process resource is started. Note that a new process that’s started alongside already running instances of the same process will be independent from the others. In addition, Start may return a non-null Process with its <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> property already set to true. In this case, the started process may have activated an existing instance of itself and then exited.</returns>\r\n      <param name=\"startInfo\">The <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> that contains the information that is used to start the process, including the file name and any command-line arguments. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is also true.-or-The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UserName\" /> property is not null or empty or the <see cref=\"P:System.Diagnostics.ProcessStartInfo.Password\" /> property is not null.</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"startInfo\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The file specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property could not be found.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080. The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String)\">\r\n      <summary>Starts a process resource by specifying the name of a document or application file and associates the resource with a new <see cref=\"T:System.Diagnostics.Process\" /> component.</summary>\r\n      <returns>A new <see cref=\"T:System.Diagnostics.Process\" /> that is associated with the process resource, or null if no process resource is started. Note that a new process that’s started alongside already running instances of the same process will be independent from the others. In addition, Start may return a non-null Process with its <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> property already set to true. In this case, the started process may have activated an existing instance of itself and then exited.</returns>\r\n      <param name=\"fileName\">The name of a document or application file to run in the process. </param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String)\">\r\n      <summary>Starts a process resource by specifying the name of an application and a set of command-line arguments, and associates the resource with a new <see cref=\"T:System.Diagnostics.Process\" /> component.</summary>\r\n      <returns>A new <see cref=\"T:System.Diagnostics.Process\" /> that is associated with the process resource, or null if no process resource is started. Note that a new process that’s started alongside already running instances of the same process will be independent from the others. In addition, Start may return a non-null Process with its <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> property already set to true. In this case, the started process may have activated an existing instance of itself and then exited.</returns>\r\n      <param name=\"fileName\">The name of an application file to run in the process. </param>\r\n      <param name=\"arguments\">Command-line arguments to pass when starting the process. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <paramref name=\"fileName\" /> or <paramref name=\"arguments\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080. The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>Starts a process resource by specifying the name of an application, a user name, a password, and a domain and associates the resource with a new <see cref=\"T:System.Diagnostics.Process\" /> component.</summary>\r\n      <returns>A new <see cref=\"T:System.Diagnostics.Process\" /> that is associated with the process resource, or null if no process resource is started. Note that a new process that’s started alongside already running instances of the same process will be independent from the others. In addition, Start may return a non-null Process with its <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> property already set to true. In this case, the started process may have activated an existing instance of itself and then exited.</returns>\r\n      <param name=\"fileName\">The name of an application file to run in the process.</param>\r\n      <param name=\"userName\">The user name to use when starting the process.</param>\r\n      <param name=\"password\">A <see cref=\"T:System.Security.SecureString\" /> that contains the password to use when starting the process.</param>\r\n      <param name=\"domain\">The domain to use when starting the process.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>Starts a process resource by specifying the name of an application, a set of command-line arguments, a user name, a password, and a domain and associates the resource with a new <see cref=\"T:System.Diagnostics.Process\" /> component.</summary>\r\n      <returns>A new <see cref=\"T:System.Diagnostics.Process\" /> that is associated with the process resource, or null if no process resource is started. Note that a new process that’s started alongside already running instances of the same process will be independent from the others. In addition, Start may return a non-null Process with its <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> property already set to true. In this case, the started process may have activated an existing instance of itself and then exited.</returns>\r\n      <param name=\"fileName\">The name of an application file to run in the process. </param>\r\n      <param name=\"arguments\">Command-line arguments to pass when starting the process. </param>\r\n      <param name=\"userName\">The user name to use when starting the process.</param>\r\n      <param name=\"password\">A <see cref=\"T:System.Security.SecureString\" /> that contains the password to use when starting the process.</param>\r\n      <param name=\"domain\">The domain to use when starting the process.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080. The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartInfo\">\r\n      <summary>Gets or sets the properties to pass to the <see cref=\"M:System.Diagnostics.Process.Start\" /> method of the <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>The <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> that represents the data with which to start the process. These arguments include the name of the executable file or document used to start the process.</returns>\r\n      <exception cref=\"T:System.ArgumentNullException\">The value that specifies the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> is null. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartTime\">\r\n      <summary>Gets the time that the associated process was started.</summary>\r\n      <returns>An object  that indicates when the process started. An exception is thrown if the process is not running.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.StartTime\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or-The process has not been started.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred in the call to the Windows function.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Threads\">\r\n      <summary>Gets the set of threads that are running in the associated process.</summary>\r\n      <returns>An array of type <see cref=\"T:System.Diagnostics.ProcessThread\" /> representing the operating system threads currently running in the associated process.</returns>\r\n      <exception cref=\"T:System.SystemException\">The process does not have an <see cref=\"P:System.Diagnostics.Process.Id\" />, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" /> instance.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.TotalProcessorTime\">\r\n      <summary>Gets the total processor time for this process.</summary>\r\n      <returns>A <see cref=\"T:System.TimeSpan\" /> that indicates the amount of time that the associated process has spent utilizing the CPU. This value is the sum of the <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> and the <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" />.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.TotalProcessorTime\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.UserProcessorTime\">\r\n      <summary>Gets the user processor time for this process.</summary>\r\n      <returns>A <see cref=\"T:System.TimeSpan\" /> that indicates the amount of time that the associated process has spent running code inside the application portion of the process (not inside the operating system core).</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> property for a process that is running on a remote computer. This property is available only for processes that are running on the local computer. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.VirtualMemorySize64\">\r\n      <summary>Gets the amount of the virtual memory allocated for the associated process.</summary>\r\n      <returns>The amount of virtual memory, in bytes, allocated for the associated process.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit\">\r\n      <summary>Instructs the <see cref=\"T:System.Diagnostics.Process\" /> component to wait indefinitely for the associated process to exit.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit\" /> for a process that is running on a remote computer. This method is available only for processes that are running on the local computer. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\">\r\n      <summary>Instructs the <see cref=\"T:System.Diagnostics.Process\" /> component to wait the specified number of milliseconds for the associated process to exit.</summary>\r\n      <returns>true if the associated process has exited; otherwise, false.</returns>\r\n      <param name=\"milliseconds\">The amount of time, in milliseconds, to wait for the associated process to exit. The maximum is the largest possible value of a 32-bit integer, which represents infinity to the operating system. </param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\" /> for a process that is running on a remote computer. This method is available only for processes that are running on the local computer. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.WorkingSet64\">\r\n      <summary>Gets the amount of physical memory allocated for the associated process.</summary>\r\n      <returns>The amount of physical memory, in bytes, allocated for the associated process.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModule\">\r\n      <summary>Represents a.dll or .exe file that is loaded into a particular process.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.BaseAddress\">\r\n      <summary>Gets the memory address where the module was loaded.</summary>\r\n      <returns>The load address of the module.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.EntryPointAddress\">\r\n      <summary>Gets the memory address for the function that runs when the system loads and runs the module.</summary>\r\n      <returns>The entry point of the module.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.FileName\">\r\n      <summary>Gets the full path to the module.</summary>\r\n      <returns>The fully qualified path that defines the location of the module.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleMemorySize\">\r\n      <summary>Gets the amount of memory that is required to load the module.</summary>\r\n      <returns>The size, in bytes, of the memory that the module occupies.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleName\">\r\n      <summary>Gets the name of the process module.</summary>\r\n      <returns>The name of the module.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModule.ToString\">\r\n      <summary>Converts the name of the module to a string.</summary>\r\n      <returns>The value of the <see cref=\"P:System.Diagnostics.ProcessModule.ModuleName\" /> property.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModuleCollection\">\r\n      <summary>Provides a strongly typed collection of <see cref=\"T:System.Diagnostics.ProcessModule\" /> objects.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor\">\r\n      <summary>Initializes a new instance of the <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> class, with no associated <see cref=\"T:System.Diagnostics.ProcessModule\" /> instances.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])\">\r\n      <summary>Initializes a new instance of the <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> class, using the specified array of <see cref=\"T:System.Diagnostics.ProcessModule\" /> instances.</summary>\r\n      <param name=\"processModules\">An array of <see cref=\"T:System.Diagnostics.ProcessModule\" /> instances with which to initialize this <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> instance. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)\">\r\n      <summary>Determines whether the specified process module exists in the collection.</summary>\r\n      <returns>true if the module exists in the collection; otherwise, false.</returns>\r\n      <param name=\"module\">A <see cref=\"T:System.Diagnostics.ProcessModule\" /> instance that indicates the module to find in this collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)\">\r\n      <summary>Copies an array of <see cref=\"T:System.Diagnostics.ProcessModule\" /> instances to the collection, at the specified index.</summary>\r\n      <param name=\"array\">An array of <see cref=\"T:System.Diagnostics.ProcessModule\" /> instances to add to the collection. </param>\r\n      <param name=\"index\">The location at which to add the new instances. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)\">\r\n      <summary>Provides the location of a specified module within the collection.</summary>\r\n      <returns>The zero-based index that defines the location of the module within the <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />.</returns>\r\n      <param name=\"module\">The <see cref=\"T:System.Diagnostics.ProcessModule\" /> whose index is retrieved. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)\">\r\n      <summary>Gets an index for iterating over the set of process modules.</summary>\r\n      <returns>A <see cref=\"T:System.Diagnostics.ProcessModule\" /> that indexes the modules in the collection </returns>\r\n      <param name=\"index\">The zero-based index value of the module in the collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ProcessPriorityClass\">\r\n      <summary>Indicates the priority that the system associates with a process. This value, together with the priority value of each thread of the process, determines each thread's base priority level.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.AboveNormal\">\r\n      <summary>Specifies that the process has priority above Normal but below <see cref=\"F:System.Diagnostics.ProcessPriorityClass.High\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.BelowNormal\">\r\n      <summary>Specifies that the process has priority above Idle but below Normal.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.High\">\r\n      <summary>Specifies that the process performs time-critical tasks that must be executed immediately, such as the Task List dialog, which must respond quickly when called by the user, regardless of the load on the operating system. The threads of the process preempt the threads of normal or idle priority class processes.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Idle\">\r\n      <summary>Specifies that the threads of this process run only when the system is idle, such as a screen saver. The threads of the process are preempted by the threads of any process running in a higher priority class.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Normal\">\r\n      <summary>Specifies that the process has no special scheduling needs.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.RealTime\">\r\n      <summary>Specifies that the process has the highest possible priority.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessStartInfo\">\r\n      <summary>Specifies a set of values that are used when you start a process.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor\">\r\n      <summary>Initializes a new instance of the <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> class without specifying a file name with which to start the process.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)\">\r\n      <summary>Initializes a new instance of the <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> class and specifies a file name such as an application or document with which to start the process.</summary>\r\n      <param name=\"fileName\">An application or document with which to start a process. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)\">\r\n      <summary>Initializes a new instance of the <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> class, specifies an application file name with which to start the process, and specifies a set of command-line arguments to pass to the application.</summary>\r\n      <param name=\"fileName\">An application with which to start a process. </param>\r\n      <param name=\"arguments\">Command-line arguments to pass to the application when the process starts. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Arguments\">\r\n      <summary>Gets or sets the set of command-line arguments to use when starting the application.</summary>\r\n      <returns>A single string containing the arguments to pass to the target application specified in the <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property. The default is an empty string (\"\"). On Windows Vista and earlier versions of the Windows operating system, the length of the arguments added to the length of the full path to the process must be less than 2080. On Windows 7 and later versions, the length must be less than 32699.Arguments are parsed and interpreted by the target application, so must align with the expectations of that application. For.NET applications as demonstrated in the Examples below, spaces are interpreted as a separator between multiple arguments. A single argument that includes spaces must be surrounded by quotation marks, but those quotation marks are not carried through to the target application. In include quotation marks in the final parsed argument, triple-escape each mark.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.CreateNoWindow\">\r\n      <summary>Gets or sets a value indicating whether to start the process in a new window.</summary>\r\n      <returns>true if the process should be started without creating a new window to contain it; otherwise, false. The default is false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Domain\">\r\n      <summary>Gets or sets a value that identifies the domain to use when starting the process. </summary>\r\n      <returns>The Active Directory domain to use when starting the process. The domain property is primarily of interest to users within enterprise environments that use Active Directory.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Environment\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.FileName\">\r\n      <summary>Gets or sets the application or document to start.</summary>\r\n      <returns>The name of the application to start, or the name of a document of a file type that is associated with an application and that has a default open action available to it. The default is an empty string (\"\").</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.LoadUserProfile\">\r\n      <summary>Gets or sets a value that indicates whether the Windows user profile is to be loaded from the registry. </summary>\r\n      <returns>true if the Windows user profile should be loaded; otherwise, false. The default is false.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Password\">\r\n      <summary>Gets or sets a secure string that contains the user password to use when starting the process.</summary>\r\n      <returns>The user password to use when starting the process.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\">\r\n      <summary>Gets or sets a value that indicates whether the error output of an application is written to the <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.</summary>\r\n      <returns>true if error output should be written to <see cref=\"P:System.Diagnostics.Process.StandardError\" />; otherwise, false. The default is false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\">\r\n      <summary>Gets or sets a value indicating whether the input for an application is read from the <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> stream.</summary>\r\n      <returns>true if input should be read from <see cref=\"P:System.Diagnostics.Process.StandardInput\" />; otherwise, false. The default is false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\">\r\n      <summary>Gets or sets a value that indicates whether the textual output of an application is written to the <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream.</summary>\r\n      <returns>true if output should be written to <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />; otherwise, false. The default is false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding\">\r\n      <summary>Gets or sets the preferred encoding for error output.</summary>\r\n      <returns>An object that represents the preferred encoding for error output. The default is null.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding\">\r\n      <summary>Gets or sets the preferred encoding for standard output.</summary>\r\n      <returns>An object that represents the preferred encoding for standard output. The default is null.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UserName\">\r\n      <summary>Gets or sets the user name to be used when starting the process.</summary>\r\n      <returns>The user name to use when starting the process.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\">\r\n      <summary>Gets or sets a value indicating whether to use the operating system shell to start the process.</summary>\r\n      <returns>true if the shell should be used when starting the process; false if the process should be created directly from the executable file. The default is true.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.WorkingDirectory\">\r\n      <summary>When the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property is false, gets or sets the working directory for the process to be started. When <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is true, gets or sets the directory that contains the process to be started.</summary>\r\n      <returns>When <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is true, the fully qualified name of the directory that contains the process to be started. When the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property is false, the working directory for the process to be started. The default is an empty string (\"\").</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThread\">\r\n      <summary>Represents an operating system process thread.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.BasePriority\">\r\n      <summary>Gets the base priority of the thread.</summary>\r\n      <returns>The base priority of the thread, which the operating system computes by combining the process priority class with the priority level of the associated thread.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.CurrentPriority\">\r\n      <summary>Gets the current priority of the thread.</summary>\r\n      <returns>The current priority of the thread, which may deviate from the base priority based on how the operating system is scheduling the thread. The priority may be temporarily boosted for an active thread.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.Id\">\r\n      <summary>Gets the unique identifier of the thread.</summary>\r\n      <returns>The unique identifier associated with a specific thread.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.IdealProcessor\">\r\n      <summary>Sets the preferred processor for this thread to run on.</summary>\r\n      <returns>The preferred processor for the thread, used when the system schedules threads, to determine which processor to run the thread on.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The system could not set the thread to start on the specified processor. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is on a remote computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityBoostEnabled\">\r\n      <summary>Gets or sets a value indicating whether the operating system should temporarily boost the priority of the associated thread whenever the main window of the thread's process receives the focus.</summary>\r\n      <returns>true to boost the thread's priority when the user interacts with the process's interface; otherwise, false. The default is false.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The priority boost information could not be retrieved.-or-The priority boost information could not be set. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is on a remote computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityLevel\">\r\n      <summary>Gets or sets the priority level of the thread.</summary>\r\n      <returns>One of the <see cref=\"T:System.Diagnostics.ThreadPriorityLevel\" /> values, specifying a range that bounds the thread's priority.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The thread priority level information could not be retrieved. -or-The thread priority level could not be set.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is on a remote computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime\">\r\n      <summary>Gets the amount of time that the thread has spent running code inside the operating system core.</summary>\r\n      <returns>A <see cref=\"T:System.TimeSpan\" /> indicating the amount of time that the thread has spent running code inside the operating system core.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The thread time could not be retrieved. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is on a remote computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ProcessorAffinity\">\r\n      <summary>Sets the processors on which the associated thread can run.</summary>\r\n      <returns>An <see cref=\"T:System.IntPtr\" /> that points to a set of bits, each of which represents a processor that the thread can run on.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The processor affinity could not be set. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is on a remote computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThread.ResetIdealProcessor\">\r\n      <summary>Resets the ideal processor for this thread to indicate that there is no single ideal processor. In other words, so that any processor is ideal.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The ideal processor could not be reset. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is on a remote computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartAddress\">\r\n      <summary>Gets the memory address of the function that the operating system called that started this thread.</summary>\r\n      <returns>The thread's starting address, which points to the application-defined function that the thread executes.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is on a remote computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartTime\">\r\n      <summary>Gets the time that the operating system started the thread.</summary>\r\n      <returns>A <see cref=\"T:System.DateTime\" /> representing the time that was on the system when the operating system started the thread.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The thread time could not be retrieved. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is on a remote computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ThreadState\">\r\n      <summary>Gets the current state of this thread.</summary>\r\n      <returns>A <see cref=\"T:System.Diagnostics.ThreadState\" /> that indicates the thread's execution, for example, running, waiting, or terminated.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is on a remote computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.TotalProcessorTime\">\r\n      <summary>Gets the total amount of time that this thread has spent using the processor.</summary>\r\n      <returns>A <see cref=\"T:System.TimeSpan\" /> that indicates the amount of time that the thread has had control of the processor.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The thread time could not be retrieved. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is on a remote computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.UserProcessorTime\">\r\n      <summary>Gets the amount of time that the associated thread has spent running code inside the application.</summary>\r\n      <returns>A <see cref=\"T:System.TimeSpan\" /> indicating the amount of time that the thread has spent running code inside the application, as opposed to inside the operating system core.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The thread time could not be retrieved. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is on a remote computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.WaitReason\">\r\n      <summary>Gets the reason that the thread is waiting.</summary>\r\n      <returns>A <see cref=\"T:System.Diagnostics.ThreadWaitReason\" /> representing the reason that the thread is in the wait state.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The thread is not in the wait state. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is on a remote computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThreadCollection\">\r\n      <summary>Provides a strongly typed collection of <see cref=\"T:System.Diagnostics.ProcessThread\" /> objects.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor\">\r\n      <summary>Initializes a new instance of the <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> class, with no associated <see cref=\"T:System.Diagnostics.ProcessThread\" /> instances.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])\">\r\n      <summary>Initializes a new instance of the <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> class, using the specified array of <see cref=\"T:System.Diagnostics.ProcessThread\" /> instances.</summary>\r\n      <param name=\"processThreads\">An array of <see cref=\"T:System.Diagnostics.ProcessThread\" /> instances with which to initialize this <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> instance. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)\">\r\n      <summary>Appends a process thread to the collection.</summary>\r\n      <returns>The zero-based index of the thread in the collection.</returns>\r\n      <param name=\"thread\">The thread to add to the collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)\">\r\n      <summary>Determines whether the specified process thread exists in the collection.</summary>\r\n      <returns>true if the thread exists in the collection; otherwise, false.</returns>\r\n      <param name=\"thread\">A <see cref=\"T:System.Diagnostics.ProcessThread\" /> instance that indicates the thread to find in this collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)\">\r\n      <summary>Copies an array of <see cref=\"T:System.Diagnostics.ProcessThread\" /> instances to the collection, at the specified index.</summary>\r\n      <param name=\"array\">An array of <see cref=\"T:System.Diagnostics.ProcessThread\" /> instances to add to the collection. </param>\r\n      <param name=\"index\">The location at which to add the new instances. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)\">\r\n      <summary>Provides the location of a specified thread within the collection.</summary>\r\n      <returns>The zero-based index that defines the location of the thread within the <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />.</returns>\r\n      <param name=\"thread\">The <see cref=\"T:System.Diagnostics.ProcessThread\" /> whose index is retrieved. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)\">\r\n      <summary>Inserts a process thread at the specified location in the collection.</summary>\r\n      <param name=\"index\">The zero-based index indicating the location at which to insert the thread. </param>\r\n      <param name=\"thread\">The thread to insert into the collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)\">\r\n      <summary>Gets an index for iterating over the set of process threads.</summary>\r\n      <returns>A <see cref=\"T:System.Diagnostics.ProcessThread\" /> that indexes the threads in the collection.</returns>\r\n      <param name=\"index\">The zero-based index value of the thread in the collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)\">\r\n      <summary>Deletes a process thread from the collection.</summary>\r\n      <param name=\"thread\">The thread to remove from the collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ThreadPriorityLevel\">\r\n      <summary>Specifies the priority level of a thread.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.AboveNormal\">\r\n      <summary>Specifies one step above the normal priority for the associated <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.BelowNormal\">\r\n      <summary>Specifies one step below the normal priority for the associated <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Highest\">\r\n      <summary>Specifies highest priority. This is two steps above the normal priority for the associated <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Idle\">\r\n      <summary>Specifies idle priority. This is the lowest possible priority value of all threads, independent of the value of the associated <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Lowest\">\r\n      <summary>Specifies lowest priority. This is two steps below the normal priority for the associated <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Normal\">\r\n      <summary>Specifies normal priority for the associated <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.TimeCritical\">\r\n      <summary>Specifies time-critical priority. This is the highest priority of all threads, independent of the value of the associated <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadState\">\r\n      <summary>Specifies the current execution state of the thread.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Initialized\">\r\n      <summary>A state that indicates the thread has been initialized, but has not yet started.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Ready\">\r\n      <summary>A state that indicates the thread is waiting to use a processor because no processor is free. The thread is prepared to run on the next available processor.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Running\">\r\n      <summary>A state that indicates the thread is currently using a processor.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Standby\">\r\n      <summary>A state that indicates the thread is about to use a processor. Only one thread can be in this state at a time.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Terminated\">\r\n      <summary>A state that indicates the thread has finished executing and has exited.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Transition\">\r\n      <summary>A state that indicates the thread is waiting for a resource, other than the processor, before it can execute. For example, it might be waiting for its execution stack to be paged in from disk.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Unknown\">\r\n      <summary>The state of the thread is unknown.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Wait\">\r\n      <summary>A state that indicates the thread is not ready to use the processor because it is waiting for a peripheral operation to complete or a resource to become free. When the thread is ready, it will be rescheduled.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadWaitReason\">\r\n      <summary>Specifies the reason a thread is waiting.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairHigh\">\r\n      <summary>The thread is waiting for event pair high.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairLow\">\r\n      <summary>The thread is waiting for event pair low.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.ExecutionDelay\">\r\n      <summary>Thread execution is delayed.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Executive\">\r\n      <summary>The thread is waiting for the scheduler.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.FreePage\">\r\n      <summary>The thread is waiting for a free virtual memory page.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReceive\">\r\n      <summary>The thread is waiting for a local procedure call to arrive.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReply\">\r\n      <summary>The thread is waiting for reply to a local procedure call to arrive.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageIn\">\r\n      <summary>The thread is waiting for a virtual memory page to arrive in memory.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageOut\">\r\n      <summary>The thread is waiting for a virtual memory page to be written to disk.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Suspended\">\r\n      <summary>Thread execution is suspended.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.SystemAllocation\">\r\n      <summary>The thread is waiting for system allocation.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Unknown\">\r\n      <summary>The thread is waiting for an unknown reason.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.UserRequest\">\r\n      <summary>The thread is waiting for a user request.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.VirtualMemory\">\r\n      <summary>The thread is waiting for the system to allocate virtual memory.</summary>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/de/System.Diagnostics.Process.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<doc>\r\n  <assembly>\r\n    <name>System.Diagnostics.Process</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\">\r\n      <summary>[SICHERHEITSRELEVANT] Stellt einen verwalteten Wrapper für ein Prozesshandle bereit.</summary>\r\n    </member>\r\n    <member name=\"M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)\">\r\n      <summary>[SICHERHEITSRELEVANT] Initialisiert eine neue Instanz der <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" />-Klasse aus dem angegebenen Handle und gibt an, ob das Handle in der Abschlussphase freigegeben werden soll. </summary>\r\n      <param name=\"existingHandle\">Das zu umschließende Handle.</param>\r\n      <param name=\"ownsHandle\">true, wenn <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> das Handle während der Abschlussphase zuverlässig freigeben soll, andernfalls false.</param>\r\n    </member>\r\n    <member name=\"P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid\"></member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventArgs\">\r\n      <summary>Stellt Daten für das <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" />-Ereignis und das <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" />-Ereignis bereit.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.DataReceivedEventArgs.Data\">\r\n      <summary>Ruft die Zeile von Zeichen ab, die in einen umgeleiteten <see cref=\"T:System.Diagnostics.Process\" />-Ausgabestream geschrieben wurde.</summary>\r\n      <returns>Die Zeile, die von einem zugeordneten <see cref=\"T:System.Diagnostics.Process\" /> in seinen umgeleiteten <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />-Stream oder <see cref=\"P:System.Diagnostics.Process.StandardError\" />-Stream geschrieben wurde.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventHandler\">\r\n      <summary>Stellt die Methode dar, die das <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" />-Ereignis oder das <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" />-Ereignis eines <see cref=\"T:System.Diagnostics.Process\" /> behandelt.</summary>\r\n      <param name=\"sender\">Die Quelle des Ereignisses. </param>\r\n      <param name=\"e\">Ein <see cref=\"T:System.Diagnostics.DataReceivedEventArgs\" />, das die Ereignisdaten enthält. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.Process\">\r\n      <summary>Ermöglicht den Zugriff auf lokale Prozesse und Remoteprozesse und das Starten und Anhalten lokaler Systemprozesse.Informationen zum Durchsuchen des .NET Framework-Quellcodes für diesen Typ finden Sie in der Verweisquelle.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.#ctor\">\r\n      <summary>Initialisiert eine neue Instanz der <see cref=\"T:System.Diagnostics.Process\" />-Klasse.</summary>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.BasePriority\">\r\n      <summary>Ruft die Basispriorität des zugeordneten Prozesses ab.</summary>\r\n      <returns>Die Basispriorität, die anhand der <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> des zugeordneten Prozesses berechnet wird.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or- The process has not started, so there is no process ID. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginErrorReadLine\">\r\n      <summary>Startet asynchrone Lesevorgänge im umgeleiteten <see cref=\"P:System.Diagnostics.Process.StandardError\" />-Stream der Anwendung.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginOutputReadLine\">\r\n      <summary>Startet asynchrone Lesevorgänge im umgeleiteten <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />-Stream der Anwendung.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelErrorRead\">\r\n      <summary>Bricht den asynchronen Lesevorgang im umgeleiteten <see cref=\"P:System.Diagnostics.Process.StandardError\" />-Stream einer Anwendung ab.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelOutputRead\">\r\n      <summary>Bricht den asynchronen Lesevorgang im umgeleiteten <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />-Stream einer Anwendung ab.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose\"></member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose(System.Boolean)\">\r\n      <summary>Gibt alle von diesem Prozess verwendeten Ressourcen frei.</summary>\r\n      <param name=\"disposing\">true, um sowohl verwaltete als auch nicht verwaltete Ressourcen freizugeben, false, um ausschließlich nicht verwaltete Ressourcen freizugeben. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.EnableRaisingEvents\">\r\n      <summary>Ruft ab oder legt fest, ob beim Beenden des Prozesses das <see cref=\"E:System.Diagnostics.Process.Exited\" />-Ereignis ausgelöst werden soll.</summary>\r\n      <returns>true, wenn das <see cref=\"E:System.Diagnostics.Process.Exited\" />-Ereignis ausgelöst werden soll, wenn der zugeordnete Prozess beendet wird (entweder durch Beenden oder einen Aufruf von <see cref=\"M:System.Diagnostics.Process.Kill\" />); andernfalls false.Die Standardeinstellung ist false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.EnterDebugMode\">\r\n      <summary>Versetzt durch Aktivieren der systemeigenen <see cref=\"T:System.Diagnostics.Process\" />-Eigenschaft für den aktuellen Thread eine SeDebugPrivilege-Komponente in einen Zustand, in dem sie mit Betriebssystemprozessen interagieren kann, die in einem speziellen Modus ausgeführt werden.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.ErrorDataReceived\">\r\n      <summary>Tritt auf, wenn eine Anwendung in seinen umgeleiteten <see cref=\"P:System.Diagnostics.Process.StandardError\" />-Stream schreibt.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitCode\">\r\n      <summary>Ruft den Wert ab, der vom zugeordneten Prozess beim Beenden angegeben wurde.</summary>\r\n      <returns>Der Code, der vom zugeordneten Prozess beim Beenden angegeben wurde.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has not exited.-or- The process <see cref=\"P:System.Diagnostics.Process.Handle\" /> is not valid. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitCode\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.Exited\">\r\n      <summary>Tritt beim Beenden eines Prozesses ein.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitTime\">\r\n      <summary>Ruft den Zeitpunkt ab, zu dem der zugeordnete Prozess beendet wurde.</summary>\r\n      <returns>Eine <see cref=\"T:System.DateTime\" />, die angibt, wann der zugeordnete Prozess beendet wurde.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetCurrentProcess\">\r\n      <summary>Ruft eine neue <see cref=\"T:System.Diagnostics.Process\" />-Komponente ab und ordnet diese dem gegenwärtig aktiven Prozess zu.</summary>\r\n      <returns>Eine neue <see cref=\"T:System.Diagnostics.Process\" />-Komponente, die der Prozessressource zugeordnet ist, die die aufrufende Anwendung ausführt.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32)\">\r\n      <summary>Gibt eine neue <see cref=\"T:System.Diagnostics.Process\" />-Komponente zurück, wenn der Bezeichner eines Prozesses auf dem lokalen Computer angegeben ist.</summary>\r\n      <returns>Eine <see cref=\"T:System.Diagnostics.Process\" />-Komponente, die der durch den <paramref name=\"processId\" />-Parameter bezeichneten lokalen Prozessressource zugeordnet ist.</returns>\r\n      <param name=\"processId\">Der systemweit eindeutige Bezeichner einer Prozessressource. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)\">\r\n      <summary>Gibt eine neue <see cref=\"T:System.Diagnostics.Process\" />-Komponente zurück, wenn die Prozess-ID und der Name des Computers im Netzwerk angegeben sind.</summary>\r\n      <returns>Eine <see cref=\"T:System.Diagnostics.Process\" />-Komponente, die der durch den <paramref name=\"processId\" />-Parameter bezeichneten Remoteprozessressource zugeordnet ist.</returns>\r\n      <param name=\"processId\">Der systemweit eindeutige Bezeichner einer Prozessressource. </param>\r\n      <param name=\"machineName\">Der Name eines Computers im Netzwerk. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.-or- The <paramref name=\"machineName\" /> parameter syntax is invalid.The name might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses\">\r\n      <summary>Erstellt eine neue <see cref=\"T:System.Diagnostics.Process\" />-Komponente für jede Prozessressource auf dem lokalen Computer.</summary>\r\n      <returns>Ein Array vom Typ <see cref=\"T:System.Diagnostics.Process\" />, das alle auf dem lokalen Computer ausgeführten Prozessressourcen darstellt.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses(System.String)\">\r\n      <summary>Erstellt eine neue <see cref=\"T:System.Diagnostics.Process\" />-Komponente für jede Prozessressource auf dem lokalen Computer.</summary>\r\n      <returns>Ein Array vom Typ <see cref=\"T:System.Diagnostics.Process\" />, das alle auf dem angegebenen Computer ausgeführten Prozessressourcen darstellt.</returns>\r\n      <param name=\"machineName\">Der Computer, von dem die Liste der Prozesse gelesen werden soll. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String)\">\r\n      <summary>Erstellt ein Array neuer <see cref=\"T:System.Diagnostics.Process\" />-Komponenten und ordnet diese allen Prozessressourcen auf dem lokalen Computer zu, die den angegebenen Prozessnamen gemeinsam verwenden.</summary>\r\n      <returns>Ein Array vom Typ <see cref=\"T:System.Diagnostics.Process\" />, das die Prozessressourcen darstellt, die die angegebene Anwendung oder Datei ausführen.</returns>\r\n      <param name=\"processName\">Der angezeigte Name des Prozesses. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)\">\r\n      <summary>Erstellt ein Array neuer <see cref=\"T:System.Diagnostics.Process\" />-Komponenten und ordnet diese allen Prozessressourcen auf einem Remotecomputer zu, die den angegebenen Prozessnamen gemeinsam verwenden.</summary>\r\n      <returns>Ein Array vom Typ <see cref=\"T:System.Diagnostics.Process\" />, das die Prozessressourcen darstellt, die die angegebene Anwendung oder Datei ausführen.</returns>\r\n      <param name=\"processName\">Der angezeigte Name des Prozesses. </param>\r\n      <param name=\"machineName\">Der Name eines Computers im Netzwerk. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.HasExited\">\r\n      <summary>Ruft einen Wert ab, der angibt, ob der zugehörige Prozess beendet wurde.</summary>\r\n      <returns>true, wenn der Betriebssystemprozess, auf den die <see cref=\"T:System.Diagnostics.Process\" />-Komponente verweist, beendet wurde; andernfalls false.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with the object. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The exit code for the process could not be retrieved. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.HasExited\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Id\">\r\n      <summary>Ruft den eindeutigen Bezeichner für den zugeordneten Prozess ab.</summary>\r\n      <returns>Der vom System generierte eindeutige Bezeichner des Prozesses, auf den von dieser <see cref=\"T:System.Diagnostics.Process\" />-Instanz verwiesen wird.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process's <see cref=\"P:System.Diagnostics.Process.Id\" /> property has not been set.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Kill\">\r\n      <summary>Hält den zugeordneten Prozess sofort an.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to call <see cref=\"M:System.Diagnostics.Process.Kill\" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has already exited. -or-There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.LeaveDebugMode\">\r\n      <summary>Beendet den Zustand einer <see cref=\"T:System.Diagnostics.Process\" />-Komponente, in dem sie mit Betriebssystemprozessen interagieren kann, die in einem speziellen Modus ausgeführt werden.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MachineName\">\r\n      <summary>Ruft den Namen des Computers ab, auf dem der zugeordnete Prozess ausgeführt wird.</summary>\r\n      <returns>Der Name des Computers, auf dem der zugeordnete Prozess ausgeführt wird.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MainModule\">\r\n      <summary>Ruft das Hauptmodul für den zugeordneten Prozess ab.</summary>\r\n      <returns>Das zum Starten des Prozesses verwendete <see cref=\"T:System.Diagnostics.ProcessModule\" />.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MainModule\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A 32-bit process is trying to access the modules of a 64-bit process.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MaxWorkingSet\">\r\n      <summary>Ruft die maximal zulässige Workingsetgröße für den zugeordneten Prozess ab oder legt diese fest.</summary>\r\n      <returns>Die im Speicher maximal zulässige Workingsetgröße für den Prozess in Bytes.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MaxWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MinWorkingSet\">\r\n      <summary>Ruft die minimale zulässige Workingsetgröße für den zugeordneten Prozess ab oder legt diese fest.</summary>\r\n      <returns>Die im Speicher mindestens erforderliche Workingsetgröße für den Prozess in Bytes.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MinWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Modules\">\r\n      <summary>Ruft die Module ab, die vom zugeordneten Prozess geladen wurden.</summary>\r\n      <returns>Ein Array vom Typ <see cref=\"T:System.Diagnostics.ProcessModule\" />, das die vom zugeordneten Prozess geladenen Module darstellt.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for either the system process or the idle process.These processes do not have modules.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.NonpagedSystemMemorySize64\">\r\n      <summary>Ruft die Menge des für den zugeordneten Prozess belegten nicht ausgelagerten Systemspeichers ab.</summary>\r\n      <returns>Der Anteil am Systemspeicher in Bytes, der für den zugeordneten Prozess reserviert ist und der nicht in die Auslagerungsdatei des virtuellen Speichers geschrieben werden kann.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.OnExited\">\r\n      <summary>Löst das <see cref=\"E:System.Diagnostics.Process.Exited\" />-Ereignis aus.</summary>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.OutputDataReceived\">\r\n      <summary>Tritt jedes Mal auf, wenn eine Anwendung eine Zeile in ihren umgeleiteten <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />-Stream schreibt.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedMemorySize64\">\r\n      <summary>Ruft die Größe des ausgelagerten Speichers ab, der für den zugeordneten Prozess belegt wird.</summary>\r\n      <returns>Die Größe des Arbeitsspeichers in Bytes, der für den zugeordneten Prozess in der Auslagerungsdatei des virtuellen Arbeitsspeichers belegt wird.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedSystemMemorySize64\">\r\n      <summary>Ruft die Menge des für den zugeordneten Prozess belegten auslagerbaren Systemspeichers ab.</summary>\r\n      <returns>Der Anteil am Systemspeicher in Bytes, der für den zugeordneten Prozess belegt wird und der in die Auslagerungsdatei des virtuellen Speichers geschrieben werden kann.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakPagedMemorySize64\">\r\n      <summary>Ruft die vom zugeordneten Prozess verwendete maximale Speichergröße in der Auslagerungsdatei des virtuellen Arbeitsspeichers ab.</summary>\r\n      <returns>Die maximale Größe des Arbeitsspeichers in Bytes, der seit dem Starten für den zugeordneten Prozess in der Auslagerungsdatei des virtuellen Arbeitsspeichers belegt wird.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakVirtualMemorySize64\">\r\n      <summary>Ruft die maximale Größe des virtuellen Speichers ab, der vom zugeordneten Prozess verwendet wird.</summary>\r\n      <returns>Die maximale Größe des virtuellen Arbeitsspeichers in Bytes, der für den zugeordneten Prozess seit dem Starten belegt wird.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakWorkingSet64\">\r\n      <summary>Ruft die maximale Größe des physischen Speichers ab, der vom zugeordneten Prozess verwendet wird.</summary>\r\n      <returns>Die maximale Größe des physischen Speichers in Bytes, der für den zugeordneten Prozess seit dem Starten belegt wird.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityBoostEnabled\">\r\n      <summary>Ruft einen Wert ab, der angibt, ob die zugeordnete Prozesspriorität durch das Betriebssystem vorübergehend erhöht werden soll, wenn das Hauptfenster den Fokus besitzt, oder legt diesen fest.</summary>\r\n      <returns>true, wenn die Prozesspriorität eines Prozesses dynamisch erhöht werden soll, wenn dieser den Wartezustand verlässt; andernfalls false.Die Standardeinstellung ist false.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Priority boost information could not be retrieved from the associated process resource. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityBoostEnabled\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityClass\">\r\n      <summary>Ruft die allgemeine Prioritätskategorie für den zugeordneten Prozess ab oder legt diese fest.</summary>\r\n      <returns>Die Prioritätskategorie für den zugeordneten Prozess, aus der die <see cref=\"P:System.Diagnostics.Process.BasePriority\" /> des Prozesses berechnet wird.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">You have set the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>\r\n      <exception cref=\"T:System.ComponentModel.InvalidEnumArgumentException\">Priority class cannot be set because it does not use a valid value, as defined in the <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> enumeration.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivateMemorySize64\">\r\n      <summary>Ruft die Größe des privaten Speichers ab, der für den zugeordneten Prozess belegt wird.</summary>\r\n      <returns>Die Größe des Speichers in Bytes, der für den zugeordneten Prozess belegt wird und nicht mit anderen Prozessen gemeinsam genutzt werden kann.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\">\r\n      <summary>Ruft die privilegierte Prozessorzeit für diesen Prozess ab.</summary>\r\n      <returns>Eine <see cref=\"T:System.TimeSpan\" />, die angibt, wie lange der Prozess im Betriebssystemkern Code ausgeführt hat.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessName\">\r\n      <summary>Ruft den Namen des Prozesses ab.</summary>\r\n      <returns>Der Name, mit dem das System den Prozess für den Benutzer kennzeichnet.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process does not have an identifier, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" />.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is not on this computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessorAffinity\">\r\n      <summary>Ruft die Prozessoren ab, auf denen die Ausführung der Threads in diesem Prozess geplant werden kann, oder legt diese fest.</summary>\r\n      <returns>Eine Bitmaske, die angibt, auf welchen Prozessoren die Threads im zugeordneten Prozess ausgeführt werden können.Der Standardwert hängt von der Anzahl der Prozessoren des Computers ab.Der Standardwert ist 2n -1, wobei n die Anzahl der Prozessoren ist.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> was not available.-or- The process has exited. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Refresh\">\r\n      <summary>Verwirft alle Informationen über den zugeordneten Prozess, die in der Prozesskomponente zwischengespeichert waren.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SafeHandle\">\r\n      <summary>Ruft das systemeigene Handle dieses Prozesses ab.</summary>\r\n      <returns>Das systemeigene Handle dieses Prozesses.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SessionId\">\r\n      <summary>Ruft die Terminaldienste-Sitzungs-ID für den zugeordneten Prozess ab.</summary>\r\n      <returns>Die Terminaldienste-Sitzungs-ID für den zugeordneten Prozess.</returns>\r\n      <exception cref=\"T:System.NullReferenceException\">There is no session associated with this process.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The <see cref=\"P:System.Diagnostics.Process.SessionId\" /> property is not supported on Windows 98.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardError\">\r\n      <summary>Ruft einen Stream ab, mit dem die Fehlerausgabe der Anwendung gelesen wird.</summary>\r\n      <returns>Ein <see cref=\"T:System.IO.StreamReader\" /> zum Lesen des Standardfehlerstreams der Anwendung.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginErrorReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardInput\">\r\n      <summary>Ruft einen Stream ab, in den die Eingaben der Anwendung geschrieben werden.</summary>\r\n      <returns>Ein <see cref=\"T:System.IO.StreamWriter\" /> zum Schreiben des Standardeingabestreams der Anwendung.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> stream has not been defined because <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" /> is set to false. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardOutput\">\r\n      <summary>Ruft einen Stream ab, der dazu verwendet wird, die Textausgabe der Anwendung zu lesen.</summary>\r\n      <returns>Ein <see cref=\"T:System.IO.StreamReader\" /> zum Lesen des Standardausgabestreams der Anwendung.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginOutputReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start\">\r\n      <summary>Startet die von der <see cref=\"P:System.Diagnostics.Process.StartInfo\" />-Eigenschaft dieser <see cref=\"T:System.Diagnostics.Process\" />-Komponente angegebene Prozessressource (oder verwendet sie erneut) und ordnet diese der Komponente zu.</summary>\r\n      <returns>true, wenn eine Prozessressource gestartet wird. false, wenn keine neue Prozessressource gestartet wird, sondern z. B. eine vorhandene Prozessressource wiederverwendet wird.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <see cref=\"T:System.Diagnostics.Process\" /> component's <see cref=\"P:System.Diagnostics.Process.StartInfo\" />.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> member of the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> property is true while <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is true. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)\">\r\n      <summary>Startet die Prozessressource, die durch den Parameter mit den Startinformationen für den Prozess angegeben wird (z. B. den Dateinamen des zu startenden Prozesses), und ordnet die Ressource einer neuen <see cref=\"T:System.Diagnostics.Process\" /> -Komponente zu.</summary>\r\n      <returns>Ein neuer <see cref=\"T:System.Diagnostics.Process\" />, der der Prozessressource zugeordnet ist oder null, wenn keine Prozessressource gestartet wurde.Beachten Sie, dass ein neuer Prozess, der parallel zu bereits ausgeführten Instanzen des gleichen Prozesses gestartet wird, unabhängig von den anderen Instanzen ist.Außerdem gibt „Start“ möglicherweise einen nicht leeren (nicht NULL) Prozess zurück, dessen Eigenschaft <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> bereits auf true festgelegt ist.In diesem Fall hat der gestartete Prozess möglicherweise eine vorhandene Instanz seiner selbst aktiviert und sich dann beendet.</returns>\r\n      <param name=\"startInfo\">Die <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />, die die Informationen zum Starten des Prozesses enthält, einschließlich Dateiname und Befehlszeilenargumente. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is also true.-or-The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UserName\" /> property is not null or empty or the <see cref=\"P:System.Diagnostics.ProcessStartInfo.Password\" /> property is not null.</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"startInfo\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The file specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property could not be found.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String)\">\r\n      <summary>Startet eine Prozessressource, indem der Name eines Dokuments oder einer Anwendungsdatei angegeben wird, und ordnet die Ressource einer neuen <see cref=\"T:System.Diagnostics.Process\" />-Komponente zu.</summary>\r\n      <returns>Ein neuer <see cref=\"T:System.Diagnostics.Process\" />, der der Prozessressource zugeordnet ist oder null, wenn keine Prozessressource gestartet wurde.Beachten Sie, dass ein neuer Prozess, der parallel zu bereits ausgeführten Instanzen des gleichen Prozesses gestartet wird, unabhängig von den anderen Instanzen ist.Außerdem gibt „Start“ möglicherweise einen nicht leeren (nicht NULL) Prozess zurück, dessen Eigenschaft <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> bereits auf true festgelegt ist.In diesem Fall hat der gestartete Prozess möglicherweise eine vorhandene Instanz seiner selbst aktiviert und sich dann beendet.</returns>\r\n      <param name=\"fileName\">Der Name eines Dokuments oder einer Anwendungsdatei, das bzw. die im Prozess ausgeführt werden soll. </param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String)\">\r\n      <summary>Startet eine Prozessressource durch Angeben des Namens einer Anwendung und einer Reihe von Befehlszeilenargumenten und ordnet die Ressource einer neuen <see cref=\"T:System.Diagnostics.Process\" />-Komponente zu.</summary>\r\n      <returns>Ein neuer <see cref=\"T:System.Diagnostics.Process\" />, der der Prozessressource zugeordnet ist oder null, wenn keine Prozessressource gestartet wurde.Beachten Sie, dass ein neuer Prozess, der parallel zu bereits ausgeführten Instanzen des gleichen Prozesses gestartet wird, unabhängig von den anderen Instanzen ist.Außerdem gibt „Start“ möglicherweise einen nicht leeren (nicht NULL) Prozess zurück, dessen Eigenschaft <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> bereits auf true festgelegt ist.In diesem Fall hat der gestartete Prozess möglicherweise eine vorhandene Instanz seiner selbst aktiviert und sich dann beendet.</returns>\r\n      <param name=\"fileName\">Der Name einer Anwendungsdatei, die in dem Prozess ausgeführt werden soll. </param>\r\n      <param name=\"arguments\">Befehlszeilenargumente, die beim Starten des Prozesses übergeben werden sollen. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <paramref name=\"fileName\" /> or <paramref name=\"arguments\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>Startet eine Prozessressource durch Angeben des Namens einer Anwendung, eines Benutzernamens und einer Domäne und ordnet die Ressource einer neuen <see cref=\"T:System.Diagnostics.Process\" />-Komponente zu.</summary>\r\n      <returns>Ein neuer <see cref=\"T:System.Diagnostics.Process\" />, der der Prozessressource zugeordnet ist oder null, wenn keine Prozessressource gestartet wurde.Beachten Sie, dass ein neuer Prozess, der parallel zu bereits ausgeführten Instanzen des gleichen Prozesses gestartet wird, unabhängig von den anderen Instanzen ist.Außerdem gibt „Start“ möglicherweise einen nicht leeren (nicht NULL) Prozess zurück, dessen Eigenschaft <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> bereits auf true festgelegt ist.In diesem Fall hat der gestartete Prozess möglicherweise eine vorhandene Instanz seiner selbst aktiviert und sich dann beendet.</returns>\r\n      <param name=\"fileName\">Der Name einer Anwendungsdatei, die in dem Prozess ausgeführt werden soll.</param>\r\n      <param name=\"userName\">Der beim Starten des Prozesses zu verwendende Benutzername.</param>\r\n      <param name=\"password\">Eine <see cref=\"T:System.Security.SecureString\" />, die das beim Starten des Prozesses zu verwendende Kennwort enthält.</param>\r\n      <param name=\"domain\">Die Domäne, die beim Starten des Prozesses verwendet werden soll.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>Startet eine Prozessressource durch Angeben des Namens einer Anwendung und einer Reihe von Befehlszeilenargumenten, eines Benutzernamens, eines Kennworts und einer Domäne und ordnet die Ressource einer neuen <see cref=\"T:System.Diagnostics.Process\" />-Komponente zu.</summary>\r\n      <returns>Ein neuer <see cref=\"T:System.Diagnostics.Process\" />, der der Prozessressource zugeordnet ist oder null, wenn keine Prozessressource gestartet wurde.Beachten Sie, dass ein neuer Prozess, der parallel zu bereits ausgeführten Instanzen des gleichen Prozesses gestartet wird, unabhängig von den anderen Instanzen ist.Außerdem gibt „Start“ möglicherweise einen nicht leeren (nicht NULL) Prozess zurück, dessen Eigenschaft <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> bereits auf true festgelegt ist.In diesem Fall hat der gestartete Prozess möglicherweise eine vorhandene Instanz seiner selbst aktiviert und sich dann beendet.</returns>\r\n      <param name=\"fileName\">Der Name einer Anwendungsdatei, die in dem Prozess ausgeführt werden soll. </param>\r\n      <param name=\"arguments\">Befehlszeilenargumente, die beim Starten des Prozesses übergeben werden sollen. </param>\r\n      <param name=\"userName\">Der beim Starten des Prozesses zu verwendende Benutzername.</param>\r\n      <param name=\"password\">Eine <see cref=\"T:System.Security.SecureString\" />, die das beim Starten des Prozesses zu verwendende Kennwort enthält.</param>\r\n      <param name=\"domain\">Die Domäne, die beim Starten des Prozesses verwendet werden soll.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartInfo\">\r\n      <summary>Ruft die Eigenschaften ab, die an die <see cref=\"M:System.Diagnostics.Process.Start\" />-Methode von <see cref=\"T:System.Diagnostics.Process\" /> übergeben werden sollen, oder legt diese fest.</summary>\r\n      <returns>Die <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />, die die Daten darstellt, mit denen der Prozess gestartet werden soll.Diese Argumente beinhalten den Namen der ausführbaren Datei oder des Dokuments, das zum Starten des Prozesses verwendet wurde.</returns>\r\n      <exception cref=\"T:System.ArgumentNullException\">The value that specifies the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> is null. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartTime\">\r\n      <summary>Ruft die Zeit ab, zu der der zugeordnete Prozess gestartet wurde.</summary>\r\n      <returns>Ein Objekt, das angibt, wann der zugeordnete Prozess gestartet wurde.Eine Ausnahme wird ausgelöst, wenn der Prozess nicht ausgeführt wird.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.StartTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or-The process has not been started.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred in the call to the Windows function.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Threads\">\r\n      <summary>Ruft die Gruppe von Threads ab, die im zugeordneten Prozess ausgeführt werden.</summary>\r\n      <returns>Ein Array vom Typ <see cref=\"T:System.Diagnostics.ProcessThread\" />, das die Threads des Betriebssystems darstellt, die gegenwärtig im zugeordneten Prozess ausgeführt werden.</returns>\r\n      <exception cref=\"T:System.SystemException\">The process does not have an <see cref=\"P:System.Diagnostics.Process.Id\" />, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" /> instance.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.TotalProcessorTime\">\r\n      <summary>Ruft die gesamte Prozessorzeit für diesen Prozess ab.</summary>\r\n      <returns>Eine <see cref=\"T:System.TimeSpan\" />, die die Zeitspanne angibt, während der der zugeordnete Prozess die CPU verwendet hat.Dieser Wert ist die Summe von <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> und <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" />.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.TotalProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.UserProcessorTime\">\r\n      <summary>Ruft die Benutzerprozessorzeit für diesen Prozess ab.</summary>\r\n      <returns>Eine <see cref=\"T:System.TimeSpan\" />, die die Zeitspanne angibt, während der der zugeordnete Prozess Code innerhalb der Anwendung des Prozesses (nicht im Betriebssystemkern) ausgeführt hat.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.VirtualMemorySize64\">\r\n      <summary>Ruft die Größe des virtuellen Speichers ab, der für den zugeordneten Prozess belegt wird.</summary>\r\n      <returns>Die Größe des virtuellen Speichers in Bytes, der für den zugeordneten Prozess belegt wird.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit\">\r\n      <summary>Weist die <see cref=\"T:System.Diagnostics.Process\" />-Komponente an, unbestimmte Zeit zu warten, bis der zugeordnete Prozess beendet wird.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\">\r\n      <summary>Weist die <see cref=\"T:System.Diagnostics.Process\" />-Komponente an, für die Dauer von angegebenen Millisekunden zu warten, bis der zugeordnete Prozess beendet wird.</summary>\r\n      <returns>true, wenn der zugeordnete Prozess beendet wurde, andernfalls false.</returns>\r\n      <param name=\"milliseconds\">Die Zeitspanne in Millisekunden, die auf die Beendigung des zugeordneten Prozesses gewartet werden soll.Der Höchstwert ist der größtmögliche Wert einer 32-Bit-Ganzzahl, der für das Betriebssystem unendlich bedeutet.</param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.WorkingSet64\">\r\n      <summary>Ruft die Größe des physischen Speichers ab, der für den zugeordneten Prozess belegt wird.</summary>\r\n      <returns>Die Größe des physischen Speichers in Bytes, der für den zugeordneten Prozess belegt wird.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModule\">\r\n      <summary>Stellt eine DLL- oder EXE-Datei dar, die in einen bestimmten Prozess geladen wird.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.BaseAddress\">\r\n      <summary>Ruft die Speicheradresse ab, an der das Modul geladen wurde.</summary>\r\n      <returns>Die Ladeadresse des Moduls.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.EntryPointAddress\">\r\n      <summary>Ruft die Speicheradresse für die Funktion ab, die beim Laden und Ausführen des Moduls ausgeführt wird.</summary>\r\n      <returns>Der Einstiegspunkt des Moduls.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.FileName\">\r\n      <summary>Ruft den vollständigen Pfad des Moduls ab.</summary>\r\n      <returns>Der voll gekennzeichnete Pfad, der den Speicherort des Moduls definiert.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleMemorySize\">\r\n      <summary>Ruft den zum Laden des Moduls erforderlichen Speicherplatz ab.</summary>\r\n      <returns>Die Größe des vom Modul belegten Speicherplatzes in Bytes.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleName\">\r\n      <summary>Ruft den Namen des Prozessmoduls ab.</summary>\r\n      <returns>Der Name des Moduls.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModule.ToString\">\r\n      <summary>Konvertiert den Namen des Moduls in eine Zeichenfolge.</summary>\r\n      <returns>Der Wert der <see cref=\"P:System.Diagnostics.ProcessModule.ModuleName\" />-Eigenschaft.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModuleCollection\">\r\n      <summary>Stellt eine Auflistung von <see cref=\"T:System.Diagnostics.ProcessModule\" />-Objekten mit starker Typisierung zur Verfügung.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor\">\r\n      <summary>Initialisiert eine neue Instanz der <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />-Klasse ohne zugeordnete <see cref=\"T:System.Diagnostics.ProcessModule\" />-Instanzen.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])\">\r\n      <summary>Initialisiert eine neue Instanz der <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />-Klasse mit dem angegebenen Array von <see cref=\"T:System.Diagnostics.ProcessModule\" />-Instanzen.</summary>\r\n      <param name=\"processModules\">Ein Array von <see cref=\"T:System.Diagnostics.ProcessModule\" />-Instanzen, mit denen diese <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />-Instanz initialisiert werden soll. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)\">\r\n      <summary>Bestimmt, ob das angegebene Prozessmodul in der Auflistung vorhanden ist.</summary>\r\n      <returns>true, wenn das Modul in der Auflistung vorhanden ist, andernfalls false.</returns>\r\n      <param name=\"module\">Eine <see cref=\"T:System.Diagnostics.ProcessModule\" />-Instanz, die das in dieser Auflistung zu suchende Modul anzeigt. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)\">\r\n      <summary>Kopiert ein Array von <see cref=\"T:System.Diagnostics.ProcessModule\" />-Instanzen am angegebenen Index in die Auflistung.</summary>\r\n      <param name=\"array\">Ein Array von <see cref=\"T:System.Diagnostics.ProcessModule\" />-Instanzen, das der Auflistung hinzugefügt werden soll. </param>\r\n      <param name=\"index\">Die Position, an der die neuen Instanzen eingefügt werden sollen. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)\">\r\n      <summary>Stellt die Position eines angegebenen Moduls in der Auflistung zur Verfügung.</summary>\r\n      <returns>Der nullbasierte Index, der die Position des Moduls in der <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> definiert.</returns>\r\n      <param name=\"module\">Der <see cref=\"T:System.Diagnostics.ProcessModule\" />, dessen Index abgerufen wird. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)\">\r\n      <summary>Ruft einen Index ab, mit dem die Gruppe von Prozessmodulen durchlaufen werden kann.</summary>\r\n      <returns>Ein <see cref=\"T:System.Diagnostics.ProcessModule\" />, das die Module in der Auflistung indiziert. </returns>\r\n      <param name=\"index\">Der nullbasierte Indexwert des Moduls in der Auflistung. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ProcessPriorityClass\">\r\n      <summary>Gibt die Priorität an, die das System einem Prozess zuordnet.Dieser Wert bestimmt, gemeinsam mit dem Prioritätswert für jeden Thread des Prozesses, die Basisprioritätsebene jedes Threads.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.AboveNormal\">\r\n      <summary>Gibt an, dass der Prozess eine höhere Priorität als Normal aufweist, aber eine niedrigere als <see cref=\"F:System.Diagnostics.ProcessPriorityClass.High\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.BelowNormal\">\r\n      <summary>Gibt an, dass der Prozess eine höhere Priorität als Idle aufweist, aber eine niedrigere als Normal.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.High\">\r\n      <summary>Gibt an, dass der Prozess zeitkritische Aufgaben ausführt, die sofort ausgeführt werden müssen, z. B. für das Dialogfeld Task List, das beim Aufruf durch den Benutzer unabhängig von der Last des Betriebssystems schnell angezeigt werden muss.Die Threads des Prozesses haben Vorrang vor den Threads von Prozessen in den Prioritätsklassen mit normaler oder Leerlaufpriorität.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Idle\">\r\n      <summary>Gibt an, dass die Threads dieses Prozesses nur ausgeführt werden, wenn sich das System im Leerlauf befindet. Trifft z. B. auf einen Bildschirmschoner zu.Vor den Threads dieses Prozesses haben die Threads eines beliebigen Prozesses Vorrang, der mit einer höheren Prioritätsklasse ausgeführt wird.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Normal\">\r\n      <summary>Gibt an, dass für den Prozess keine besondere Planung erforderlich ist.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.RealTime\">\r\n      <summary>Gibt an, dass der Prozess die höchstmögliche Priorität aufweist.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessStartInfo\">\r\n      <summary>Gibt eine Wertemenge an, die beim Starten eines Prozesses verwendet wird.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor\">\r\n      <summary>Initialisiert eine neue Instanz der <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />-Klasse, ohne einen Dateinamen anzugeben, mit dem der Prozess gestartet werden soll.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)\">\r\n      <summary>Initialisiert eine neue Instanz der <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />-Klasse und gibt einen Dateinamen an, mit dem der Prozess gestartet werden soll, z. B. eine Anwendung oder ein Dokument.</summary>\r\n      <param name=\"fileName\">Eine Anwendung oder ein Dokument, mit der bzw. dem ein Prozess gestartet wird. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)\">\r\n      <summary>Initialisiert eine neue Instanz der <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />-Klasse und gibt einen Anwendungsdateinamen an, mit dem der Prozess gestartet wird, sowie einen Satz von Befehlszeilenargumenten, die an die Anwendung übergeben werden.</summary>\r\n      <param name=\"fileName\">Eine Anwendung, mit der ein Prozess gestartet wird. </param>\r\n      <param name=\"arguments\">Befehlszeilenargumente, die beim Starten des Prozesses an die Anwendung übergeben werden sollen. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Arguments\">\r\n      <summary>Ruft den Satz von Befehlszeilenargumenten ab, die beim Starten der Anwendung verwendet werden sollen, oder legt diesen fest.</summary>\r\n      <returns>Eine einzelne Zeichenfolge, die die Argumente enthält, die an die in der <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" />-Eigenschaft angegebene Zielanwendung übergeben werden sollen.Der Standardwert ist eine leere Zeichenfolge (\"\").Unter Windows Vista und früheren Versionen des Windows-Betriebssystems muss die Länge der Argumente, die der Länge des vollständigen Pfads des Prozesses hinzugefügt werden, kleiner sein als 2080.Unter Windows 7 und höheren Versionen muss die Länge kleiner als 32699 sein.Argumente werden von der Zielanwendung analysiert und interpretiert und müssen daher den Erwartungen der betreffenden Anwendung entsprechen.Bei .NET-Anwendungen, wie sie in den Beispielen unten dargestellt sind, werden Leerzeichen als Trennzeichen zwischen Argumenten interpretiert.Ein einzelnes Argument, das Leerzeichen enthält, muss in Anführungszeichen eingeschlossen sein, diese Anführungszeichen werden jedoch nicht an die Zielanwendung übergeben.Eingeschlossene Anführungszeichen, die in das endgültige analysierte Argument aufgenommen werden sollen, müssen dreifach escaped werden.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.CreateNoWindow\">\r\n      <summary>Ruft einen Wert ab, der angibt, ob der Prozess in einem neuen Fenster gestartet werden soll, oder legt diesen fest.</summary>\r\n      <returns>true, wenn der Prozess ohne Erstellung eines neuen, für ihn bestimmten Fensters gestartet werden soll, andernfalls false.Die Standardeinstellung ist false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Domain\">\r\n      <summary>Ruft einen Wert ab, der die Domäne kennzeichnet, die beim Starten des Prozesses verwendet werden soll, oder legt diesen fest. </summary>\r\n      <returns>Die Active Directory-Domäne, die beim Starten des Prozesses verwendet werden soll.Die Domäneneigenschaft ist hauptsächlich für Benutzer in Unternehmensumgebungen von Interesse, die Active Directory verwenden.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Environment\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.FileName\">\r\n      <summary>Ruft die zu startende Anwendung oder das zu startende Dokument ab oder legt die Anwendung bzw. das Dokument fest.</summary>\r\n      <returns>Der Name der zu startenden Anwendung oder der Dokumentname eines einer Anwendung zugeordneten Dateityps, für den eine Standard-Öffnen-Aktion verfügbar ist.Der Standardwert ist eine leere Zeichenfolge (\"\").</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.LoadUserProfile\">\r\n      <summary>Ruft einen Wert ab, der angibt, ob das Windows-Benutzerprofil aus der Registrierung geladen werden soll, oder legt diesen fest. </summary>\r\n      <returns>true, wenn das Windows-Benutzerprofil geladen werden soll; andernfalls false.Die Standardeinstellung ist false.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Password\">\r\n      <summary>Ruft eine sichere Zeichenfolge ab, die das Benutzerkennwort enthält, das beim Starten des Prozesses verwendet werden soll, oder legt diese fest.</summary>\r\n      <returns>Das beim Starten des Prozesses zu verwendende Kennwort.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\">\r\n      <summary>Ruft einen Wert ab, der angibt, ob die Fehlerausgabe einer Anwendung in den <see cref=\"P:System.Diagnostics.Process.StandardError\" />-Datenstrom geschrieben wird, oder legt diesen fest.</summary>\r\n      <returns>true, wenn die Fehlerausgabe in <see cref=\"P:System.Diagnostics.Process.StandardError\" /> geschrieben werden soll; andernfalls false.Die Standardeinstellung ist false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\">\r\n      <summary>Ruft einen Wert ab, der angibt, ob die Eingabe für eine Anwendung aus dem <see cref=\"P:System.Diagnostics.Process.StandardInput\" />-Datenstrom gelesen wird, oder legt diesen fest.</summary>\r\n      <returns>true, wenn die Eingabe von <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> gelesen werden soll; andernfalls false.Die Standardeinstellung ist false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\">\r\n      <summary>Ruft einen Wert ab, der angibt, ob die Textausgabe einer Anwendung in den <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />-Datenstrom geschrieben wird, oder legt diesen fest.</summary>\r\n      <returns>true, wenn die Ausgabe in <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> geschrieben werden soll; andernfalls false.Die Standardeinstellung ist false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding\">\r\n      <summary>Ruft die bevorzugte Codierung für die Fehlerausgabe ab oder legt diese fest.</summary>\r\n      <returns>Ein Objekt, das die bevorzugte Codierung für die Fehlerausgabe darstellt.Die Standardeinstellung ist null.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding\">\r\n      <summary>Ruft die bevorzugte Codierung für die Standardausgabe ab oder legt diese fest.</summary>\r\n      <returns>Ein Objekt, das die bevorzugte Codierung für die Standardausgabe darstellt.Die Standardeinstellung ist null.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UserName\">\r\n      <summary>Ruft den beim Starten des Prozesses zu verwendenden Benutzernamen ab oder legt diesen fest.</summary>\r\n      <returns>Der beim Starten des Prozesses zu verwendende Benutzername.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\">\r\n      <summary>Ruft einen Wert ab, der angibt, ob zum Starten des Prozesses die Betriebssystemshell verwendet werden soll, oder legt diesen fest.</summary>\r\n      <returns>true, wenn beim Starten des Prozesses die Shell verwendet werden soll; false, wenn der Prozess direkt von der ausführbaren Datei aus erstellt werden soll.Die Standardeinstellung ist true.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.WorkingDirectory\">\r\n      <summary>Ruft das Arbeitsverzeichnis für den zu startenden Prozess ab, oder legt es fest, wenn die <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> Eigenschaft false ist.Ruft das Verzeichnis ab, das den zu startenden Prozess enthält, oder legt es fest, wenn <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" />true ist.</summary>\r\n      <returns>Wenn <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" />true ist, der voll gekennzeichnete Name des Verzeichnisses, das den zu startenden Prozess enthält.Wenn die <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> Eigenschaft false ist, das Arbeitsverzeichnis für den zu startenden Prozess.Der Standardwert ist eine leere Zeichenfolge (\"\").</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThread\">\r\n      <summary>Stellt einen Prozessthread für ein Betriebssystem dar.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.BasePriority\">\r\n      <summary>Ruft die Basispriorität des Threads ab.</summary>\r\n      <returns>Die Basispriorität des Threads, die vom Betriebssystem durch Kombinieren der Prioritätsklasse des Prozesses mit der Prioritätsebene des zugeordneten Threads errechnet wird.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.CurrentPriority\">\r\n      <summary>Ruft die aktuelle Priorität des Threads ab.</summary>\r\n      <returns>Die aktuelle Priorität des Threads. Abhängig davon, wie das Betriebssystem den Thread plant, kann diese Priorität von der Basispriorität abweichen.Die Priorität kann für einen aktiven Thread vorübergehend erhöht werden.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.Id\">\r\n      <summary>Ruft den eindeutigen Bezeichner des Threads ab.</summary>\r\n      <returns>Der eindeutige Bezeichner, der dem angegebenen Thread zugeordnet ist.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.IdealProcessor\">\r\n      <summary>Legt den bevorzugten Prozessor fest, auf dem dieser Thread ausgeführt werden soll.</summary>\r\n      <returns>Der bevorzugte Prozessor für den Thread, der bei der Threadplanung des Systems verwendet wird, die bestimmt, auf welchem Prozessor der Thread ausgeführt werden soll.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Das System konnte die Ausführung des Threads nicht auf den angegebenen Prozessor festlegen. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityBoostEnabled\">\r\n      <summary>Ruft einen Wert ab, der angibt, ob das Betriebssystem die Priorität des zugeordneten Threads vorübergehend erhöhen soll, sobald das Hauptfenster des Threadprozesses den Fokus hat, oder legt diesen Wert fest.</summary>\r\n      <returns>true, wenn die Priorität des Threads bei Interaktion des Benutzers mit der Schnittstelle erhöht werden soll, andernfalls false.Die Standardeinstellung ist false.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Die Informationen zur Prioritätserhöhung konnten nicht abgerufen werden.- oder -Die Informationen zur Prioritätserhöhung konnten nicht festgelegt werden. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityLevel\">\r\n      <summary>Ruft die Prioritätsebene des Threads ab oder legt diese fest.</summary>\r\n      <returns>Einer der <see cref=\"T:System.Diagnostics.ThreadPriorityLevel\" />-Werte, der einen Bereich für die Begrenzung der Priorität des Threads angibt.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Die Informationen für die Prioritätsebene des Threads konnten nicht abgerufen werden. - oder -Die Prioritätsebene für den Thread konnte nicht festgelegt werden.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime\">\r\n      <summary>Ruft die Zeit ab, während der der Thread im Betriebssystemkern Code ausgeführt hat.</summary>\r\n      <returns>Eine <see cref=\"T:System.TimeSpan\" />, die angibt, wie lange der Thread im Betriebssystemkern Code ausgeführt hat.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Die Threadzeit konnte nicht abgerufen werden. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ProcessorAffinity\">\r\n      <summary>Legt die Prozessoren fest, auf denen der zugeordnete Thread ausgeführt werden kann.</summary>\r\n      <returns>Ein <see cref=\"T:System.IntPtr\" />, das auf eine Gruppe von Bits zeigt, wovon jedes einzelne einen Prozessor darstellt, auf dem der Thread ausgeführt werden kann.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Die Prozessoraffinität konnte nicht festgelgt werden. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThread.ResetIdealProcessor\">\r\n      <summary>Setzt den für diesen Thread idealen Prozessor zurück, um anzugeben, dass kein einzelner idealer Prozessor vorhanden ist.Das heißt, dass jeder Prozessor ideal sein kann.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Der ideale Prozessor konnte nicht zurückgesetzt werden. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartAddress\">\r\n      <summary>Ruft die Speicheradresse der Funktion ab, die vom Betriebssystem aufgerufen wurde, das diesen Thread gestartet hat.</summary>\r\n      <returns>Die Anfangsadresse des Threads, die auf die vom Thread ausgeführte anwendungsdefinierte Funktion zeigt.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartTime\">\r\n      <summary>Ruft die Zeit ab, zu der das Betriebssystem den Thread gestartet hat.</summary>\r\n      <returns>Eine <see cref=\"T:System.DateTime\" />, die die Zeit auf dem System darstellt, zu der das Betriebssystem den Thread gestartet hat.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Die Threadzeit konnte nicht abgerufen werden. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ThreadState\">\r\n      <summary>Ruft den aktuellen Zustand dieses Threads ab.</summary>\r\n      <returns>Ein <see cref=\"T:System.Diagnostics.ThreadState\" />, der die Ausführung des Threads angibt, z. B. wird ausgeführt, wartet oder wurde beendet.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.TotalProcessorTime\">\r\n      <summary>Ruft die gesamte Zeit ab, während der der Thread den Prozessor verwendet hat.</summary>\r\n      <returns>Eine <see cref=\"T:System.TimeSpan\" />, die die Zeit angibt, während der Thread den Prozessor gesteuert hat.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Die Threadzeit konnte nicht abgerufen werden. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.UserProcessorTime\">\r\n      <summary>Ruft die Zeit ab, während der der zugeordnete Thread in der Anwendung Code ausgeführt hat.</summary>\r\n      <returns>Eine <see cref=\"T:System.TimeSpan\" />, die angibt, wie lange der Thread Code in der Anwendung (im Gegensatz zum Betriebssystemkern) ausgeführt hat.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Die Threadzeit konnte nicht abgerufen werden. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.WaitReason\">\r\n      <summary>Ruft die Ursache für den Wartezustand des Threads ab.</summary>\r\n      <returns>Eine <see cref=\"T:System.Diagnostics.ThreadWaitReason\" />, die die Ursache für den Wartezustand des Threads darstellt.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">Der Thread befindet sich nicht im Wartezustand. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Die Plattform ist Windows 98 oder Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Der Prozess wird auf einem Remotecomputer ausgeführt.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThreadCollection\">\r\n      <summary>Stellt eine Auflistung von <see cref=\"T:System.Diagnostics.ProcessThread\" />-Objekten mit starker Typisierung zur Verfügung.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor\">\r\n      <summary>Initialisiert eine neue Instanz der <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />-Klasse ohne zugeordnete <see cref=\"T:System.Diagnostics.ProcessThread\" />-Instanzen.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])\">\r\n      <summary>Initialisiert eine neue Instanz der <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />-Klasse mit dem angegebenen Array von <see cref=\"T:System.Diagnostics.ProcessThread\" />-Instanzen.</summary>\r\n      <param name=\"processThreads\">Ein Array von <see cref=\"T:System.Diagnostics.ProcessThread\" />-Instanzen, mit denen diese <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />-Instanz initialisiert werden soll. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)\">\r\n      <summary>Fügt einen Prozessthread an die Auflistung an.</summary>\r\n      <returns>Der nullbasierte Index des Threads in der Auflistung.</returns>\r\n      <param name=\"thread\">Der der Auflistung hinzuzufügende Thread. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)\">\r\n      <summary>Bestimmt, ob der angegebene Prozessthread in der Auflistung enthalten ist.</summary>\r\n      <returns>true, wenn der Thread in der Auflistung vorhanden ist, andernfalls false.</returns>\r\n      <param name=\"thread\">Eine <see cref=\"T:System.Diagnostics.ProcessThread\" />-Instanz, die den in dieser Auflistung zu suchenden Thread anzeigt. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)\">\r\n      <summary>Kopiert ein Array von <see cref=\"T:System.Diagnostics.ProcessThread\" />-Instanzen am angegebenen Index in die Auflistung.</summary>\r\n      <param name=\"array\">Ein Array von <see cref=\"T:System.Diagnostics.ProcessThread\" />-Instanzen, das der Auflistung hinzugefügt werden soll. </param>\r\n      <param name=\"index\">Die Position, an der die neuen Instanzen eingefügt werden sollen. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)\">\r\n      <summary>Stellt die Position eines angegebenen Threads in der Auflistung zur Verfügung.</summary>\r\n      <returns>Der nullbasierte Index, der die Position des Threads in der <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> definiert.</returns>\r\n      <param name=\"thread\">Der <see cref=\"T:System.Diagnostics.ProcessThread\" />, dessen Index abgerufen wird. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)\">\r\n      <summary>Fügt an der angegebenen Position einen Prozessthread in die Auflistung ein.</summary>\r\n      <param name=\"index\">Der nullbasierte Index, der die Position angibt, an der der Thread eingefügt werden soll. </param>\r\n      <param name=\"thread\">Der in die Auflistung einzufügende Thread. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)\">\r\n      <summary>Ruft einen Index ab, mit dem die Gruppe von Prozessthreads durchlaufen werden kann.</summary>\r\n      <returns>Ein <see cref=\"T:System.Diagnostics.ProcessThread\" />, der die Threads in der Auflistung indiziert.</returns>\r\n      <param name=\"index\">Der nullbasierte Indexwert des Threads in der Auflistung. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)\">\r\n      <summary>Löscht einen Prozessthread aus der Auflistung.</summary>\r\n      <param name=\"thread\">Der Thread, der aus der Auflistung entfernt werden soll. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ThreadPriorityLevel\">\r\n      <summary>Gibt die Prioritätsebene eines Threads an.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.AboveNormal\">\r\n      <summary>Gibt eine Stufe über der normalen Priorität für die zugeordnete <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> an.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.BelowNormal\">\r\n      <summary>Gibt eine Stufe unter der normalen Priorität für die zugeordnete <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> an.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Highest\">\r\n      <summary>Gibt die höchste Priorität an.Dies ist zwei Stufen über der normalen Priorität für die zugeordnete <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Idle\">\r\n      <summary>Gibt die Leerlaufpriorität an.Dies ist der niedrigste mögliche Prioritätswert aller Threads, unabhängig vom Wert der zugeordneten <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Lowest\">\r\n      <summary>Gibt die niedrigste Priorität an.Dies ist zwei Stufen unter der normalen Priorität für die zugeordnete <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Normal\">\r\n      <summary>Gibt die normale Priorität für die zugeordnete <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> an.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.TimeCritical\">\r\n      <summary>Gibt die auf die Ausführungsgeschwindigkeit bezogene Priorität an.Dies ist die höchste Priorität aller Threads, unabhängig vom Wert der zugeordneten <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadState\">\r\n      <summary>Gibt den aktuellen Ausführungszustand des Threads an.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Initialized\">\r\n      <summary>Ein Zustand, der angibt, dass der Thread initialisiert wurde, jedoch noch nicht gestartet ist.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Ready\">\r\n      <summary>Ein Zustand, der anzeigt, dass der Thread auf die Verwendung eines Prozessors wartet, da gegenwärtig kein Prozessor frei ist.Der Thread kann auf dem nächsten verfügbaren Prozessor ausgeführt werden.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Running\">\r\n      <summary>Ein Zustand, der angibt, dass der Thread zurzeit einen Prozessor verwendet.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Standby\">\r\n      <summary>Ein Zustand, der angibt, dass der Thread gerade einen Prozessor verwenden will.In diesem Zustand kann sich jeweils nur ein Thread befinden.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Terminated\">\r\n      <summary>Ein Zustand, der angibt, dass der Thread die Ausführung abgeschlossen hat und beendet wurde.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Transition\">\r\n      <summary>Ein Zustand, der angibt, dass der Thread auf eine andere Ressource als den Prozessor wartet, bevor er ausgeführt werden kann.Er könnte z. B. darauf warten, dass der Ausführungsstapel von der Festplatte gelesen wird.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Unknown\">\r\n      <summary>Der Zustand des Threads ist unbekannt.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Wait\">\r\n      <summary>Ein Zustand, der angibt, dass der Thread den Prozessor nicht verwenden kann, da er auf die Beendigung einer Operation in der Peripherie oder auf das Freiwerden einer Ressource wartet.Wenn der Thread bereit ist, wird der Start neu geplant.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadWaitReason\">\r\n      <summary>Gibt die Ursache für den Wartezustand eines Threads an.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairHigh\">\r\n      <summary>Der Thread wartet auf das Ereignispaar High.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairLow\">\r\n      <summary>Der Thread wartet auf das Ereignispaar Low.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.ExecutionDelay\">\r\n      <summary>Die Ausführung des Threads wird verzögert.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Executive\">\r\n      <summary>Der Thread wartet auf den Planer.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.FreePage\">\r\n      <summary>Der Thread wartet auf eine freie Seite im virtuellen Speicher.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReceive\">\r\n      <summary>Der Thread wartet auf die Ankunft eines Aufrufs einer lokalen Prozedur.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReply\">\r\n      <summary>Der Thread wartet darauf, dass die Antwort auf den Aufruf einer lokalen Prozedur ankommt.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageIn\">\r\n      <summary>Der Thread wartet auf die Ankunft einer Seite des virtuellen Speichers im Arbeitsspeicher.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageOut\">\r\n      <summary>Der Thread wartet darauf, dass eine Seite des virtuellen Speichers auf den Datenträger geschrieben wird.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Suspended\">\r\n      <summary>Die Ausführung des Threads wurde unterbrochen.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.SystemAllocation\">\r\n      <summary>Der Thread wartet auf Reservierung durch das System.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Unknown\">\r\n      <summary>Der Thread befindet sich aus unbekannten Gründen im Wartezustand.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.UserRequest\">\r\n      <summary>Der Thread wartet auf eine Benutzeranforderung.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.VirtualMemory\">\r\n      <summary>Der Thread wartet darauf, dass das System virtuellen Speicher belegt.</summary>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/es/System.Diagnostics.Process.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<doc>\r\n  <assembly>\r\n    <name>System.Diagnostics.Process</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\">\r\n      <summary>[CRÍTICO PARA LA SEGURIDAD] Proporciona un contenedor administrado para un identificador de proceso.</summary>\r\n    </member>\r\n    <member name=\"M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)\">\r\n      <summary>[CRÍTICO PARA LA SEGURIDAD] Inicializa una nueva instancia de la <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> clase a partir del identificador especificado, que indica si se va a liberar el identificador durante la fase de finalización. </summary>\r\n      <param name=\"existingHandle\">El identificador para ajustarse.</param>\r\n      <param name=\"ownsHandle\">truepara permitir de forma confiable <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> liberar el identificador durante la fase de finalización; de lo contrario, false.</param>\r\n    </member>\r\n    <member name=\"P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid\"></member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventArgs\">\r\n      <summary>Proporciona datos para los eventos <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> y <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.DataReceivedEventArgs.Data\">\r\n      <summary>Obtiene la línea de caracteres escrita en un flujo de salida de <see cref=\"T:System.Diagnostics.Process\" /> redirigido.</summary>\r\n      <returns>Línea escrita por una secuencia <see cref=\"T:System.Diagnostics.Process\" /> asociada en su secuencia <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> o <see cref=\"P:System.Diagnostics.Process.StandardError\" /> redirigida.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventHandler\">\r\n      <summary>Representa el método que controlará los eventos <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> o <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> de un <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <param name=\"sender\">Origen del evento. </param>\r\n      <param name=\"e\">Objeto <see cref=\"T:System.Diagnostics.DataReceivedEventArgs\" /> que contiene los datos del evento. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.Process\">\r\n      <summary>Proporciona acceso a procesos locales y remotos, y permite iniciar y detener procesos del sistema local.Para examinar el código fuente de .NET Framework de este tipo, consulte el origen de referencia.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.#ctor\">\r\n      <summary>Inicializa una nueva instancia de la clase <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.BasePriority\">\r\n      <summary>Obtiene la prioridad base del proceso asociado.</summary>\r\n      <returns>Prioridad base, que se calcula a partir de <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> del proceso asociado.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or- The process has not started, so there is no process ID. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginErrorReadLine\">\r\n      <summary>Inicia las operaciones de lectura asincrónica en la secuencia de <see cref=\"P:System.Diagnostics.Process.StandardError\" /> redirigida de la aplicación.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginOutputReadLine\">\r\n      <summary>Inicia las operaciones de lectura asincrónica en la secuencia de <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> redirigida de la aplicación.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelErrorRead\">\r\n      <summary>Cancela la operación de lectura asincrónica en la secuencia redirigida de <see cref=\"P:System.Diagnostics.Process.StandardError\" /> de una aplicación.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelOutputRead\">\r\n      <summary>Cancela la operación de lectura asincrónica en la secuencia redirigida de <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> de una aplicación.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose\"></member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose(System.Boolean)\">\r\n      <summary>Libera todos los recursos utilizados por este proceso.</summary>\r\n      <param name=\"disposing\">Es true para liberar tanto recursos administrados como no administrados; es false para liberar únicamente recursos no administrados. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.EnableRaisingEvents\">\r\n      <summary>Obtiene o establece si el evento <see cref=\"E:System.Diagnostics.Process.Exited\" /> debe provocarse cuando termine el proceso.</summary>\r\n      <returns>Es true si el evento <see cref=\"E:System.Diagnostics.Process.Exited\" /> debe provocarse cuando termine el proceso asociado (al salir o al llamar a <see cref=\"M:System.Diagnostics.Process.Kill\" />); de lo contrario, es false.De manera predeterminada, es false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.EnterDebugMode\">\r\n      <summary>Coloca un componente <see cref=\"T:System.Diagnostics.Process\" /> en estado de interacción con los procesos del sistema operativo que se ejecutan en un modo especial; para ello, habilita la propiedad nativa SeDebugPrivilege en el subproceso actual.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.ErrorDataReceived\">\r\n      <summary>Se produce cuando una aplicación escribe en su secuencia redirigida de <see cref=\"P:System.Diagnostics.Process.StandardError\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitCode\">\r\n      <summary>Obtiene el valor especificado por el proceso asociado al terminar.</summary>\r\n      <returns>Código especificado por el proceso asociado al terminar.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has not exited.-or- The process <see cref=\"P:System.Diagnostics.Process.Handle\" /> is not valid. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitCode\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.Exited\">\r\n      <summary>Se produce cuando termina un proceso.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitTime\">\r\n      <summary>Obtiene el momento en el que terminó el proceso asociado.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.DateTime\" /> que indica cuándo terminó el proceso asociado.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetCurrentProcess\">\r\n      <summary>Obtiene un nuevo componente <see cref=\"T:System.Diagnostics.Process\" /> y lo asocia al proceso que está activo en ese momento.</summary>\r\n      <returns>Nuevo componente <see cref=\"T:System.Diagnostics.Process\" /> que está asociado al recurso del proceso que se está ejecutando en la aplicación que realiza la llamada.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32)\">\r\n      <summary>Devuelve un nuevo componente <see cref=\"T:System.Diagnostics.Process\" />, dado un identificador de un proceso en el equipo local.</summary>\r\n      <returns>Componente <see cref=\"T:System.Diagnostics.Process\" /> asociado al recurso del proceso local que se identifica mediante el parámetro <paramref name=\"processId\" />.</returns>\r\n      <param name=\"processId\">Identificador de un recurso de proceso único en el sistema. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)\">\r\n      <summary>Devuelve un nuevo componente <see cref=\"T:System.Diagnostics.Process\" />, dados un identificador de proceso y el nombre de un equipo en la red.</summary>\r\n      <returns>Componente <see cref=\"T:System.Diagnostics.Process\" /> asociado a un recurso de proceso remoto que se identifica mediante el parámetro <paramref name=\"processId\" />.</returns>\r\n      <param name=\"processId\">Identificador de un recurso de proceso único en el sistema. </param>\r\n      <param name=\"machineName\">Nombre de un equipo en la red. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.-or- The <paramref name=\"machineName\" /> parameter syntax is invalid.The name might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses\">\r\n      <summary>Crea un nuevo componente <see cref=\"T:System.Diagnostics.Process\" /> para cada recurso de proceso del equipo local.</summary>\r\n      <returns>Matriz de tipo <see cref=\"T:System.Diagnostics.Process\" /> que representa todos los recursos del proceso que se ejecutan en el equipo local.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses(System.String)\">\r\n      <summary>Crea un nuevo componente <see cref=\"T:System.Diagnostics.Process\" /> para cada recurso de proceso en el equipo especificado.</summary>\r\n      <returns>Matriz de tipo <see cref=\"T:System.Diagnostics.Process\" /> que representa todos los recursos del proceso que se ejecutan en el equipo especificado.</returns>\r\n      <param name=\"machineName\">Equipo desde el que se lee la lista de procesos. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String)\">\r\n      <summary>Crea una matriz de nuevos componentes <see cref=\"T:System.Diagnostics.Process\" /> y los asocia a todos los recursos de proceso del equipo local que comparten el nombre de proceso especificado.</summary>\r\n      <returns>Matriz de tipo <see cref=\"T:System.Diagnostics.Process\" /> que representa los recursos del proceso que ejecutan la aplicación o el archivo especificado.</returns>\r\n      <param name=\"processName\">Nombre descriptivo del proceso. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)\">\r\n      <summary>Crea una matriz de nuevos componentes <see cref=\"T:System.Diagnostics.Process\" /> y los asocia a todos los recursos de proceso de un equipo remoto que comparten el nombre del proceso especificado.</summary>\r\n      <returns>Matriz de tipo <see cref=\"T:System.Diagnostics.Process\" /> que representa los recursos del proceso que ejecutan la aplicación o el archivo especificado.</returns>\r\n      <param name=\"processName\">Nombre descriptivo del proceso. </param>\r\n      <param name=\"machineName\">Nombre de un equipo en la red. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.HasExited\">\r\n      <summary>Obtiene un valor que indica si el proceso asociado ha finalizado.</summary>\r\n      <returns>Es true si el proceso del sistema operativo al que hace referencia el componente <see cref=\"T:System.Diagnostics.Process\" /> ha terminado; de lo contrario, es false.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with the object. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The exit code for the process could not be retrieved. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.HasExited\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Id\">\r\n      <summary>Obtiene el identificador único del proceso asociado.</summary>\r\n      <returns>Identificador único generado por el sistema del proceso al que hace referencia esta instancia de <see cref=\"T:System.Diagnostics.Process\" />.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process's <see cref=\"P:System.Diagnostics.Process.Id\" /> property has not been set.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Kill\">\r\n      <summary>Detiene inmediatamente el proceso asociado.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to call <see cref=\"M:System.Diagnostics.Process.Kill\" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has already exited. -or-There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.LeaveDebugMode\">\r\n      <summary>Recupera un componente <see cref=\"T:System.Diagnostics.Process\" /> del estado que le permite interactuar con procesos del sistema operativo que se ejecuten en un modo especial.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MachineName\">\r\n      <summary>Obtiene el nombre del equipo en el que se está ejecutando el proceso asociado.</summary>\r\n      <returns>Nombre del equipo en el que se está ejecutando el proceso asociado.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MainModule\">\r\n      <summary>Obtiene el módulo principal del proceso asociado.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> utilizado para iniciar el proceso.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MainModule\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A 32-bit process is trying to access the modules of a 64-bit process.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MaxWorkingSet\">\r\n      <summary>Obtiene o establece el tamaño máximo permitido para el espacio de trabajo del proceso asociado.</summary>\r\n      <returns>Tamaño máximo permitido para el espacio de trabajo del proceso en la memoria expresado en bytes.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MaxWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MinWorkingSet\">\r\n      <summary>Obtiene o establece el tamaño mínimo permitido para el espacio de trabajo del proceso asociado.</summary>\r\n      <returns>Tamaño mínimo necesario para el espacio de trabajo del proceso en la memoria expresado en bytes.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MinWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Modules\">\r\n      <summary>Obtiene los módulos cargados por el proceso asociado.</summary>\r\n      <returns>Matriz de tipo <see cref=\"T:System.Diagnostics.ProcessModule\" /> que representa los módulos cargados por el proceso asociado.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for either the system process or the idle process.These processes do not have modules.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.NonpagedSystemMemorySize64\">\r\n      <summary>Obtiene el tamaño de la memoria no paginada del sistema que se ha asignado para el proceso asociado.</summary>\r\n      <returns>El tamaño de la memoria del sistema, expresado en bytes, que se ha asignado para el proceso asociado que no puede escribirse en el archivo de paginación de la memoria virtual.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.OnExited\">\r\n      <summary>Genera el evento <see cref=\"E:System.Diagnostics.Process.Exited\" />.</summary>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.OutputDataReceived\">\r\n      <summary>Se produce cada vez que una aplicación escribe una línea en su secuencia <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> redirigida.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedMemorySize64\">\r\n      <summary>Obtiene el tamaño de la memoria paginada asignada para el proceso asociado.</summary>\r\n      <returns>El tamaño de la memoria, expresado en bytes, asignada en el archivo de paginación de la memoria virtual para el proceso asociado.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedSystemMemorySize64\">\r\n      <summary>Obtiene el tamaño de la memoria paginable del sistema que se ha asignado para el proceso asociado.</summary>\r\n      <returns>El tamaño de la memoria del sistema, expresado en bytes, que se ha asignado para el proceso asociado que puede escribirse en el archivo de paginación de la memoria virtual.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakPagedMemorySize64\">\r\n      <summary>Obtiene el tamaño de memoria máximo en el archivo de paginación de la memoria virtual que utiliza el proceso asociado.</summary>\r\n      <returns>El tamaño de memoria máximo, expresado en bytes, asignado en el archivo de paginación de la memoria virtual para el proceso asociado desde su inicio.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakVirtualMemorySize64\">\r\n      <summary>Obtiene el tamaño máximo de la memoria virtual que utiliza el proceso asociado.</summary>\r\n      <returns>El tamaño máximo de memoria virtual, expresado en bytes, que se ha asignado para el proceso asociado desde su inicio.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakWorkingSet64\">\r\n      <summary>Obtiene el tamaño máximo de la memoria física que utiliza el proceso asociado.</summary>\r\n      <returns>El tamaño máximo de memoria física, expresado en bytes, que se ha asignado para el proceso asociado desde su inicio.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityBoostEnabled\">\r\n      <summary>Obtiene o establece un valor que indica si el sistema operativo debería aumentar temporalmente la prioridad del proceso asociado cuando la ventana principal tenga el foco.</summary>\r\n      <returns>Es true si la prioridad del proceso debe aumentarse dinámicamente cuando este salga del estado de espera; de lo contrario, es false.De manera predeterminada, es false.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Priority boost information could not be retrieved from the associated process resource. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityBoostEnabled\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityClass\">\r\n      <summary>Obtiene o establece la categoría de prioridad general del proceso asociado.</summary>\r\n      <returns>Categoría de prioridad del proceso asociado a partir de la cual se calcula el <see cref=\"P:System.Diagnostics.Process.BasePriority\" /> del proceso.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">You have set the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>\r\n      <exception cref=\"T:System.ComponentModel.InvalidEnumArgumentException\">Priority class cannot be set because it does not use a valid value, as defined in the <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> enumeration.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivateMemorySize64\">\r\n      <summary>Obtiene el tamaño de la memoria privada asignada para el proceso asociado.</summary>\r\n      <returns>El tamaño de la memoria, expresado en bytes, que se ha asignado para el proceso asociado que no puede compartirse con otros procesos.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\">\r\n      <summary>Obtiene el tiempo de procesador con privilegios de este proceso.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" /> que indica la cantidad de tiempo que el proceso ha invertido en la ejecución de código dentro del núcleo del sistema operativo.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessName\">\r\n      <summary>Obtiene el nombre del proceso.</summary>\r\n      <returns>Nombre que el sistema utiliza para identificar el proceso ante el usuario.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process does not have an identifier, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" />.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is not on this computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessorAffinity\">\r\n      <summary>Obtiene o establece los procesadores en los que se puede programar la ejecución de los subprocesos de este proceso.</summary>\r\n      <returns>Máscara de bits que representa los procesadores en los que pueden ejecutarse los subprocesos del proceso asociado.El valor predeterminado depende del número de procesadores del equipo.El valor predeterminado es 2 n -1, donde n representa el número de procesadores.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> was not available.-or- The process has exited. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Refresh\">\r\n      <summary>Descarta cualquier información acerca del proceso asociado que se haya almacenado en caché en el componente del proceso.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SafeHandle\">\r\n      <summary>Obtiene el identificador nativo de este proceso.</summary>\r\n      <returns>Identificador nativo de este proceso.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SessionId\">\r\n      <summary>Obtiene el identificador de la sesión de Terminal Services para el proceso asociado.</summary>\r\n      <returns>El identificador de la sesión de Terminal Services para el proceso asociado.</returns>\r\n      <exception cref=\"T:System.NullReferenceException\">There is no session associated with this process.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The <see cref=\"P:System.Diagnostics.Process.SessionId\" /> property is not supported on Windows 98.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardError\">\r\n      <summary>Obtiene una secuencia utilizada para leer la salida de errores de la aplicación.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IO.StreamReader\" /> que puede utilizarse para leer la secuencia de error estándar de la aplicación.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginErrorReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardInput\">\r\n      <summary>Obtiene una secuencia que se utiliza para escribir la entrada de la aplicación.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IO.StreamWriter\" /> que puede utilizarse para escribir la secuencia de entrada estándar de la aplicación.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> stream has not been defined because <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" /> is set to false. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardOutput\">\r\n      <summary>Obtiene una secuencia usada para leer la salida de texto de la aplicación.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IO.StreamReader\" /> que puede utilizarse para leer la secuencia de salida estándar de la aplicación.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginOutputReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start\">\r\n      <summary>Inicia (o reutiliza) el recurso de proceso especificado en la propiedad <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> de este componente <see cref=\"T:System.Diagnostics.Process\" /> y lo asocia al componente.</summary>\r\n      <returns>Es true si se inicia un recurso de proceso; es false si no se inicia ningún recurso de proceso nuevo (por ejemplo, si se reutiliza un recurso existente).</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <see cref=\"T:System.Diagnostics.Process\" /> component's <see cref=\"P:System.Diagnostics.Process.StartInfo\" />.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> member of the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> property is true while <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is true. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)\">\r\n      <summary>Inicia el recurso de proceso que se especifica mediante el parámetro que contiene la información de inicio del proceso (por ejemplo, el nombre de archivo del proceso que se va a iniciar) y asocia el recurso a un nuevo componente <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nuevo <see cref=\"T:System.Diagnostics.Process\" /> que está asociado al recurso del proceso, o null si no se inicia ningún recurso de proceso.Tenga en cuenta que un proceso nuevo que se inicie junto a instancias del mismo proceso ya en ejecución será independiente del resto.Además, Inicio puede devolver un proceso no nulo con su propiedad <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> ya establecida en true.En tal caso, el proceso iniciado puede haber activado una instancia existente de sí mismo y, a continuación, haber salido.</returns>\r\n      <param name=\"startInfo\">\r\n        <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> que contiene la información que se utiliza para iniciar el proceso, incluidos el nombre de archivo y los argumentos de línea de comandos. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is also true.-or-The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UserName\" /> property is not null or empty or the <see cref=\"P:System.Diagnostics.ProcessStartInfo.Password\" /> property is not null.</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"startInfo\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The file specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property could not be found.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String)\">\r\n      <summary>Inicia un recurso de proceso con la especificación del nombre de un documento o de un archivo de aplicación y asocia el recurso a un nuevo componente <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nuevo <see cref=\"T:System.Diagnostics.Process\" /> que está asociado al recurso del proceso, o null si no se inicia ningún recurso de proceso.Tenga en cuenta que un proceso nuevo que se inicie junto a instancias del mismo proceso ya en ejecución será independiente del resto.Además, Inicio puede devolver un proceso no nulo con su propiedad <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> ya establecida en true.En tal caso, el proceso iniciado puede haber activado una instancia existente de sí mismo y, a continuación, haber salido.</returns>\r\n      <param name=\"fileName\">Nombre de un archivo de documento o aplicación que se va a ejecutar en el proceso. </param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String)\">\r\n      <summary>Inicia un recurso de proceso mediante la especificación del nombre de una aplicación y un conjunto de argumentos de línea de comandos, y asocia el recurso a un nuevo componente <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nuevo <see cref=\"T:System.Diagnostics.Process\" /> que está asociado al recurso del proceso, o null si no se inicia ningún recurso de proceso.Tenga en cuenta que un proceso nuevo que se inicie junto a instancias del mismo proceso ya en ejecución será independiente del resto.Además, Inicio puede devolver un proceso no nulo con su propiedad <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> ya establecida en true.En tal caso, el proceso iniciado puede haber activado una instancia existente de sí mismo y, a continuación, haber salido.</returns>\r\n      <param name=\"fileName\">Nombre de un archivo de aplicación que se va a ejecutar en el proceso. </param>\r\n      <param name=\"arguments\">Argumentos de línea de comandos que se van a pasar al iniciar el proceso. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <paramref name=\"fileName\" /> or <paramref name=\"arguments\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>Inicia un recurso de proceso mediante la especificación del nombre de una aplicación, un nombre de usuario, una contraseña y un dominio, y asocia el recurso a un nuevo componente de <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nuevo <see cref=\"T:System.Diagnostics.Process\" /> que está asociado al recurso del proceso, o null si no se inicia ningún recurso de proceso.Tenga en cuenta que un proceso nuevo que se inicie junto a instancias del mismo proceso ya en ejecución será independiente del resto.Además, Inicio puede devolver un proceso no nulo con su propiedad <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> ya establecida en true.En tal caso, el proceso iniciado puede haber activado una instancia existente de sí mismo y, a continuación, haber salido.</returns>\r\n      <param name=\"fileName\">Nombre de un archivo de aplicación que se va a ejecutar en el proceso.</param>\r\n      <param name=\"userName\">Nombre de usuario que se va a utilizar al iniciarse el proceso.</param>\r\n      <param name=\"password\">\r\n        <see cref=\"T:System.Security.SecureString\" /> que contiene la contraseña que se va a utilizar al iniciarse el proceso.</param>\r\n      <param name=\"domain\">Dominio que se va a utilizar al iniciarse el proceso.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>Inicia un recurso de proceso mediante la especificación del nombre de una aplicación y un conjunto de argumentos de línea de comandos, un nombre de usuario, una contraseña y un dominio, y asocia el recurso a un nuevo componente de <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nuevo <see cref=\"T:System.Diagnostics.Process\" /> que está asociado al recurso del proceso, o null si no se inicia ningún recurso de proceso.Tenga en cuenta que un proceso nuevo que se inicie junto a instancias del mismo proceso ya en ejecución será independiente del resto.Además, Inicio puede devolver un proceso no nulo con su propiedad <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> ya establecida en true.En tal caso, el proceso iniciado puede haber activado una instancia existente de sí mismo y, a continuación, haber salido.</returns>\r\n      <param name=\"fileName\">Nombre de un archivo de aplicación que se va a ejecutar en el proceso. </param>\r\n      <param name=\"arguments\">Argumentos de línea de comandos que se van a pasar al iniciar el proceso. </param>\r\n      <param name=\"userName\">Nombre de usuario que se va a utilizar al iniciarse el proceso.</param>\r\n      <param name=\"password\">\r\n        <see cref=\"T:System.Security.SecureString\" /> que contiene la contraseña que se va a utilizar al iniciarse el proceso.</param>\r\n      <param name=\"domain\">Dominio que se va a utilizar al iniciarse el proceso.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartInfo\">\r\n      <summary>Obtiene o establece las propiedades que se pasan al método <see cref=\"M:System.Diagnostics.Process.Start\" /> de <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> que representa los datos con los que iniciar el proceso.Estos argumentos incluyen el nombre del archivo ejecutable o del documento que se utilizó para iniciar el proceso.</returns>\r\n      <exception cref=\"T:System.ArgumentNullException\">The value that specifies the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> is null. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartTime\">\r\n      <summary>Obtiene el momento en el que se inició el proceso asociado.</summary>\r\n      <returns>Objeto que indica cuándo se inició el proceso.Si no se está ejecutando el proceso, se produce una excepción.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.StartTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or-The process has not been started.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred in the call to the Windows function.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Threads\">\r\n      <summary>Obtiene el conjunto de subprocesos que se están ejecutando en el proceso asociado.</summary>\r\n      <returns>Matriz de tipo <see cref=\"T:System.Diagnostics.ProcessThread\" /> que representa los subprocesos del sistema operativo que se están ejecutando actualmente en el proceso asociado.</returns>\r\n      <exception cref=\"T:System.SystemException\">The process does not have an <see cref=\"P:System.Diagnostics.Process.Id\" />, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" /> instance.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.TotalProcessorTime\">\r\n      <summary>Obtiene el tiempo de procesador total de este proceso.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" /> indica la cantidad de tiempo que el proceso asociado ha empleado en utilizar la CPU.Este valor es la suma de <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> y <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" />.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.TotalProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.UserProcessorTime\">\r\n      <summary>Obtiene el tiempo de procesador de usuario de este proceso.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" /> que indica la cantidad de tiempo que el proceso asociado ha empleado en ejecutar código en la parte de la aplicación que corresponde al proceso (no en el núcleo del sistema operativo).</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.VirtualMemorySize64\">\r\n      <summary>Obtiene el tamaño de la memoria virtual que se ha asignado para el proceso asociado.</summary>\r\n      <returns>El tamaño de memoria virtual, expresado en bytes, que se ha asignado para el proceso asociado.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit\">\r\n      <summary>Indica al componente <see cref=\"T:System.Diagnostics.Process\" /> que espere indefinidamente hasta que el proceso asociado termine.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\">\r\n      <summary>Indica al componente <see cref=\"T:System.Diagnostics.Process\" /> que espere a que el proceso asociado termine durante el número de milisegundos especificado.</summary>\r\n      <returns>Es true si el proceso asociado ha terminado; de lo contrario, es false.</returns>\r\n      <param name=\"milliseconds\">Cantidad de tiempo, en milisegundos, que se esperará hasta que termine el proceso asociado.El valor máximo es el valor mayor posible de un entero de 32 bits, que representa el infinito para el sistema operativo.</param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.WorkingSet64\">\r\n      <summary>Obtiene el tamaño de la memoria física que se ha asignado para el proceso asociado.</summary>\r\n      <returns>El tamaño de memoria física, expresado en bytes, que se ha asignado para el proceso asociado.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModule\">\r\n      <summary>Representa a un archivo .dll o .exe que se carga en un proceso determinado.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.BaseAddress\">\r\n      <summary>Devuelve la dirección de memoria en la que se cargó el módulo.</summary>\r\n      <returns>Dirección de carga del módulo.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.EntryPointAddress\">\r\n      <summary>Obtiene la dirección de memoria de la función que se ejecuta cuando el sistema carga y ejecuta el módulo.</summary>\r\n      <returns>Punto de entrada del módulo.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.FileName\">\r\n      <summary>Obtiene la ruta de acceso completa al módulo.</summary>\r\n      <returns>Ruta de acceso completa que define la ubicación del módulo.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleMemorySize\">\r\n      <summary>Obtiene la cantidad de memoria necesaria para cargar el módulo.</summary>\r\n      <returns>Tamaño, en bytes, de la memoria que ocupa el módulo.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleName\">\r\n      <summary>Obtiene el nombre del módulo del proceso.</summary>\r\n      <returns>El nombre del módulo.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModule.ToString\">\r\n      <summary>Convierte el nombre del módulo en una cadena.</summary>\r\n      <returns>Valor de la propiedad <see cref=\"P:System.Diagnostics.ProcessModule.ModuleName\" />.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModuleCollection\">\r\n      <summary>Proporciona una colección de objetos <see cref=\"T:System.Diagnostics.ProcessModule\" /> fuertemente tipados.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor\">\r\n      <summary>Inicializa una nueva instancia de la clase <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />, sin instancias de <see cref=\"T:System.Diagnostics.ProcessModule\" /> asociadas.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])\">\r\n      <summary>Inicializa una nueva instancia de la clase <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> utilizando la matriz de instancias de <see cref=\"T:System.Diagnostics.ProcessModule\" /> especificada.</summary>\r\n      <param name=\"processModules\">Matriz de instancias de <see cref=\"T:System.Diagnostics.ProcessModule\" /> con la que se inicializa esta instancia de <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)\">\r\n      <summary>Determina si el módulo de proceso especificado se encuentra en la colección.</summary>\r\n      <returns>Es true si el módulo está en la colección; en caso contrario, es false.</returns>\r\n      <param name=\"module\">Instancia de <see cref=\"T:System.Diagnostics.ProcessModule\" /> que indica el módulo que se va a buscar en la colección. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)\">\r\n      <summary>Copia una matriz de instancias de <see cref=\"T:System.Diagnostics.ProcessModule\" /> en la colección, en el índice especificado.</summary>\r\n      <param name=\"array\">Matriz de instancias de <see cref=\"T:System.Diagnostics.ProcessModule\" /> que se va a agregar a la colección. </param>\r\n      <param name=\"index\">Ubicación en la que se van a agregar las nuevas instancias. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)\">\r\n      <summary>Proporciona la ubicación de un módulo especificado en la colección.</summary>\r\n      <returns>Índice de base cero que define la ubicación del módulo en <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />.</returns>\r\n      <param name=\"module\">Objeto <see cref=\"T:System.Diagnostics.ProcessModule\" /> cuyo índice se recupera. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)\">\r\n      <summary>Obtiene un índice para recorrer en iteración el conjunto de módulos de proceso.</summary>\r\n      <returns>Objeto <see cref=\"T:System.Diagnostics.ProcessModule\" /> que indiza los módulos de la colección. </returns>\r\n      <param name=\"index\">Valor del índice de base cero del módulo de la colección. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ProcessPriorityClass\">\r\n      <summary>Indica la prioridad que el sistema asocia a un proceso.Este valor, junto con el valor de prioridad de cada subproceso del proceso, determina el nivel de prioridad base de cada subproceso.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.AboveNormal\">\r\n      <summary>Especifica que el proceso tiene una prioridad superior a Normal pero inferior a <see cref=\"F:System.Diagnostics.ProcessPriorityClass.High\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.BelowNormal\">\r\n      <summary>Especifica que el proceso tiene una prioridad superior a Idle pero inferior a Normal.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.High\">\r\n      <summary>Especifica que el proceso realiza tareas críticas en el tiempo que deben ejecutarse de inmediato, como el cuadro de diálogo Task List, que debe responder rápidamente cuando el usuario lo llama, independientemente de la carga del sistema operativo.Los subprocesos del proceso tienen prioridad sobre los subprocesos de aquellos procesos de clase de prioridad normal o inactiva.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Idle\">\r\n      <summary>Especifica que los subprocesos de este proceso se ejecutan solo cuando el sistema está inactivo, como el protector de pantalla.Los subprocesos del proceso tienen menor prioridad que los subprocesos de cualquier proceso que se ejecute en una clase de prioridad más alta.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Normal\">\r\n      <summary>Especifica que el proceso no tiene necesidades de programación especiales.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.RealTime\">\r\n      <summary>Especifica que el proceso tiene la prioridad más alta posible.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessStartInfo\">\r\n      <summary>Especifica un conjunto de valores que se usa cuando se inicia un proceso. </summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor\">\r\n      <summary>Inicializa una nueva instancia de la clase <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> sin especificar un nombre de archivo con el que iniciar el proceso.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)\">\r\n      <summary>Inicializa una nueva instancia de la clase <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> y especifica un nombre de archivo, como una aplicación o un documento, con el que se inicia el proceso.</summary>\r\n      <param name=\"fileName\">Aplicación o documento con que se inicia un proceso. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)\">\r\n      <summary>Inicializa una nueva instancia de la clase <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> y especifica un nombre de archivo de aplicación con el que se iniciará el proceso, así como un conjunto de argumentos de línea de comandos que se pasarán a la aplicación.</summary>\r\n      <param name=\"fileName\">Aplicación con que se inicia un proceso. </param>\r\n      <param name=\"arguments\">Argumentos de línea de comandos que se van a pasar a la aplicación al iniciar el proceso. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Arguments\">\r\n      <summary>Obtiene o establece el conjunto de argumentos de línea de comandos que se van a usar al iniciar la aplicación.</summary>\r\n      <returns>Cadena única que contiene los argumentos para pasar a la aplicación de destino especificada en la propiedad <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" />.El valor predeterminado es una cadena vacía (\"\").En Windows Vista y versiones anteriores del sistema operativo Windows, la longitud de los argumentos sumada a la longitud de la ruta de acceso completa al proceso debe ser inferior a 2080.En Windows 7 y versiones posteriores, la longitud debe ser inferior a 32.699.Los argumentos se analizan e interpretan mediante la aplicación de destino, por lo que deben estar en línea con las expectativas de la aplicación.En las aplicaciones .NET, como se muestra en los ejemplos siguientes, los espacios se interpretan como una separación entre varios argumentos.Un solo argumento que incluye espacios debe incluirse entre comillas, pero las comillas no se llevan a cabo en la aplicación de destino.En las comillas incluidas en el argumento final analizado, se elude triplemente cada marca.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.CreateNoWindow\">\r\n      <summary>Obtiene o establece un valor que indica si el proceso se va a iniciar en una nueva ventana.</summary>\r\n      <returns>true si el proceso se debe iniciar sin crear una nueva ventana que lo contenga; de lo contrario, es false.De manera predeterminada, es false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Domain\">\r\n      <summary>Obtiene o establece un valor que identifica el dominio que se va a usar al iniciarse el proceso. </summary>\r\n      <returns>El dominio de Active Directory que se va a usar al iniciarse el proceso.La propiedad de dominio es especialmente interesante para los usuarios en entornos de empresa que usan Active Directory.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Environment\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.FileName\">\r\n      <summary>Obtiene o establece la aplicación o el documento que se va a iniciar.</summary>\r\n      <returns>Nombre de la aplicación que se va a iniciar o nombre de un documento que tiene un tipo de archivo asociado a una aplicación que dispone de una acción de apertura predeterminada.El valor predeterminado es una cadena vacía (\"\").</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.LoadUserProfile\">\r\n      <summary>Obtiene o establece un valor que indica si el perfil de usuario de Windows se va a cargar desde el registro. </summary>\r\n      <returns>true si el perfil de usuario de Windows se debe cargar; de lo contrario, es false.De manera predeterminada, es false.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Password\">\r\n      <summary>Obtiene o establece una cadena segura que contiene la contraseña del usuario que se va a usar al iniciar el proceso.</summary>\r\n      <returns>Contraseña de usuario que se va a usar al iniciar el proceso.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\">\r\n      <summary>Obtiene o establece un valor que indica si la salida de errores de una aplicación se escribe en la secuencia de <see cref=\"P:System.Diagnostics.Process.StandardError\" />.</summary>\r\n      <returns>true si la salida de errores se debe escribir en <see cref=\"P:System.Diagnostics.Process.StandardError\" />; en caso contrario, es false.De manera predeterminada, es false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\">\r\n      <summary>Obtiene o establece un valor que indica si la entrada para una aplicación se lee de la secuencia de <see cref=\"P:System.Diagnostics.Process.StandardInput\" />.</summary>\r\n      <returns>true si la entrada se debe leer desde <see cref=\"P:System.Diagnostics.Process.StandardInput\" />; en caso contrario, es false.De manera predeterminada, es false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\">\r\n      <summary>Obtiene o establece un valor que indica si la salida de una aplicación se escribe en la secuencia de <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />.</summary>\r\n      <returns>true si la salida se debe escribir en <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />; de lo contrario, es false.De manera predeterminada, es false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding\">\r\n      <summary>Obtiene o establece la codificación preferente para la salida de errores.</summary>\r\n      <returns>Objeto que representa la codificación preferente para la salida de errores.De manera predeterminada, es null.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding\">\r\n      <summary>Obtiene o establece la codificación preferente para la salida estándar.</summary>\r\n      <returns>Objeto que representa la codificación preferente para la salida estándar.De manera predeterminada, es null.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UserName\">\r\n      <summary>Obtiene o establece el nombre de usuario que se va a usar al iniciar el proceso.</summary>\r\n      <returns>Nombre de usuario que se va a utilizar al iniciarse el proceso.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\">\r\n      <summary>Obtiene o establece un valor que indica si se va a usar el shell del sistema operativo para iniciar el proceso.</summary>\r\n      <returns>true si el shell se debe usar al iniciar el proceso; false si el proceso debería crearse directamente desde el archivo ejecutable.De manera predeterminada, es true.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.WorkingDirectory\">\r\n      <summary>Cuando la propiedad de <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> es false, obtiene o establece el directorio de trabajo para que el proceso se inicie.Cuando <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> es true, obtiene o establece el directorio que contiene el proceso que se iniciará.</summary>\r\n      <returns>Cuando <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> es true, el nombre completo del directorio que contiene el proceso que se va a iniciar.Cuando la propiedad de <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> es false, el directorio de trabajo para que el proceso se inicie.El valor predeterminado es una cadena vacía (\"\").</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThread\">\r\n      <summary>Representa un subproceso del sistema operativo.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.BasePriority\">\r\n      <summary>Obtiene la prioridad base del subproceso.</summary>\r\n      <returns>Prioridad base del subproceso, calculada por el sistema operativo mediante la combinación de la clase de prioridad del proceso y el nivel de prioridad del subproceso asociado.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.CurrentPriority\">\r\n      <summary>Obtiene la prioridad actual del subproceso.</summary>\r\n      <returns>Prioridad actual del subproceso, que puede variar respecto a la prioridad base en función de cómo programe el subproceso el sistema operativo.Es posible aumentar temporalmente la prioridad para un subproceso activo.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.Id\">\r\n      <summary>Obtiene el identificador único del subproceso.</summary>\r\n      <returns>Identificador único asociado a un subproceso específico.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.IdealProcessor\">\r\n      <summary>Establece el procesador preferido para ejecutar este subproceso.</summary>\r\n      <returns>Procesador preferido para el subproceso, que se utiliza cuando el sistema programa los subprocesos, con el fin de determinar en qué procesador se ejecutará.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">El sistema no pudo establecer el subproceso para que se iniciara en el procesador especificado. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plataforma es Windows 98 o Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">El proceso está en un equipo remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityBoostEnabled\">\r\n      <summary>Obtiene o establece un valor que indica si el sistema operativo debe aumentar temporalmente la prioridad del subproceso asociado siempre que la ventana principal del proceso del subproceso reciba el foco.</summary>\r\n      <returns>Es true para aumentar la prioridad del subproceso cuando el usuario interactúe con la interfaz del proceso; de lo contrario, es false.El valor predeterminado es false.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">No se pudo recuperar la información del aumento de prioridad.O bienNo se pudo establecer la información del aumento de prioridad. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plataforma es Windows 98 o Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">El proceso está en un equipo remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityLevel\">\r\n      <summary>Obtiene o establece el nivel de prioridad del subproceso.</summary>\r\n      <returns>Uno de los valores de <see cref=\"T:System.Diagnostics.ThreadPriorityLevel\" />, que especifica un intervalo que limita la prioridad del subproceso.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">No se pudo recuperar la información del nivel de prioridad de subproceso. O bienNo se pudo establecer el nivel de prioridad del subproceso.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plataforma es Windows 98 o Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">El proceso está en un equipo remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime\">\r\n      <summary>Obtiene el tiempo durante el cual el subproceso ha ejecutado código dentro del núcleo del sistema operativo.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" /> que indica la cantidad de tiempo que el subproceso ha estado ejecutando código dentro del núcleo del sistema operativo.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">No se pudo recuperar el tiempo del subproceso. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plataforma es Windows 98 o Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">El proceso está en un equipo remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ProcessorAffinity\">\r\n      <summary>Establece los procesadores en los que puede ejecutarse el subproceso asociado.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IntPtr\" /> que señala a un conjunto de bits, cada uno de los cuales representa a un procesador en el que puede ejecutarse el subproceso.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">No se pudo establecer la afinidad de procesador. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plataforma es Windows 98 o Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">El proceso está en un equipo remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThread.ResetIdealProcessor\">\r\n      <summary>Restablece el procesador ideal para este subproceso a fin de indicar que no hay un solo procesador ideal.En otras palabras, cualquier procesador es ideal.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">No se pudo restablecer el procesador ideal. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plataforma es Windows 98 o Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">El proceso está en un equipo remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartAddress\">\r\n      <summary>Obtiene la dirección de memoria de la función a la que llamó el sistema operativo para iniciar este subproceso.</summary>\r\n      <returns>Dirección inicial del subproceso, que señala a la función definida por la aplicación que el subproceso ejecuta.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plataforma es Windows 98 o Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">El proceso está en un equipo remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartTime\">\r\n      <summary>Obtiene la hora a la que el sistema operativo inició el subproceso.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.DateTime\" /> que representa la hora que tenía el sistema cuando el sistema operativo inició el subproceso.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">No se pudo recuperar el tiempo del subproceso. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plataforma es Windows 98 o Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">El proceso está en un equipo remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ThreadState\">\r\n      <summary>Obtiene el estado actual de este subproceso.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ThreadState\" /> que indica el estado de ejecución del subproceso; por ejemplo, en ejecución, en espera o terminado.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plataforma es Windows 98 o Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">El proceso está en un equipo remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.TotalProcessorTime\">\r\n      <summary>Obtiene la cantidad total de tiempo que este subproceso ha estado usando el procesador.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" /> que indica la cantidad de tiempo que el subproceso ha tenido el control del procesador.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">No se pudo recuperar el tiempo del subproceso. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plataforma es Windows 98 o Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">El proceso está en un equipo remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.UserProcessorTime\">\r\n      <summary>Obtiene el tiempo durante el cual el subproceso asociado ha ejecutado código dentro de la aplicación.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" /> que indica la cantidad de tiempo que el subproceso ha estado ejecutando código dentro de la aplicación, en lugar de dentro del núcleo del sistema operativo.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">No se pudo recuperar el tiempo del subproceso. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plataforma es Windows 98 o Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">El proceso está en un equipo remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.WaitReason\">\r\n      <summary>Obtiene la razón por la que el subproceso está esperando.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ThreadWaitReason\" /> que representa la razón por la cual el subproceso se encuentra en estado de espera.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">El subproceso no se encuentra en estado de espera. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plataforma es Windows 98 o Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">El proceso está en un equipo remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThreadCollection\">\r\n      <summary>Proporciona una colección de objetos <see cref=\"T:System.Diagnostics.ProcessThread\" /> fuertemente tipados.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor\">\r\n      <summary>Inicializa una instancia nueva de la clase <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />, sin instancias de <see cref=\"T:System.Diagnostics.ProcessThread\" /> asociadas.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])\">\r\n      <summary>Inicializa una instancia nueva de la clase <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> utilizando la matriz de instancias de <see cref=\"T:System.Diagnostics.ProcessThread\" /> especificada.</summary>\r\n      <param name=\"processThreads\">Matriz de instancias de <see cref=\"T:System.Diagnostics.ProcessThread\" /> con la que se inicializa esta instancia de <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)\">\r\n      <summary>Agrega un subproceso del proceso a la colección.</summary>\r\n      <returns>Índice de base cero del subproceso de la colección.</returns>\r\n      <param name=\"thread\">Subproceso que se va a agregar a la colección. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)\">\r\n      <summary>Determina si el subproceso de proceso especificado se encuentra en la colección.</summary>\r\n      <returns>Es true si el subproceso está en la colección; en caso contrario, es false.</returns>\r\n      <param name=\"thread\">Instancia de <see cref=\"T:System.Diagnostics.ProcessThread\" /> que indica el subproceso que se va a buscar en la colección. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)\">\r\n      <summary>Copia una matriz de instancias de <see cref=\"T:System.Diagnostics.ProcessThread\" /> en la colección, en el índice especificado.</summary>\r\n      <param name=\"array\">Matriz de instancias de <see cref=\"T:System.Diagnostics.ProcessThread\" /> que se va a agregar a la colección. </param>\r\n      <param name=\"index\">Ubicación en la que se van a agregar las nuevas instancias. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)\">\r\n      <summary>Proporciona la ubicación de un subproceso especificado en la colección.</summary>\r\n      <returns>Índice de base cero que define la ubicación del subproceso en la <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />.</returns>\r\n      <param name=\"thread\">\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> cuyo índice se recupera. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)\">\r\n      <summary>Inserta un subproceso de proceso en la ubicación especificada de la colección.</summary>\r\n      <param name=\"index\">Índice de base cero que indica la ubicación en la que se va a insertar el subproceso. </param>\r\n      <param name=\"thread\">Subproceso que se va a insertar en la colección. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)\">\r\n      <summary>Obtiene un índice para recorrer en iteración el conjunto de subprocesos.</summary>\r\n      <returns>Objeto <see cref=\"T:System.Diagnostics.ProcessThread\" /> que indiza los subprocesos de la colección.</returns>\r\n      <param name=\"index\">Valor del índice de base cero del subproceso de la colección. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)\">\r\n      <summary>Elimina un subproceso de proceso de la colección.</summary>\r\n      <param name=\"thread\">Subproceso que se va a quitar de la colección. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ThreadPriorityLevel\">\r\n      <summary>Especifica el nivel de prioridad de un subproceso.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.AboveNormal\">\r\n      <summary>Especifica un paso por encima de la prioridad normal para la clase <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> asociada.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.BelowNormal\">\r\n      <summary>Especifica un paso por debajo de la prioridad normal para la clase <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> asociada.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Highest\">\r\n      <summary>Especifica la prioridad más alta.En otras palabras, dos pasos por encima de la prioridad normal para la clase <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> asociada.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Idle\">\r\n      <summary>Especifica la prioridad de inactividad.Éste es el valor de prioridad más bajo posible para todos los subprocesos, independientemente del valor de la clase <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> asociada.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Lowest\">\r\n      <summary>Especifica la prioridad más baja.Es decir, dos pasos por debajo de la prioridad normal para la clase <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> asociada.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Normal\">\r\n      <summary>Especifica la prioridad normal para la clase <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> asociada.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.TimeCritical\">\r\n      <summary>Especifica la prioridad de tiempo crítico.Éste es el valor de prioridad más alto de todos los subprocesos, independientemente del valor de la clase <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> asociada.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadState\">\r\n      <summary>Especifica el estado de ejecución actual del subproceso.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Initialized\">\r\n      <summary>Estado que indica que el subproceso se ha inicializado, pero no se ha iniciado todavía.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Ready\">\r\n      <summary>Estado que indica que el subproceso está esperando para usar un procesador porque no hay ninguno libre.El subproceso está preparado para ejecutarse en el primer procesador que quede disponible.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Running\">\r\n      <summary>Estado que indica que el subproceso está usando un procesador actualmente.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Standby\">\r\n      <summary>Estado que indica que el subproceso va a empezar a usar un procesador.En un momento dado, sólo puede haber un subproceso en este estado.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Terminated\">\r\n      <summary>Estado que indica que el subproceso ha finalizado su ejecución y ha terminado.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Transition\">\r\n      <summary>Estado que indica que el subproceso está esperando un recurso, que no es el procesador, para poder ejecutarse.Por ejemplo, puede estar esperando a que la pila de ejecución se pagine desde el disco.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Unknown\">\r\n      <summary>No se conoce el estado del subproceso.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Wait\">\r\n      <summary>Estado que indica que el subproceso no está listo para usar el procesador porque está esperando a que termine una operación periférica o a que quede libre un recurso.Cuando el subproceso esté listo, se volverá a programar.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadWaitReason\">\r\n      <summary>Especifica la razón por la que el subproceso está esperando.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairHigh\">\r\n      <summary>El subproceso está esperando un par de eventos alto.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairLow\">\r\n      <summary>El subproceso está esperando un par de eventos bajo.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.ExecutionDelay\">\r\n      <summary>La ejecución del subproceso está retardada.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Executive\">\r\n      <summary>El subproceso está esperando al programador.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.FreePage\">\r\n      <summary>El subproceso está esperando una página de memoria virtual libre.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReceive\">\r\n      <summary>El subproceso está esperando a que llegue una llamada a procedimiento local.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReply\">\r\n      <summary>El subproceso está esperando a que llegue la respuesta a una llamada a procedimiento local.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageIn\">\r\n      <summary>El subproceso está esperando a que llegue a la memoria una página de memoria virtual.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageOut\">\r\n      <summary>El subproceso está esperando a que se escriba en el disco una página de memoria virtual.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Suspended\">\r\n      <summary>La ejecución del subproceso está suspendida.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.SystemAllocation\">\r\n      <summary>El subproceso está esperando la asignación del sistema.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Unknown\">\r\n      <summary>No se conoce la razón por la que el subproceso está esperando.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.UserRequest\">\r\n      <summary>El subproceso está esperando una solicitud del usuario.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.VirtualMemory\">\r\n      <summary>El subproceso está esperando a que el sistema asigne memoria virtual.</summary>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/fr/System.Diagnostics.Process.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<doc>\r\n  <assembly>\r\n    <name>System.Diagnostics.Process</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\">\r\n      <summary>[ESSENTIEL POUR LA SÉCURITÉ] Fournit un wrapper managé pour un handle de processus.</summary>\r\n    </member>\r\n    <member name=\"M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)\">\r\n      <summary>[ESSENTIEL POUR LA SÉCURITÉ] Initialise une nouvelle instance de la <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> classe à partir du handle spécifié, indiquant s'il faut libérer le handle pendant la phase de finalisation. </summary>\r\n      <param name=\"existingHandle\">Handle à encapsuler.</param>\r\n      <param name=\"ownsHandle\">truePour vous permettre de manière fiable <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> libérer le handle pendant la phase de finalisation ; Sinon, false.</param>\r\n    </member>\r\n    <member name=\"P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid\"></member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventArgs\">\r\n      <summary>Fournit des données pour les événements <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> et <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.DataReceivedEventArgs.Data\">\r\n      <summary>Obtient la ligne de caractères qui a été écrite dans un flux de sortie <see cref=\"T:System.Diagnostics.Process\" /> redirigé.</summary>\r\n      <returns>Ligne qui a été écrite par un <see cref=\"T:System.Diagnostics.Process\" /> associé à son <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> redirigé ou à son flux <see cref=\"P:System.Diagnostics.Process.StandardError\" />.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventHandler\">\r\n      <summary>Représente la méthode qui gérera l'événement <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> ou l'événement <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> de <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <param name=\"sender\">Source de l'événement. </param>\r\n      <param name=\"e\">\r\n        <see cref=\"T:System.Diagnostics.DataReceivedEventArgs\" /> qui contient les données d'événement. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.Process\">\r\n      <summary>Fournit l'accès à des processus locaux ainsi que distants, et vous permet de démarrer et d'arrêter des processus système locaux.Pour parcourir le code source de .NET Framework pour ce type, consultez la Source de référence.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.#ctor\">\r\n      <summary>Initialise une nouvelle instance de la classe <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.BasePriority\">\r\n      <summary>Obtient la priorité de base du processus associé.</summary>\r\n      <returns>Priorité de base, calculée à partir du <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> du processus associé.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or- The process has not started, so there is no process ID. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginErrorReadLine\">\r\n      <summary>Commence des opérations de lecture asynchrones sur le flux de données <see cref=\"P:System.Diagnostics.Process.StandardError\" /> redirigé de l'application.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginOutputReadLine\">\r\n      <summary>Commence des opérations de lecture asynchrones sur le flux de données <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> redirigé de l'application.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelErrorRead\">\r\n      <summary>Annule l'opération de lecture asynchrone sur le flux <see cref=\"P:System.Diagnostics.Process.StandardError\" /> redirigé d'une application.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelOutputRead\">\r\n      <summary>Annule l'opération de lecture asynchrone sur le flux <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> redirigé d'une application.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose\"></member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose(System.Boolean)\">\r\n      <summary>Libère toutes les ressources utilisées par ce processus.</summary>\r\n      <param name=\"disposing\">true pour libérer les ressources managées et non managées ; false pour ne libérer que les ressources non managées. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.EnableRaisingEvents\">\r\n      <summary>Obtient ou définit une valeur indiquant si l'événement <see cref=\"E:System.Diagnostics.Process.Exited\" /> est déclenché quand le processus ne s'exécute plus.</summary>\r\n      <returns>true si l'événement <see cref=\"E:System.Diagnostics.Process.Exited\" /> doit être déclenché une fois que le processus associé n'est plus exécuté (sortie ou appel à <see cref=\"M:System.Diagnostics.Process.Kill\" />) ; sinon, false.La valeur par défaut est false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.EnterDebugMode\">\r\n      <summary>Met un composant <see cref=\"T:System.Diagnostics.Process\" /> en état d'interagir avec des processus du système d'exploitation qui s'exécutent en mode spécial en activant la propriété native SeDebugPrivilege sur le thread actuel.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.ErrorDataReceived\">\r\n      <summary>Se produit quand une application écrit dans son flux <see cref=\"P:System.Diagnostics.Process.StandardError\" /> redirigé.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitCode\">\r\n      <summary>Obtient la valeur spécifiée par le processus associé au moment où il s'est terminé.</summary>\r\n      <returns>Code spécifié par le processus associé une fois celui-ci terminé.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has not exited.-or- The process <see cref=\"P:System.Diagnostics.Process.Handle\" /> is not valid. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitCode\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.Exited\">\r\n      <summary>Se produit quand un processus se termine.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitTime\">\r\n      <summary>Obtient l'heure à laquelle le processus associé s'est terminé.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.DateTime\" /> qui indique le moment où le processus associé s'est terminé.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetCurrentProcess\">\r\n      <summary>Obtient un nouveau composant <see cref=\"T:System.Diagnostics.Process\" /> et l'associe au processus actuellement actif.</summary>\r\n      <returns>Nouveau composant <see cref=\"T:System.Diagnostics.Process\" /> associé à la ressource de processus qui exécute l'application appelante.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32)\">\r\n      <summary>Retourne un nouveau composant <see cref=\"T:System.Diagnostics.Process\" />, en fonction de l'identificateur d'un processus sur l'ordinateur local.</summary>\r\n      <returns>Composant <see cref=\"T:System.Diagnostics.Process\" /> associé à la ressource de processus locale identifiée par le paramètre <paramref name=\"processId\" />.</returns>\r\n      <param name=\"processId\">Identificateur unique au système d'une ressource de processus. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)\">\r\n      <summary>Retourne un nouveau composant <see cref=\"T:System.Diagnostics.Process\" />, en fonction d'un identificateur de processus et du nom d'un ordinateur du réseau.</summary>\r\n      <returns>Composant <see cref=\"T:System.Diagnostics.Process\" /> associé à une ressource de processus distante identifiée par le paramètre <paramref name=\"processId\" />.</returns>\r\n      <param name=\"processId\">Identificateur unique au système d'une ressource de processus. </param>\r\n      <param name=\"machineName\">Nom d'un ordinateur du réseau. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.-or- The <paramref name=\"machineName\" /> parameter syntax is invalid.The name might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses\">\r\n      <summary>Crée un composant <see cref=\"T:System.Diagnostics.Process\" /> pour chaque ressource de processus sur l'ordinateur local.</summary>\r\n      <returns>Tableau de type <see cref=\"T:System.Diagnostics.Process\" /> représentant toutes les ressources de processus exécutées sur l'ordinateur local.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses(System.String)\">\r\n      <summary>Crée un composant <see cref=\"T:System.Diagnostics.Process\" /> pour chaque ressource de processus sur l'ordinateur spécifié.</summary>\r\n      <returns>Tableau de type <see cref=\"T:System.Diagnostics.Process\" /> représentant toutes les ressources de processus exécutées sur l'ordinateur spécifié.</returns>\r\n      <param name=\"machineName\">Ordinateur à partir duquel lire la liste de processus. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String)\">\r\n      <summary>Crée un tableau de nouveaux composants <see cref=\"T:System.Diagnostics.Process\" /> et les associe à toutes les ressources de processus de l'ordinateur local qui partagent le nom de processus spécifié.</summary>\r\n      <returns>Tableau de type <see cref=\"T:System.Diagnostics.Process\" /> représentant les ressources de processus exécutant l'application ou le fichier spécifié.</returns>\r\n      <param name=\"processName\">Nom convivial du processus. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)\">\r\n      <summary>Crée un tableau de nouveaux composants <see cref=\"T:System.Diagnostics.Process\" /> et les associe à toutes les ressources de processus sur l'ordinateur distant qui partagent le nom de processus spécifié.</summary>\r\n      <returns>Tableau de type <see cref=\"T:System.Diagnostics.Process\" /> représentant les ressources de processus exécutant l'application ou le fichier spécifié.</returns>\r\n      <param name=\"processName\">Nom convivial du processus. </param>\r\n      <param name=\"machineName\">Nom d'un ordinateur du réseau. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.HasExited\">\r\n      <summary>Obtient une valeur indiquant si le processus associé s'est terminé.</summary>\r\n      <returns>true si le processus du système d'exploitation référencé par le composant <see cref=\"T:System.Diagnostics.Process\" /> s'est terminé ; sinon, false.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with the object. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The exit code for the process could not be retrieved. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.HasExited\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Id\">\r\n      <summary>Obtient l'identificateur unique du processus associé.</summary>\r\n      <returns>Identificateur unique généré par le système du processus référencé par cette instance de <see cref=\"T:System.Diagnostics.Process\" />.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process's <see cref=\"P:System.Diagnostics.Process.Id\" /> property has not been set.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Kill\">\r\n      <summary>Arrête immédiatement le processus associé.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to call <see cref=\"M:System.Diagnostics.Process.Kill\" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has already exited. -or-There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.LeaveDebugMode\">\r\n      <summary>Met un composant <see cref=\"T:System.Diagnostics.Process\" /> hors de l'état qui lui permet d'interagir avec des processus du système d'exploitation qui s'exécutent en mode spécial.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MachineName\">\r\n      <summary>Obtient le nom de l'ordinateur sur lequel s'exécute le processus associé.</summary>\r\n      <returns>Nom de l'ordinateur sur lequel s'exécute le processus associé.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MainModule\">\r\n      <summary>Obtient le module principal pour le processus associé.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> qui a été utilisé pour démarrer le processus.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MainModule\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A 32-bit process is trying to access the modules of a 64-bit process.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MaxWorkingSet\">\r\n      <summary>Obtient ou définit la taille maximale autorisée du jeu de travail pour le processus associé.</summary>\r\n      <returns>Taille maximale du jeu de travail pouvant être mise en mémoire pour le processus, en octets.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MaxWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MinWorkingSet\">\r\n      <summary>Obtient ou définit la taille minimale autorisée du jeu de travail pour le processus associé.</summary>\r\n      <returns>Taille minimale du jeu de travail requise en mémoire pour le processus, en octets.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MinWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Modules\">\r\n      <summary>Obtient les modules qui ont été chargés par le processus associé.</summary>\r\n      <returns>Tableau de type <see cref=\"T:System.Diagnostics.ProcessModule\" /> représentant les modules qui ont été chargés par le processus associé.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for either the system process or the idle process.These processes do not have modules.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.NonpagedSystemMemorySize64\">\r\n      <summary>Obtient la quantité de mémoire système non paginée allouée pour le processus associé.</summary>\r\n      <returns>Quantité de mémoire système, en octets, allouée au processus associé qui ne peut pas être écrite dans le fichier d'échange de la mémoire virtuelle.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.OnExited\">\r\n      <summary>Déclenche l'événement <see cref=\"E:System.Diagnostics.Process.Exited\" />.</summary>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.OutputDataReceived\">\r\n      <summary>Se produit quand une application écrit dans son flux <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> redirigé.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedMemorySize64\">\r\n      <summary>Obtient la quantité de mémoire paginée allouée pour le processus associé.</summary>\r\n      <returns>Quantité de mémoire, en octets, allouée dans le fichier d'échange de la mémoire virtuelle pour le processus associé.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedSystemMemorySize64\">\r\n      <summary>Obtient la quantité de mémoire système paginable allouée pour le processus associé.</summary>\r\n      <returns>Quantité de mémoire système, en octets, allouée au processus associé qui peut être écrite dans le fichier d'échange de la mémoire virtuelle.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakPagedMemorySize64\">\r\n      <summary>Obtient la quantité maximale de mémoire dans le fichier d'échange de la mémoire virtuelle utilisée par le processus associé.</summary>\r\n      <returns>Quantité de mémoire maximale, en octets, allouée dans le fichier d'échange de la mémoire virtuelle pour le processus associé depuis son démarrage.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakVirtualMemorySize64\">\r\n      <summary>Obtient la quantité maximale de la mémoire virtuelle utilisée par le processus associé.</summary>\r\n      <returns>Quantité maximale de la mémoire virtuelle, en octets, allouée pour le processus associé depuis son démarrage.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakWorkingSet64\">\r\n      <summary>Obtient la quantité maximale de la mémoire physique utilisée par le processus associé.</summary>\r\n      <returns>Quantité maximale de la mémoire physique, en octets, allouée pour le processus associé depuis son démarrage.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityBoostEnabled\">\r\n      <summary>Obtient ou définit une valeur indiquant si la priorité du processus associée doit être temporairement renforcée par le système d'exploitation quand la fenêtre principale a le focus.</summary>\r\n      <returns>true si un renforcement dynamique de la priorité du processus doit être effectué pour un processus quand il quitte l'état d'attente ; sinon, false.La valeur par défaut est false.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Priority boost information could not be retrieved from the associated process resource. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityBoostEnabled\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityClass\">\r\n      <summary>Obtient ou définit la catégorie de priorité générale pour le processus associé.</summary>\r\n      <returns>Catégorie de priorité pour le processus associé, à partir de laquelle le <see cref=\"P:System.Diagnostics.Process.BasePriority\" /> du processus est calculé.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">You have set the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>\r\n      <exception cref=\"T:System.ComponentModel.InvalidEnumArgumentException\">Priority class cannot be set because it does not use a valid value, as defined in the <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> enumeration.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivateMemorySize64\">\r\n      <summary>Obtient la quantité de mémoire privée allouée pour le processus associé.</summary>\r\n      <returns>Quantité de mémoire, en octets, allouée pour le processus associé qui ne peut pas être partagé avec d'autres processus.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\">\r\n      <summary>Obtient le temps processeur privilégié pour ce processus.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" /> indiquant la durée d'exécution du code par le processus à l'intérieur du noyau du système d'exploitation.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessName\">\r\n      <summary>Obtient le nom du processus.</summary>\r\n      <returns>Nom utilisé par le système pour identifier le processus à l'intention de l'utilisateur.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process does not have an identifier, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" />.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is not on this computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessorAffinity\">\r\n      <summary>Obtient ou définit les processeurs sur lesquels l'exécution des threads de ce processus peut être planifiée.</summary>\r\n      <returns>Masque de bits représentant les processeurs sur lesquels les threads du processus associé peuvent s'exécuter.La valeur par défaut dépend du nombre de processeurs dont est équipé l'ordinateur.La valeur par défaut est 2 n -1, où n est le nombre de processeurs.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> was not available.-or- The process has exited. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Refresh\">\r\n      <summary>Ignore toute information concernant le processus associé qui a été mis en cache dans le composant du processus.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SafeHandle\">\r\n      <summary>Obtient le handle natif de ce processus.</summary>\r\n      <returns>Handle natif de ce processus.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SessionId\">\r\n      <summary>Obtient l'identificateur de session Terminal Server du processus associé.</summary>\r\n      <returns>Identificateur de session Terminal Server du processus associé.</returns>\r\n      <exception cref=\"T:System.NullReferenceException\">There is no session associated with this process.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The <see cref=\"P:System.Diagnostics.Process.SessionId\" /> property is not supported on Windows 98.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardError\">\r\n      <summary>Obtient un flux utilisé pour lire la sortie d'erreur de l'application.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IO.StreamReader\" /> qui peut être utilisé pour lire le flux d'erreurs standard de l'application.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginErrorReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardInput\">\r\n      <summary>Obtient un flux utilisé pour écrire l'entrée de l'application.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IO.StreamWriter\" /> qui peut être utilisé pour écrire le flux d'entrée standard de l'application.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> stream has not been defined because <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" /> is set to false. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardOutput\">\r\n      <summary>Obtient un flux utilisé pour lire la sortie textuelle de l'application.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IO.StreamReader\" /> qui peut être utilisé pour lire le flux de sortie standard de l'application.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginOutputReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start\">\r\n      <summary>Démarre (ou réutilise) la ressource de processus qui est spécifiée par la propriété <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> de ce composant <see cref=\"T:System.Diagnostics.Process\" /> et l'associe au composant.</summary>\r\n      <returns>true si une ressource de processus est démarrée ; false si aucune ressource de processus n'est démarrée (par exemple, si un processus existant est réutilisé).</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <see cref=\"T:System.Diagnostics.Process\" /> component's <see cref=\"P:System.Diagnostics.Process.StartInfo\" />.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> member of the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> property is true while <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is true. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)\">\r\n      <summary>Démarre la ressource de processus qui est spécifiée par le paramètre contenant les informations de démarrage du processus (par exemple, le nom de fichier du processus à démarrer) et l'associe à un nouveau composant <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nouvel élément <see cref=\"T:System.Diagnostics.Process\" /> qui est associé à la ressource de processus, ou null si aucune ressource de processus n'est démarrée.Notez qu'un nouveau processus qui est démarré en même temps que les instances du même processus déjà en cours d'exécution sera indépendant des autres.En outre, le démarrage peut retourner un processus non null avec sa propriété <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> déjà définie à true.Dans ce cas, le processus démarré peut avoir activé une instance existante de lui-même, puis s'être arrêté.</returns>\r\n      <param name=\"startInfo\">\r\n        <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> qui contient les informations utilisées pour démarrer le processus, y compris le nom de fichier et d'éventuels arguments de ligne de commande. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is also true.-or-The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UserName\" /> property is not null or empty or the <see cref=\"P:System.Diagnostics.ProcessStartInfo.Password\" /> property is not null.</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"startInfo\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The file specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property could not be found.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String)\">\r\n      <summary>Démarre une ressource de processus en spécifiant le nom d'un document ou d'un fichier d'application et l'associe à un nouveau composant <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nouvel élément <see cref=\"T:System.Diagnostics.Process\" /> qui est associé à la ressource de processus, ou null si aucune ressource de processus n'est démarrée.Notez qu'un nouveau processus qui est démarré en même temps que les instances du même processus déjà en cours d'exécution sera indépendant des autres.En outre, le démarrage peut retourner un processus non null avec sa propriété <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> déjà définie à true.Dans ce cas, le processus démarré peut avoir activé une instance existante de lui-même, puis s'être arrêté.</returns>\r\n      <param name=\"fileName\">Nom d'un document ou d'un fichier d'application à exécuter dans le processus. </param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String)\">\r\n      <summary>Démarre une ressource de processus en spécifiant le nom d'une application et un jeu d'arguments de ligne de commande et l'associe à la ressource avec un nouveau composant <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nouvel élément <see cref=\"T:System.Diagnostics.Process\" /> qui est associé à la ressource de processus, ou null si aucune ressource de processus n'est démarrée.Notez qu'un nouveau processus qui est démarré en même temps que les instances du même processus déjà en cours d'exécution sera indépendant des autres.En outre, le démarrage peut retourner un processus non null avec sa propriété <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> déjà définie à true.Dans ce cas, le processus démarré peut avoir activé une instance existante de lui-même, puis s'être arrêté.</returns>\r\n      <param name=\"fileName\">Nom d'un fichier d'application à exécuter dans le processus. </param>\r\n      <param name=\"arguments\">Arguments de ligne de commande à passer au moment du démarrage du processus. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <paramref name=\"fileName\" /> or <paramref name=\"arguments\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>Démarre une ressource de processus en spécifiant le nom d'une application, un nom d'utilisateur, un mot de passe et un domaine et associe la ressource à un nouveau composant <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nouvel élément <see cref=\"T:System.Diagnostics.Process\" /> qui est associé à la ressource de processus, ou null si aucune ressource de processus n'est démarrée.Notez qu'un nouveau processus qui est démarré en même temps que les instances du même processus déjà en cours d'exécution sera indépendant des autres.En outre, le démarrage peut retourner un processus non null avec sa propriété <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> déjà définie à true.Dans ce cas, le processus démarré peut avoir activé une instance existante de lui-même, puis s'être arrêté.</returns>\r\n      <param name=\"fileName\">Nom d'un fichier d'application à exécuter dans le processus.</param>\r\n      <param name=\"userName\">Nom d'utilisateur à utiliser au moment du démarrage du processus.</param>\r\n      <param name=\"password\">\r\n        <see cref=\"T:System.Security.SecureString\" /> qui contient le mot de passe à utiliser lors du démarrage du processus.</param>\r\n      <param name=\"domain\">Domaine à utiliser au moment du démarrage du processus.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>Démarre une ressource de processus en spécifiant le nom d'une application, un jeu d'arguments de ligne de commande, un nom d'utilisateur, un mot de passe et un domaine, et associe la ressource à un nouveau composant <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nouvel élément <see cref=\"T:System.Diagnostics.Process\" /> qui est associé à la ressource de processus, ou null si aucune ressource de processus n'est démarrée.Notez qu'un nouveau processus qui est démarré en même temps que les instances du même processus déjà en cours d'exécution sera indépendant des autres.En outre, le démarrage peut retourner un processus non null avec sa propriété <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> déjà définie à true.Dans ce cas, le processus démarré peut avoir activé une instance existante de lui-même, puis s'être arrêté.</returns>\r\n      <param name=\"fileName\">Nom d'un fichier d'application à exécuter dans le processus. </param>\r\n      <param name=\"arguments\">Arguments de ligne de commande à passer au moment du démarrage du processus. </param>\r\n      <param name=\"userName\">Nom d'utilisateur à utiliser au moment du démarrage du processus.</param>\r\n      <param name=\"password\">\r\n        <see cref=\"T:System.Security.SecureString\" /> qui contient le mot de passe à utiliser lors du démarrage du processus.</param>\r\n      <param name=\"domain\">Domaine à utiliser au moment du démarrage du processus.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartInfo\">\r\n      <summary>Obtient ou définit les propriétés à passer à la méthode <see cref=\"M:System.Diagnostics.Process.Start\" /> de <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> qui représente les données avec lesquelles démarrer le processus.Ces arguments comprennent le nom du fichier exécutable ou du document utilisé pour démarrer le processus.</returns>\r\n      <exception cref=\"T:System.ArgumentNullException\">The value that specifies the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> is null. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartTime\">\r\n      <summary>Obtient l'heure à laquelle le processus associé a démarré.</summary>\r\n      <returns>Objet qui indique l'heure de démarrage du processus.Une exception est levée si le processus n'est pas en cours d'exécution.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.StartTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or-The process has not been started.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred in the call to the Windows function.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Threads\">\r\n      <summary>Obtient le jeu des threads en cours d'exécution dans le processus associé.</summary>\r\n      <returns>Tableau de type <see cref=\"T:System.Diagnostics.ProcessThread\" /> représentant les threads du système d'exploitation en cours d'exécution dans le processus associé.</returns>\r\n      <exception cref=\"T:System.SystemException\">The process does not have an <see cref=\"P:System.Diagnostics.Process.Id\" />, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" /> instance.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.TotalProcessorTime\">\r\n      <summary>Obtient le temps processeur total pour ce processus.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" /> qui indique la durée d'utilisation de l'unité centrale par le processus associé.Cette valeur est la somme de <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> et de <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" />.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.TotalProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.UserProcessorTime\">\r\n      <summary>Obtient le temps processeur utilisateur pour ce processus.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" /> qui indique la durée d'exécution du code par le processus associé à l'intérieur de la partie application du processus (plutôt qu'à l'intérieur du noyau du système d'exploitation).</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.VirtualMemorySize64\">\r\n      <summary>Obtient la quantité de mémoire virtuelle allouée pour le processus associé.</summary>\r\n      <returns>Quantité de la mémoire virtuelle, en octets, allouée pour le processus associé.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit\">\r\n      <summary>Indique au composant <see cref=\"T:System.Diagnostics.Process\" /> d'attendre indéfiniment que le processus associé s'arrête.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\">\r\n      <summary>Indique au composant <see cref=\"T:System.Diagnostics.Process\" /> d'attendre le nombre de millisecondes spécifié que le processus associé s'arrête.</summary>\r\n      <returns>true si le processus associé s'est arrêté ; sinon, false.</returns>\r\n      <param name=\"milliseconds\">Délai, en millisecondes, à attendre que le processus associé s'arrête.Le maximum est la plus grande valeur possible d'un entier 32 bits, qui représente l'infini pour le système d'exploitation.</param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.WorkingSet64\">\r\n      <summary>Obtient la quantité de mémoire physique allouée pour le processus associé.</summary>\r\n      <returns>Quantité de la mémoire physique, en octets, allouée pour le processus associé.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModule\">\r\n      <summary>Représente un fichier .dll ou .exe chargé dans un processus particulier.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.BaseAddress\">\r\n      <summary>Obtient l'adresse mémoire à laquelle le module a été chargé.</summary>\r\n      <returns>Adresse de chargement du module.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.EntryPointAddress\">\r\n      <summary>Obtient l'adresse mémoire de la fonction qui s'exécute lorsque le système charge et exécute le module.</summary>\r\n      <returns>Point d'entrée du module.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.FileName\">\r\n      <summary>Obtient le chemin d'accès complet du module.</summary>\r\n      <returns>Chemin d'accès qualifié complet qui définit l'emplacement du module.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleMemorySize\">\r\n      <summary>Obtient la quantité de mémoire nécessaire au chargement du module.</summary>\r\n      <returns>Taille en octets de la mémoire utilisée par le module.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleName\">\r\n      <summary>Obtient le nom du module de processus.</summary>\r\n      <returns>Nom du module.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModule.ToString\">\r\n      <summary>Convertit le nom du module en chaîne.</summary>\r\n      <returns>Valeur de la propriété <see cref=\"P:System.Diagnostics.ProcessModule.ModuleName\" />.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModuleCollection\">\r\n      <summary>Fournit une collection fortement typée d'objets <see cref=\"T:System.Diagnostics.ProcessModule\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor\">\r\n      <summary>Initialise une nouvelle instance de la classe <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> à laquelle aucune instance de <see cref=\"T:System.Diagnostics.ProcessModule\" /> n'est associée.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])\">\r\n      <summary>Initialise une nouvelle instance de la classe <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> à l'aide du tableau spécifié d'instances de <see cref=\"T:System.Diagnostics.ProcessModule\" />.</summary>\r\n      <param name=\"processModules\">Tableau d'instances de <see cref=\"T:System.Diagnostics.ProcessModule\" /> avec lequel initialiser cette instance de <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)\">\r\n      <summary>Détermine si le module de processus spécifié existe dans la collection.</summary>\r\n      <returns>true si le module existe dans la collection ; sinon, false.</returns>\r\n      <param name=\"module\">Instance de <see cref=\"T:System.Diagnostics.ProcessModule\" /> qui indique le module à rechercher dans cette collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)\">\r\n      <summary>Copie un tableau d'instances de <see cref=\"T:System.Diagnostics.ProcessModule\" /> vers la collection, à l'index spécifié.</summary>\r\n      <param name=\"array\">Tableau d'instances de <see cref=\"T:System.Diagnostics.ProcessModule\" /> à ajouter à la collection. </param>\r\n      <param name=\"index\">Emplacement auquel ajouter les nouvelles instances. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)\">\r\n      <summary>Fournit l'emplacement d'un module spécifié dans la collection.</summary>\r\n      <returns>Index de base zéro qui définit l'emplacement du module dans <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />.</returns>\r\n      <param name=\"module\">\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> dont l'index est récupéré. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)\">\r\n      <summary>Obtient un index pour itérer au sein du jeu de modules de processus.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> qui indexe les modules dans la collection. </returns>\r\n      <param name=\"index\">Valeur d'index de base zéro du module dans la collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ProcessPriorityClass\">\r\n      <summary>Indique la priorité associée par le système à un processus.Cette valeur, ainsi que la valeur de priorité de chaque thread du processus, déterminent le niveau de priorité de base de chaque thread.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.AboveNormal\">\r\n      <summary>Spécifie que le processus a une priorité supérieure à Normal, mais inférieure à <see cref=\"F:System.Diagnostics.ProcessPriorityClass.High\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.BelowNormal\">\r\n      <summary>Spécifie que le processus a une priorité supérieure à Idle, mais inférieure à Normal.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.High\">\r\n      <summary>Spécifie que le processus effectue des tâches en temps critique qui doivent être exécutées immédiatement, telles que la boîte de dialogue Task List qui doit répondre rapidement lorsqu'elle est appelée par l'utilisateur, peu importe la charge du système d'exploitation.Les threads du processus prévalent sur les threads de processus de classe de priorités normale ou inactive.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Idle\">\r\n      <summary>Spécifie que les threads de ce processus ne s'exécutent que si le système est inactif, par exemple un écran de veille.Les threads de tout processus s'exécutant dans une classe de priorités supérieure prévalent sur les threads du processus.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Normal\">\r\n      <summary>Spécifie que le processus ne possède aucune exigence de planification spéciale.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.RealTime\">\r\n      <summary>Spécifie que le processus possède la priorité la plus élevée.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessStartInfo\">\r\n      <summary>Spécifie un jeu de valeurs utilisées lors du démarrage d'un processus.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor\">\r\n      <summary>Initialise une nouvelle instance de la classe <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> sans spécifier le nom de fichier avec lequel démarrer le processus.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)\">\r\n      <summary>Initialise une nouvelle instance de la classe <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> et spécifie un nom de fichier (d'une application ou d'un document, par exemple) avec lequel démarrer le processus.</summary>\r\n      <param name=\"fileName\">Application ou document avec lequel démarrer un processus. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)\">\r\n      <summary>Initialise une nouvelle instance de la classe <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> et spécifie un nom de fichier d'application avec lequel démarrer le processus, ainsi qu'un jeu d'arguments de ligne de commande à passer à l'application.</summary>\r\n      <param name=\"fileName\">Application avec laquelle démarrer un processus. </param>\r\n      <param name=\"arguments\">Arguments de ligne de commande à passer à l'application lors du démarrage du processus. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Arguments\">\r\n      <summary>Obtient ou définit le jeu d'arguments de ligne de commande à utiliser lors du démarrage de l'application.</summary>\r\n      <returns>Chaîne unique contenant les arguments à passer à l'application cible spécifiée dans la propriété <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" />.La valeur par défaut est une chaîne vide (\"\").Sur Windows Vista et les versions antérieures du système d'exploitation Windows, la longueur des arguments ajoutés à la longueur du chemin d'accès complet au processus doit être inférieur à 2 080.Sur Windows 7 et versions ultérieures, la longueur doit être inférieure à 32 699.Les arguments étant analysés et interprétés par l'application cible, ils doivent correspondre aux attentes de cette application.Pour les applications .NET, comme illustré dans les exemples ci-dessous, les espaces sont interprétés comme un séparateur entre plusieurs arguments.Un argument unique qui comprend des espaces doit être placé entre guillemets, mais les guillemets ne sont pas transmises à l'application cible.Dans les guillemets du dernier argument analysé, vous devez affecter un triple échappement à chaque guillemet.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.CreateNoWindow\">\r\n      <summary>Obtient ou définit une valeur indiquant si le processus doit démarrer dans une nouvelle fenêtre.</summary>\r\n      <returns>true si le processus doit démarrer sans créer de nouvelle fenêtre destinée à le contenir ; sinon, false.La valeur par défaut est false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Domain\">\r\n      <summary>Obtient ou définit une valeur qui identifie le domaine à utiliser lors du démarrage du processus. </summary>\r\n      <returns>Domaine Active Directory à utiliser lors du démarrage du processus.La propriété de domaine présente un intérêt particulier pour les utilisateurs dans les environnements d'entreprise qui utilisent Active Directory.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Environment\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.FileName\">\r\n      <summary>Obtient ou définit l'application ou le document à démarrer.</summary>\r\n      <returns>Nom de l'application à démarrer, ou nom d'un document d'un type de fichier associé à une application et disposant d'une action d'ouverture par défaut.La valeur par défaut est une chaîne vide (\"\").</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.LoadUserProfile\">\r\n      <summary>Obtient ou définit une valeur qui indique si le profil utilisateur Windows doit être chargé à partir du Registre. </summary>\r\n      <returns>true si le profil utilisateur Windows doit être chargé ; sinon, false.La valeur par défaut est false.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Password\">\r\n      <summary>Obtient ou définit une chaîne sécurisée contenant le mot de passe de l'utilisateur à utiliser lors du démarrage du processus.</summary>\r\n      <returns>Mot de passe utilisateur à utiliser lors du démarrage du processus.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\">\r\n      <summary>Obtient ou définit une valeur qui indique si la sortie d'erreur d'une application est écrite dans le flux <see cref=\"P:System.Diagnostics.Process.StandardError\" />.</summary>\r\n      <returns>true si la sortie d'erreur est écrite dans <see cref=\"P:System.Diagnostics.Process.StandardError\" /> ; sinon, false.La valeur par défaut est false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\">\r\n      <summary>Obtient ou définit une valeur qui indique si l'entrée pour une application est lue à partir du flux <see cref=\"P:System.Diagnostics.Process.StandardInput\" />.</summary>\r\n      <returns>true si l'entrée est lue depuis <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> ; sinon, false.La valeur par défaut est false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\">\r\n      <summary>Obtient ou définit une valeur qui indique si la sortie textuelle d'une application est écrite dans le flux <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />.</summary>\r\n      <returns>true si la sortie doit être écrite dans <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> ; sinon, false.La valeur par défaut est false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding\">\r\n      <summary>Obtient ou définit l'encodage recommandé pour la sortie d'erreur.</summary>\r\n      <returns>Objet qui représente l'encodage recommandé pour la sortie d'erreur.La valeur par défaut est null.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding\">\r\n      <summary>Obtient ou définit l'encodage recommandé pour la sortie standard.</summary>\r\n      <returns>Objet qui représente l'encodage recommandé pour la sortie standard.La valeur par défaut est null.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UserName\">\r\n      <summary>Obtient ou définit le nom d'utilisateur à utiliser lors du démarrage du processus.</summary>\r\n      <returns>Nom d'utilisateur à utiliser au moment du démarrage du processus.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\">\r\n      <summary>Obtient ou définit une valeur indiquant si le shell du système d'exploitation doit être utilisé pour démarrer le processus.</summary>\r\n      <returns>true si le shell doit être utilisé lors du démarrage du processus ; false si le processus doit être créé directement à partir du fichier exécutable.La valeur par défaut est true.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.WorkingDirectory\">\r\n      <summary>Lorsque la propriété <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> est false, obtient ou définit le répertoire de travail du processus à démarrer.Lorsque <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> est true, obtient ou définit le répertoire qui contient le processus à démarrer.</summary>\r\n      <returns>Lorsque <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> est true, nom qualifié complet du répertoire qui contient le processus à démarrer.Lorsque la propriété <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> est false, répertoire de travail du processus à démarrer.La valeur par défaut est une chaîne vide (\"\").</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThread\">\r\n      <summary>Représente un thread de processus du système d'exploitation.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.BasePriority\">\r\n      <summary>Obtient la priorité de base du thread.</summary>\r\n      <returns>Priorité de base du thread, calculée par le système d'exploitation en combinant la classe de priorité du processus avec le niveau de priorité du thread associé.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.CurrentPriority\">\r\n      <summary>Obtient la priorité actuelle du thread.</summary>\r\n      <returns>Priorité actuelle du thread, qui peut être différente de la priorité de base, selon la manière dont le système d'exploitation planifie le thread.La priorité peut être renforcée temporairement pour un thread actif.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.Id\">\r\n      <summary>Obtient l'identificateur unique du thread.</summary>\r\n      <returns>Identificateur unique associé à un thread spécifique.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.IdealProcessor\">\r\n      <summary>Définit le processeur par défaut sur lequel exécuter ce thread.</summary>\r\n      <returns>Processeur par défaut pour le thread, utilisé lorsque le système planifie des threads, afin de déterminer le processeur sur lequel exécuter le thread.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Le système n'a pas pu définir le thread pour qu'il démarre sur le processeur spécifié. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plateforme est Windows 98 ou Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Le processus se trouve sur un ordinateur distant.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityBoostEnabled\">\r\n      <summary>Obtient ou définit une valeur indiquant si le système d'exploitation doit renforcer temporairement la priorité du thread qui lui est associé chaque fois que la fenêtre principale du processus du thread reçoit le focus.</summary>\r\n      <returns>true pour renforcer la priorité du thread en cas d'interaction de l'utilisateur avec l'interface du processus ; sinon, false.La valeur par défaut est false.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Les informations sur le renforcement de la priorité n'ont pas pu être récupérées.ouLes informations sur le renforcement de la priorité n'ont pas pu être définies. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plateforme est Windows 98 ou Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Le processus se trouve sur un ordinateur distant.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityLevel\">\r\n      <summary>Obtient ou définit le niveau de priorité du thread.</summary>\r\n      <returns>Une des valeurs <see cref=\"T:System.Diagnostics.ThreadPriorityLevel\" /> spécifiant une plage qui limite la priorité du thread.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Les informations sur le renforcement de la priorité du thread n'ont pas pu être récupérées. ouLe niveau de priorité du thread n'a pas pu être défini.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plateforme est Windows 98 ou Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Le processus se trouve sur un ordinateur distant.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime\">\r\n      <summary>Obtient la durée d'exécution du code par le thread à l'intérieur du noyau du système d'exploitation.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" /> indiquant la durée d'exécution du code par le thread à l'intérieur du noyau du système d'exploitation.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">La durée du thread n'a pas pu être récupérée. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plateforme est Windows 98 ou Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Le processus se trouve sur un ordinateur distant.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ProcessorAffinity\">\r\n      <summary>Définit les processeurs sur lesquels le thread associé peut s'exécuter.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IntPtr\" /> désignant un jeu de bits, chacun d'eux représentant un processeur sur lequel le thread peut s'exécuter.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">L'affinité du processeur n'a pas pu être définie. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plateforme est Windows 98 ou Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Le processus se trouve sur un ordinateur distant.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThread.ResetIdealProcessor\">\r\n      <summary>Réinitialise le processeur idéal pour ce thread afin d'indiquer qu'il n'existe aucun processeur idéal.En d'autres termes, cela signifie que tous les processeurs sont idéaux.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Le processeur idéal n'a pas pu être réinitialisé. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plateforme est Windows 98 ou Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Le processus se trouve sur un ordinateur distant.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartAddress\">\r\n      <summary>Obtient l'adresse mémoire de la fonction appelée par le système d'exploitation qui a démarré ce thread.</summary>\r\n      <returns>Adresse de départ du thread, qui désigne la fonction définie par l'application exécutée par le thread.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plateforme est Windows 98 ou Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Le processus se trouve sur un ordinateur distant.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartTime\">\r\n      <summary>Obtient l'heure à laquelle le système d'exploitation a démarré le thread.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.DateTime\" /> représentant l'heure du système au moment où le système d'exploitation a démarré le thread.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">La durée du thread n'a pas pu être récupérée. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plateforme est Windows 98 ou Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Le processus se trouve sur un ordinateur distant.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ThreadState\">\r\n      <summary>Obtient l'état actuel de ce thread.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ThreadState\" /> indiquant l'exécution du thread (par exemple, s'il est en cours d'exécution, en attente ou terminé).</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plateforme est Windows 98 ou Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Le processus se trouve sur un ordinateur distant.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.TotalProcessorTime\">\r\n      <summary>Obtient la durée totale d'utilisation du processeur par ce thread.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" /> indiquant la durée pendant laquelle le thread contrôlait le processeur.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">La durée du thread n'a pas pu être récupérée. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plateforme est Windows 98 ou Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Le processus se trouve sur un ordinateur distant.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.UserProcessorTime\">\r\n      <summary>Obtient la durée d'exécution du code par le thread associé au sein de l'application.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" /> indiquant la durée d'exécution du code par le thread à l'intérieur de l'application, et non à l'intérieur du noyau du système d'exploitation.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">La durée du thread n'a pas pu être récupérée. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plateforme est Windows 98 ou Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Le processus se trouve sur un ordinateur distant.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.WaitReason\">\r\n      <summary>Obtient la raison pour laquelle le thread est en attente.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ThreadWaitReason\" /> représentant la raison pour laquelle le thread est en état d'attente.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">Le thread n'est pas en état d'attente. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La plateforme est Windows 98 ou Windows Millennium. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Le processus se trouve sur un ordinateur distant.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThreadCollection\">\r\n      <summary>Fournit une collection fortement typée d'objets <see cref=\"T:System.Diagnostics.ProcessThread\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor\">\r\n      <summary>Initialise une nouvelle instance de la classe <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> à laquelle aucune instance de <see cref=\"T:System.Diagnostics.ProcessThread\" /> n'est associée.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])\">\r\n      <summary>Initialise une nouvelle instance de la classe <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> à l'aide du tableau spécifié d'instances de <see cref=\"T:System.Diagnostics.ProcessThread\" />.</summary>\r\n      <param name=\"processThreads\">Tableau d'instances de <see cref=\"T:System.Diagnostics.ProcessThread\" /> avec lequel initialiser cette instance de <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)\">\r\n      <summary>Ajoute un thread de processus à la collection.</summary>\r\n      <returns>Index de base zéro du thread dans la collection.</returns>\r\n      <param name=\"thread\">Thread à ajouter à la collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)\">\r\n      <summary>Détermine si le thread de processus spécifié existe dans la collection.</summary>\r\n      <returns>true si le thread existe dans la collection ; sinon, false.</returns>\r\n      <param name=\"thread\">Instance de <see cref=\"T:System.Diagnostics.ProcessThread\" /> qui indique le thread à rechercher dans cette collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)\">\r\n      <summary>Copie un tableau d'instances de <see cref=\"T:System.Diagnostics.ProcessThread\" /> vers la collection, à l'index spécifié.</summary>\r\n      <param name=\"array\">Tableau d'instances de <see cref=\"T:System.Diagnostics.ProcessThread\" /> à ajouter à la collection. </param>\r\n      <param name=\"index\">Emplacement auquel ajouter les nouvelles instances. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)\">\r\n      <summary>Fournit l'emplacement d'un thread spécifié dans la collection.</summary>\r\n      <returns>Index de base zéro qui définit l'emplacement du thread dans <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />.</returns>\r\n      <param name=\"thread\">\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> dont l'index est récupéré. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)\">\r\n      <summary>Insère un thread de processus à l'emplacement spécifié dans la collection.</summary>\r\n      <param name=\"index\">Index de base zéro indiquant l'emplacement dans lequel insérer le thread. </param>\r\n      <param name=\"thread\">Thread à insérer dans la collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)\">\r\n      <summary>Obtient un index pour itérer au sein du jeu de threads de processus.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> qui indexe les threads dans la collection.</returns>\r\n      <param name=\"index\">Valeur d'index de base zéro du thread dans la collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)\">\r\n      <summary>Supprime de la collection un thread de processus.</summary>\r\n      <param name=\"thread\">Thread à supprimer de la collection. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ThreadPriorityLevel\">\r\n      <summary>Spécifie le niveau de priorité d'un thread.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.AboveNormal\">\r\n      <summary>Spécifie un niveau au-dessus de la priorité normale pour le <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> associé.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.BelowNormal\">\r\n      <summary>Spécifie un niveau en dessous de la priorité normale pour le <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> associé.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Highest\">\r\n      <summary>Spécifie la priorité la plus élevée.Elle se situe deux niveaux au-dessus de la priorité normale pour le <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> associé.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Idle\">\r\n      <summary>Spécifie la priorité du type inactif.Il s'agit de la plus basse priorité possible de tous les threads, indépendante de la valeur du <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> associé.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Lowest\">\r\n      <summary>Spécifie la priorité la plus basse.Elle se situe deux niveaux en dessous de la priorité normale pour le <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> associé.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Normal\">\r\n      <summary>Spécifie la priorité normale pour le <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> associé.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.TimeCritical\">\r\n      <summary>Spécifie la priorité critique.Il s'agit de la priorité la plus élevée de tous les threads, indépendante de la valeur du <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> associé.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadState\">\r\n      <summary>Spécifie l'état d'exécution actuel du thread.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Initialized\">\r\n      <summary>État qui indique que le thread a été initialisé, mais n'a pas encore démarré.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Ready\">\r\n      <summary>État qui indique que le thread attend de pouvoir utiliser un processeur, car aucun processeur n'est libre.Le thread est prêt à s'exécuter sur le prochain processeur disponible.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Running\">\r\n      <summary>État qui indique que le thread utilise actuellement un processeur.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Standby\">\r\n      <summary>État qui indique que le thread est sur le point d'utiliser un processeur.Un seul thread peut être dans cet état à la fois.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Terminated\">\r\n      <summary>État qui indique que le thread a terminé de s'exécuter et s'est fermé.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Transition\">\r\n      <summary>État qui indique que le thread attend une ressource autre que le processeur avant de pouvoir s'exécuter.Par exemple, il peut attendre que sa pile d'exécution soit paginée à partir du disque.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Unknown\">\r\n      <summary>L'état du thread est inconnu.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Wait\">\r\n      <summary>État qui indique que le thread n'est pas prêt à utiliser le processeur, car il attend la fin d'une opération de périphérique ou la libération d'une ressource.Lorsque le thread est prêt, il est replanifié.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadWaitReason\">\r\n      <summary>Spécifie la raison pour laquelle un thread attend.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairHigh\">\r\n      <summary>Le thread attend une paire d'événements haute.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairLow\">\r\n      <summary>Le thread attend une paire d'événements basse.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.ExecutionDelay\">\r\n      <summary>L'exécution du thread est différée.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Executive\">\r\n      <summary>Le thread attend le planificateur.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.FreePage\">\r\n      <summary>Le thread attend une page de mémoire virtuelle libre.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReceive\">\r\n      <summary>Le thread attend l'arrivée d'un appel de procédure local.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReply\">\r\n      <summary>Le thread attend l'arrivée d'une réponse à un appel de procédure local.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageIn\">\r\n      <summary>Le thread attend l'arrivée d'une page de mémoire virtuelle en mémoire.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageOut\">\r\n      <summary>Le thread attend l'écriture d'une page de mémoire virtuelle sur le disque.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Suspended\">\r\n      <summary>L'exécution du thread est interrompue.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.SystemAllocation\">\r\n      <summary>Le thread attend une allocation système.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Unknown\">\r\n      <summary>Le thread attend pour une raison inconnue.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.UserRequest\">\r\n      <summary>Le thread attend une demande utilisateur.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.VirtualMemory\">\r\n      <summary>Le thread attend que le système alloue de la mémoire virtuelle.</summary>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/it/System.Diagnostics.Process.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<doc>\r\n  <assembly>\r\n    <name>System.Diagnostics.Process</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\">\r\n      <summary>[SecurityCritical] Fornisce un wrapper gestito per un handle di processo.</summary>\r\n    </member>\r\n    <member name=\"M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)\">\r\n      <summary>[SecurityCritical] Inizializza una nuova istanza della classe <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> dall'handle specificato, indicando se rilasciare l'handle durante la fase di finalizzazione. </summary>\r\n      <param name=\"existingHandle\">Handle di cui eseguire il wrapping.</param>\r\n      <param name=\"ownsHandle\">trueper consentire in modo affidabile <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> rilasciare l'handle durante la fase di finalizzazione; in caso contrario, false.</param>\r\n    </member>\r\n    <member name=\"P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid\"></member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventArgs\">\r\n      <summary>Fornisce i dati per gli eventi <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> e <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.DataReceivedEventArgs.Data\">\r\n      <summary>Ottiene la riga di caratteri che è stata scritta in un flusso di output di <see cref=\"T:System.Diagnostics.Process\" /> reindirizzato.</summary>\r\n      <returns>Riga scritta da un <see cref=\"T:System.Diagnostics.Process\" /> associato al relativo flusso di <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> o di <see cref=\"P:System.Diagnostics.Process.StandardError\" /> reindirizzato.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventHandler\">\r\n      <summary>Rappresenta il metodo che gestirà l'evento <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> o <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> di un oggetto <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <param name=\"sender\">Origine dell'evento. </param>\r\n      <param name=\"e\">Oggetto <see cref=\"T:System.Diagnostics.DataReceivedEventArgs\" /> che contiene i dati dell'evento. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.Process\">\r\n      <summary>Fornisce l'accesso ai processi locali e remoti e permette di avviare e arrestare i processi locali del sistema.Per esaminare il codice sorgente di .NET Framework per questo tipo, vedere Origine riferimento.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.#ctor\">\r\n      <summary>Inizializza una nuova istanza della classe <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.BasePriority\">\r\n      <summary>Ottiene la priorità base del processo associato.</summary>\r\n      <returns>Priorità base, calcolata dalla proprietà <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> del processo associato.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or- The process has not started, so there is no process ID. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginErrorReadLine\">\r\n      <summary>Inizia le operazioni di lettura asincrona sul flusso <see cref=\"P:System.Diagnostics.Process.StandardError\" /> reindirizzato dell'applicazione.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginOutputReadLine\">\r\n      <summary>Inizia le operazioni di lettura asincrona sul flusso <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> reindirizzato dell'applicazione.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelErrorRead\">\r\n      <summary>Annulla l'operazione di lettura asincrona sul flusso <see cref=\"P:System.Diagnostics.Process.StandardError\" /> reindirizzato di un'applicazione.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelOutputRead\">\r\n      <summary>Annulla l'operazione di lettura asincrona sul flusso <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> reindirizzato di un'applicazione.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose\"></member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose(System.Boolean)\">\r\n      <summary>Rilascia tutte le risorse usate dal processo.</summary>\r\n      <param name=\"disposing\">true per rilasciare sia le risorse gestite sia quelle non gestite; false per rilasciare solo le risorse non gestite. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.EnableRaisingEvents\">\r\n      <summary>Ottiene o imposta la generazione dell'evento <see cref=\"E:System.Diagnostics.Process.Exited\" /> quando il processo viene terminato.</summary>\r\n      <returns>true se l'evento <see cref=\"E:System.Diagnostics.Process.Exited\" /> dovrà essere generato quando il processo associato viene terminato (mediante un'uscita o una chiamata al metodo <see cref=\"M:System.Diagnostics.Process.Kill\" />); in caso contrario, false.Il valore predefinito è false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.EnterDebugMode\">\r\n      <summary>Imposta un componente <see cref=\"T:System.Diagnostics.Process\" /> nello stato che gli permette di interagire con i processi del sistema operativo eseguiti in modalità speciale attivando la proprietà nativa SeDebugPrivilege sul thread corrente.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.ErrorDataReceived\">\r\n      <summary>Si verifica quando un'applicazione scrive nel proprio flusso <see cref=\"P:System.Diagnostics.Process.StandardError\" /> reindirizzato.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitCode\">\r\n      <summary>Ottiene il valore specificato dal processo associato quando è stato terminato.</summary>\r\n      <returns>Codice specificato dal processo associato quando è stato terminato.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has not exited.-or- The process <see cref=\"P:System.Diagnostics.Process.Handle\" /> is not valid. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitCode\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.Exited\">\r\n      <summary>Si verifica al termine di un processo.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitTime\">\r\n      <summary>Ottiene l'ora in cui il processo associato è stato terminato.</summary>\r\n      <returns>Oggetto <see cref=\"T:System.DateTime\" /> che indica il momento in cui il processo associato è stato terminato.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetCurrentProcess\">\r\n      <summary>Ottiene un nuovo componente <see cref=\"T:System.Diagnostics.Process\" /> e lo associa al processo attivo.</summary>\r\n      <returns>Nuovo componente <see cref=\"T:System.Diagnostics.Process\" /> associato alla risorsa di processo che sta eseguendo l'applicazione chiamante.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32)\">\r\n      <summary>Restituisce un nuovo componente <see cref=\"T:System.Diagnostics.Process\" />, dato l'identificatore di un processo nel computer locale.</summary>\r\n      <returns>Componente <see cref=\"T:System.Diagnostics.Process\" /> associato alla risorsa locale del processo identificata dal parametro <paramref name=\"processId\" />.</returns>\r\n      <param name=\"processId\">Identificatore univoco nel sistema di una risorsa di processo. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)\">\r\n      <summary>Restituisce un nuovo componente <see cref=\"T:System.Diagnostics.Process\" />, dato un identificatore di processo e il nome di un computer sulla rete.</summary>\r\n      <returns>Componente <see cref=\"T:System.Diagnostics.Process\" /> associato a una risorsa di processo remota identificata dal parametro <paramref name=\"processId\" />.</returns>\r\n      <param name=\"processId\">Identificatore univoco nel sistema di una risorsa di processo. </param>\r\n      <param name=\"machineName\">Nome di un computer della rete. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.-or- The <paramref name=\"machineName\" /> parameter syntax is invalid.The name might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses\">\r\n      <summary>Crea un nuovo componente <see cref=\"T:System.Diagnostics.Process\" /> per ciascuna risorsa di processo del computer locale.</summary>\r\n      <returns>Matrice di tipo <see cref=\"T:System.Diagnostics.Process\" /> che rappresenta tutte le risorse di processo in esecuzione sul computer locale.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses(System.String)\">\r\n      <summary>Crea un nuovo componente <see cref=\"T:System.Diagnostics.Process\" /> per ciascuna risorsa di processo nel computer specificato.</summary>\r\n      <returns>Matrice di tipo <see cref=\"T:System.Diagnostics.Process\" /> che rappresenta tutte le risorse di processo in esecuzione sul computer specificato.</returns>\r\n      <param name=\"machineName\">Computer da cui leggere l'elenco di processi. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String)\">\r\n      <summary>Crea una matrice di nuovi componenti <see cref=\"T:System.Diagnostics.Process\" /> e li associa a tutte le risorse di processo nel computer locale che condividono il nome di processo specificato.</summary>\r\n      <returns>Una matrice di tipo <see cref=\"T:System.Diagnostics.Process\" /> che rappresenta le risorse di processo che eseguono l'applicazione o il file specificati.</returns>\r\n      <param name=\"processName\">Nome descrittivo del processo. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)\">\r\n      <summary>Crea una matrice di nuovi componenti <see cref=\"T:System.Diagnostics.Process\" /> e li associa a tutte le risorse di processo in un computer remoto che condividono il nome di processo specificato.</summary>\r\n      <returns>Una matrice di tipo <see cref=\"T:System.Diagnostics.Process\" /> che rappresenta le risorse di processo che eseguono l'applicazione o il file specificati.</returns>\r\n      <param name=\"processName\">Nome descrittivo del processo. </param>\r\n      <param name=\"machineName\">Nome di un computer della rete. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.HasExited\">\r\n      <summary>Ottiene un valore che indica se il processo associato è stato terminato.</summary>\r\n      <returns>true se il processo del sistema operativo cui fa riferimento il componente <see cref=\"T:System.Diagnostics.Process\" /> è stato terminato; in caso contrario, false.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with the object. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The exit code for the process could not be retrieved. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.HasExited\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Id\">\r\n      <summary>Ottiene l'identificatore univoco per il processo associato.</summary>\r\n      <returns>Identificatore univoco generato dal sistema relativo al processo cui questa istanza di <see cref=\"T:System.Diagnostics.Process\" /> fa riferimento.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process's <see cref=\"P:System.Diagnostics.Process.Id\" /> property has not been set.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Kill\">\r\n      <summary>Arresta immediatamente il processo associato.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to call <see cref=\"M:System.Diagnostics.Process.Kill\" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has already exited. -or-There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.LeaveDebugMode\">\r\n      <summary>Fa uscire un componente <see cref=\"T:System.Diagnostics.Process\" /> dallo stato che permette di interagire con i processi del sistema operativo eseguiti in modalità speciale.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MachineName\">\r\n      <summary>Ottiene il nome del computer sul quale è in esecuzione il processo associato.</summary>\r\n      <returns>Nome del computer sul quale è in esecuzione il processo associato.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MainModule\">\r\n      <summary>Ottiene il modulo principale del processo associato.</summary>\r\n      <returns>Oggetto <see cref=\"T:System.Diagnostics.ProcessModule\" /> usato per avviare il processo.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MainModule\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A 32-bit process is trying to access the modules of a 64-bit process.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MaxWorkingSet\">\r\n      <summary>Ottiene o imposta la dimensione massima del working set consentita per il processo associato.</summary>\r\n      <returns>Dimensione massima del working set consentita in memoria per il processo, in byte.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MaxWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MinWorkingSet\">\r\n      <summary>Ottiene o imposta la dimensione minima del working set consentita per il processo associato.</summary>\r\n      <returns>Dimensione minima del working set richiesta in memoria per il processo, in byte.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MinWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Modules\">\r\n      <summary>Ottiene i moduli che sono stati caricati dal processo associato.</summary>\r\n      <returns>Matrice di tipo <see cref=\"T:System.Diagnostics.ProcessModule\" /> che rappresenta i moduli caricati dal processo associato.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for either the system process or the idle process.These processes do not have modules.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.NonpagedSystemMemorySize64\">\r\n      <summary>Ottiene la quantità di memoria di sistema non di paging allocata per il processo associato.</summary>\r\n      <returns>Quantità di memoria di sistema, in byte, allocata per il processo associato che non può essere scritta nel file di paging della memoria virtuale.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.OnExited\">\r\n      <summary>Genera l'evento <see cref=\"E:System.Diagnostics.Process.Exited\" />.</summary>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.OutputDataReceived\">\r\n      <summary>Si verifica quando un'applicazione scrive nel proprio flusso <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> reindirizzato.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedMemorySize64\">\r\n      <summary>Ottiene la quantità di memoria di paging allocata per il processo associato.</summary>\r\n      <returns>Quantità di memoria, in byte, allocata nel file di paging della memoria virtuale per il processo associato.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedSystemMemorySize64\">\r\n      <summary>Ottiene la quantità di memoria di sistema paginabile allocata per il processo associato.</summary>\r\n      <returns>Quantità di memoria di sistema, in byte, allocata per il processo associato che può essere scritta nel file di paging della memoria virtuale.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakPagedMemorySize64\">\r\n      <summary>Ottiene la quantità massima di memoria nel file di paging della memoria virtuale usata dal processo associato.</summary>\r\n      <returns>Quantità massima di memoria, in byte, allocata nel file di paging della memoria virtuale per il processo associato da quando è stato avviato.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakVirtualMemorySize64\">\r\n      <summary>Ottiene la quantità massima di memoria virtuale usata dal processo associato.</summary>\r\n      <returns>Quantità massima di memoria virtuale, in byte, allocata per il processo associato da quando è stato avviato.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakWorkingSet64\">\r\n      <summary>Ottiene la quantità massima di memoria fisica usata dal processo associato.</summary>\r\n      <returns>Quantità massima di memoria fisica, in byte, allocata per il processo associato da quando è stato avviato.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityBoostEnabled\">\r\n      <summary>Ottiene o imposta un valore che indica se la priorità del processo associato deve essere incrementata temporaneamente dal sistema operativo quando la finestra principale è attiva.</summary>\r\n      <returns>true se va eseguito l'incremento dinamico della priorità del processo uscito dallo stato di attesa; in caso contrario, false.Il valore predefinito è false.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Priority boost information could not be retrieved from the associated process resource. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityBoostEnabled\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityClass\">\r\n      <summary>Ottiene o imposta la categoria di priorità globale per il processo associato.</summary>\r\n      <returns>Categoria di priorità del processo associato, dalla quale viene calcolata la proprietà <see cref=\"P:System.Diagnostics.Process.BasePriority\" /> del processo.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">You have set the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>\r\n      <exception cref=\"T:System.ComponentModel.InvalidEnumArgumentException\">Priority class cannot be set because it does not use a valid value, as defined in the <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> enumeration.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivateMemorySize64\">\r\n      <summary>Ottiene la quantità di memoria privata allocata per il processo associato.</summary>\r\n      <returns>Quantità di memoria, in byte, allocata per il processo associato che non può essere condivisa con altri processi.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\">\r\n      <summary>Ottiene il tempo privilegiato del processore per questo processo.</summary>\r\n      <returns>Valore <see cref=\"T:System.TimeSpan\" /> che indica la quantità di tempo impiegato dal processore nell'eseguire il codice all'interno del nucleo centrale del sistema operativo.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessName\">\r\n      <summary>Ottiene il nome del processo.</summary>\r\n      <returns>Nome usato dal sistema per identificare il processo rispetto all'utente.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process does not have an identifier, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" />.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is not on this computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessorAffinity\">\r\n      <summary>Ottiene o imposta i processori nei quali è pianificata l'esecuzione dei thread di questo processo.</summary>\r\n      <returns>Maschera di bit che rappresenta i processori con cui è possibile eseguire i thread del processo associato.Il valore predefinito dipende dal numero di processori presenti nel computer.Il valore predefinito è 2 n -1, dove n è il numero di processori.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> was not available.-or- The process has exited. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Refresh\">\r\n      <summary>Elimina le informazioni relative al processo associato memorizzate nella cache all'interno del componente del processo.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SafeHandle\">\r\n      <summary>Ottiene l'handle nativo di questo processo.</summary>\r\n      <returns>Handle nativo di questo processo.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SessionId\">\r\n      <summary>Ottiene l'identificatore della sessione di Servizi terminal per il processo associato.</summary>\r\n      <returns>Identificatore della sessione di Servizi terminal per il processo associato.</returns>\r\n      <exception cref=\"T:System.NullReferenceException\">There is no session associated with this process.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The <see cref=\"P:System.Diagnostics.Process.SessionId\" /> property is not supported on Windows 98.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardError\">\r\n      <summary>Ottiene un flusso usato per leggere l'output di errore dell'applicazione.</summary>\r\n      <returns>Oggetto <see cref=\"T:System.IO.StreamReader\" /> che può essere usato per leggere il flusso di errore standard dell'applicazione.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginErrorReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardInput\">\r\n      <summary>Ottiene un flusso usato per scrivere l'input dell'applicazione.</summary>\r\n      <returns>Oggetto <see cref=\"T:System.IO.StreamWriter\" /> che può essere usato per scrivere il flusso di input standard dell'applicazione.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> stream has not been defined because <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" /> is set to false. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardOutput\">\r\n      <summary>Ottiene un flusso usato per leggere l'output dell'applicazione.</summary>\r\n      <returns>Oggetto <see cref=\"T:System.IO.StreamReader\" /> che può essere usato per leggere il flusso di output standard dell'applicazione.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginOutputReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start\">\r\n      <summary>Avvia (o riutilizza) la risorsa di processo specificata dalla proprietà <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> di questo componente <see cref=\"T:System.Diagnostics.Process\" /> e la associa al componente.</summary>\r\n      <returns>true se viene avviata una risorsa di processo, false se non viene avviata alcuna risorsa di processo nuova (ad esempio, se è stato riutilizzato un processo esistente).</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <see cref=\"T:System.Diagnostics.Process\" /> component's <see cref=\"P:System.Diagnostics.Process.StartInfo\" />.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> member of the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> property is true while <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is true. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)\">\r\n      <summary>Avvia la risorsa di processo specificata dal parametro contenente le informazioni di avvio del processo (ad esempio, il nome file del processo da avviare) e associa la risorsa a un nuovo componente <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nuovo <see cref=\"T:System.Diagnostics.Process\" /> associato alla risorsa di processo o null se non viene avviata alcuna risorsa di processo.Si noti che un nuovo processo avviato parallelamente a istanze dello stesso processo già in esecuzione sarà indipendente dalle altre.Inoltre, l'avvio può restituire un processo non Null con la relativa proprietà <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> già impostata su true.In questo caso, è possibile che il processo avviato abbia attivato un'istanza esistente di se stesso e quindi sia terminato.</returns>\r\n      <param name=\"startInfo\">Oggetto <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> che contiene le informazioni usate per avviare il processo, tra cui il nome file e gli eventuali argomenti della riga di comando. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is also true.-or-The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UserName\" /> property is not null or empty or the <see cref=\"P:System.Diagnostics.ProcessStartInfo.Password\" /> property is not null.</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"startInfo\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The file specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property could not be found.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String)\">\r\n      <summary>Avvia una risorsa di processo specificando il nome di un documento o un file di applicazione e associa la risorsa a un nuovo componente <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nuovo <see cref=\"T:System.Diagnostics.Process\" /> associato alla risorsa di processo o null se non viene avviata alcuna risorsa di processo.Si noti che un nuovo processo avviato parallelamente a istanze dello stesso processo già in esecuzione sarà indipendente dalle altre.Inoltre, l'avvio può restituire un processo non Null con la relativa proprietà <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> già impostata su true.In questo caso, è possibile che il processo avviato abbia attivato un'istanza esistente di se stesso e quindi sia terminato.</returns>\r\n      <param name=\"fileName\">Nome di un documento o di un file di applicazione da eseguire nel processo. </param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String)\">\r\n      <summary>Avvia una risorsa di processo specificando il nome di un'applicazione e un insieme di argomenti della riga di comando e associa la risorsa a un nuovo componente <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nuovo <see cref=\"T:System.Diagnostics.Process\" /> associato alla risorsa di processo o null se non viene avviata alcuna risorsa di processo.Si noti che un nuovo processo avviato parallelamente a istanze dello stesso processo già in esecuzione sarà indipendente dalle altre.Inoltre, l'avvio può restituire un processo non Null con la relativa proprietà <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> già impostata su true.In questo caso, è possibile che il processo avviato abbia attivato un'istanza esistente di se stesso e quindi sia terminato.</returns>\r\n      <param name=\"fileName\">Nome di un file di applicazione da eseguire nel processo. </param>\r\n      <param name=\"arguments\">Argomenti della riga di comando da passare all'avvio del processo. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <paramref name=\"fileName\" /> or <paramref name=\"arguments\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>Avvia una risorsa di processo specificando il nome di un'applicazione, un nome utente, una password e un dominio e associa la risorsa a un nuovo componente <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nuovo <see cref=\"T:System.Diagnostics.Process\" /> associato alla risorsa di processo o null se non viene avviata alcuna risorsa di processo.Si noti che un nuovo processo avviato parallelamente a istanze dello stesso processo già in esecuzione sarà indipendente dalle altre.Inoltre, l'avvio può restituire un processo non Null con la relativa proprietà <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> già impostata su true.In questo caso, è possibile che il processo avviato abbia attivato un'istanza esistente di se stesso e quindi sia terminato.</returns>\r\n      <param name=\"fileName\">Nome di un file di applicazione da eseguire nel processo.</param>\r\n      <param name=\"userName\">Nome utente da usare all'avvio del processo.</param>\r\n      <param name=\"password\">Classe <see cref=\"T:System.Security.SecureString\" /> contenente la password da usare all'avvio del processo.</param>\r\n      <param name=\"domain\">Dominio da usare all'avvio del processo.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>Avvia una risorsa di processo specificando il nome di un'applicazione e un insieme di argomenti della riga di comando, un nome utente, una password e un dominio, e associa la risorsa a un nuovo componente <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Nuovo <see cref=\"T:System.Diagnostics.Process\" /> associato alla risorsa di processo o null se non viene avviata alcuna risorsa di processo.Si noti che un nuovo processo avviato parallelamente a istanze dello stesso processo già in esecuzione sarà indipendente dalle altre.Inoltre, l'avvio può restituire un processo non Null con la relativa proprietà <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> già impostata su true.In questo caso, è possibile che il processo avviato abbia attivato un'istanza esistente di se stesso e quindi sia terminato.</returns>\r\n      <param name=\"fileName\">Nome di un file di applicazione da eseguire nel processo. </param>\r\n      <param name=\"arguments\">Argomenti della riga di comando da passare all'avvio del processo. </param>\r\n      <param name=\"userName\">Nome utente da usare all'avvio del processo.</param>\r\n      <param name=\"password\">Classe <see cref=\"T:System.Security.SecureString\" /> contenente la password da usare all'avvio del processo.</param>\r\n      <param name=\"domain\">Dominio da usare all'avvio del processo.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartInfo\">\r\n      <summary>Ottiene o imposta le proprietà da passare al metodo <see cref=\"M:System.Diagnostics.Process.Start\" /> del componente <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Oggetto <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> che rappresenta i dati con i quali avviare il processo.Tra gli argomenti sono compresi il nome del file eseguibile o il documento usato per avviare il processo.</returns>\r\n      <exception cref=\"T:System.ArgumentNullException\">The value that specifies the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> is null. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartTime\">\r\n      <summary>Ottiene l'ora in cui è stato avviato il processo associato.</summary>\r\n      <returns>Oggetto che indica il momento in cui è stato avviato il processo.Viene generata un eccezione se il processo non è in esecuzione.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.StartTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or-The process has not been started.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred in the call to the Windows function.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Threads\">\r\n      <summary>Ottiene il gruppo di thread in esecuzione nel processo associato.</summary>\r\n      <returns>Matrice di tipo <see cref=\"T:System.Diagnostics.ProcessThread\" /> che rappresenta i thread del sistema operativo attualmente in esecuzione nel processo associato.</returns>\r\n      <exception cref=\"T:System.SystemException\">The process does not have an <see cref=\"P:System.Diagnostics.Process.Id\" />, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" /> instance.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.TotalProcessorTime\">\r\n      <summary>Ottiene il tempo totale del processore per questo processo.</summary>\r\n      <returns>Valore <see cref=\"T:System.TimeSpan\" /> che indica la quantità di tempo impiegato dal processo associato nell'utilizzo della CPU.Questo valore è la somma delle proprietà <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> e <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" />.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.TotalProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.UserProcessorTime\">\r\n      <summary>Ottiene il tempo utente del processore per questo processo.</summary>\r\n      <returns>Valore <see cref=\"T:System.TimeSpan\" /> che indica la quantità di tempo impiegato dal processo associato nell'esecuzione del codice all'interno della parte di applicazione del processo (non all'interno del nucleo centrale del sistema operativo).</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.VirtualMemorySize64\">\r\n      <summary>Ottiene la quantità di memoria virtuale allocata per il processo associato.</summary>\r\n      <returns>Quantità di memoria virtuale, in byte, allocata per il processo associato.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit\">\r\n      <summary>Indica al componente <see cref=\"T:System.Diagnostics.Process\" /> di attendere in modo indefinito la terminazione del processo associato.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\">\r\n      <summary>Indica al componente <see cref=\"T:System.Diagnostics.Process\" /> di attendere per il numero specificato di millisecondi che il processo venga terminato.</summary>\r\n      <returns>true se il processo associato è stato terminato; in caso contrario, false.</returns>\r\n      <param name=\"milliseconds\">Quantità di tempo, espressa in millisecondi, in base alla quale viene attesa la terminazione del processo associato.Il valore massimo è il valore Integer a 32 bit più alto possibile, che rappresenta l'infinito per il sistema operativo.</param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.WorkingSet64\">\r\n      <summary>Ottiene la quantità di memoria fisica allocata per il processo associato.</summary>\r\n      <returns>Quantità di memoria fisica, in byte, allocata per il processo associato.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModule\">\r\n      <summary>Rappresenta un file DLL o EXE caricato in un particolare processo.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.BaseAddress\">\r\n      <summary>Ottiene l'indirizzo di memoria in cui è stato caricato il modulo.</summary>\r\n      <returns>L'indirizzo di caricamento del modulo.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.EntryPointAddress\">\r\n      <summary>Ottiene l'indirizzo di memoria della funzione eseguita quando il sistema carica ed esegue il modulo.</summary>\r\n      <returns>Il punto di ingresso del modulo.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.FileName\">\r\n      <summary>Ottiene il percorso completo del modulo.</summary>\r\n      <returns>Il percorso completo che definisce la posizione del modulo.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleMemorySize\">\r\n      <summary>Ottiene la quantità di memoria richiesta per caricare il modulo.</summary>\r\n      <returns>La dimensione in byte della memoria occupata dal modulo.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleName\">\r\n      <summary>Ottiene il nome del modulo del processo.</summary>\r\n      <returns>Nome del modulo.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModule.ToString\">\r\n      <summary>Converte il nome del modulo in una stringa.</summary>\r\n      <returns>Valore della proprietà <see cref=\"P:System.Diagnostics.ProcessModule.ModuleName\" />.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModuleCollection\">\r\n      <summary>Fornisce un insieme fortemente tipizzato di oggetti <see cref=\"T:System.Diagnostics.ProcessModule\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor\">\r\n      <summary>Consente di inizializzare una nuova istanza della classe <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />, senza istanze di <see cref=\"T:System.Diagnostics.ProcessModule\" /> associate.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])\">\r\n      <summary>Consente di inizializzare una nuova istanza della classe <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> utilizzando la matrice specificata di istanze <see cref=\"T:System.Diagnostics.ProcessModule\" />.</summary>\r\n      <param name=\"processModules\">Matrice di istanze di <see cref=\"T:System.Diagnostics.ProcessModule\" /> con la quale inizializzare questa istanza <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> . </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)\">\r\n      <summary>Determina se il modulo di processo specificato è contenuto nell'insieme.</summary>\r\n      <returns>Restituisce true se il modulo è presente nell'insieme; in caso contrario, false.</returns>\r\n      <param name=\"module\">Istanza <see cref=\"T:System.Diagnostics.ProcessModule\" /> che indica il modulo da trovare in questo insieme. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)\">\r\n      <summary>Copia una matrice di istanze <see cref=\"T:System.Diagnostics.ProcessModule\" /> nell'insieme, in corrispondenza dell'indice specificato.</summary>\r\n      <param name=\"array\">Matrice di istanze <see cref=\"T:System.Diagnostics.ProcessModule\" /> da aggiungere all'insieme. </param>\r\n      <param name=\"index\">Posizione in cui aggiungere le nuove istanze. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)\">\r\n      <summary>Fornisce la posizione di un modulo specificato nell'insieme.</summary>\r\n      <returns>Indice a base zero che definisce la posizione del modulo in <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />.</returns>\r\n      <param name=\"module\">\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> il cui indice viene richiamato. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)\">\r\n      <summary>Ottiene un indice per scorrere l'insieme di moduli di processo.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> che indicizza i moduli nell'insieme. </returns>\r\n      <param name=\"index\">Valore di indice a base zero del modulo dell'insieme. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ProcessPriorityClass\">\r\n      <summary>Indica la priorità che il sistema associa a un processo.Questo valore, insieme al valore di priorità di ciascun thread del processo, determina il livello di priorità base di ogni thread.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.AboveNormal\">\r\n      <summary>Specifica che il processo ha una priorità superiore a Normal ma inferiore a <see cref=\"F:System.Diagnostics.ProcessPriorityClass.High\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.BelowNormal\">\r\n      <summary>Specifica che il processo ha una priorità superiore a Idle ma inferiore a Normal.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.High\">\r\n      <summary>Specifica che il processo svolge attività critiche a livello temporale che richiedono un'immediata esecuzione, come ad esempio la finestra di dialogo Task List, la quale deve essere aperta velocemente in risposta a una chiamata dell'utente, a prescindere dal carico sul sistema operativo.I thread del processo hanno la precedenza sui thread dei processi con classe di priorità normal o idle.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Idle\">\r\n      <summary>Specifica che i thread di questo processo vengono eseguiti soltanto quando il sistema è inattivo, ad esempio quando è in funzione uno screen saver.I thread del processo hanno la precedenza sui thread di qualsiasi processo con una classe di priorità superiore.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Normal\">\r\n      <summary>Specifica che il processo non ha particolari esigenze di pianificazione.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.RealTime\">\r\n      <summary>Specifica che la priorità del processo è la più alta possibile.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessStartInfo\">\r\n      <summary>Specifica un insieme di valori usati all'avvio di un processo.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor\">\r\n      <summary>Inizializza una nuova istanza della classe <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> senza specificare un nome file con il quale avviare il processo.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)\">\r\n      <summary>Inizializza una nuova istanza della classe <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> e specifica un nome file, ad esempio un'applicazione o un documento, con il quale avviare il processo.</summary>\r\n      <param name=\"fileName\">Un'applicazione o un documento con il quale avviare un processo. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)\">\r\n      <summary>Inizializza una nuova istanza della classe <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />, specifica il nome file di un'applicazione con cui avviare il processo e determina un insieme di argomenti della riga di comando da passare all'applicazione.</summary>\r\n      <param name=\"fileName\">Un'applicazione con la quale avviare un processo. </param>\r\n      <param name=\"arguments\">Argomenti della riga di comando da passare all'applicazione all'avvio del processo. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Arguments\">\r\n      <summary>Ottiene o imposta l'insieme di argomenti della riga di comando da usare all'avvio dell'applicazione.</summary>\r\n      <returns>Una singola stringa contenente gli argomenti da passare all'applicazione di destinazione specificata nella proprietà <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" />.Il valore predefinito è una stringa vuota (\"\").In Windows Vista e nelle versioni precedenti del sistema operativo Windows, la lunghezza degli argomenti aggiunta alla lunghezza del percorso completo del processo deve essere minore di 2080.In Windows 7 e versioni successive la lunghezza deve essere minore di 32699.Gli argomenti vengono analizzati e interpretati dall'applicazione di destinazione, pertanto devono essere allineati con le aspettative dell'applicazione.Per le applicazioni .NET, come illustrato negli esempi seguenti, gli spazi vengono interpretati come un separatore tra più argomenti.Un singolo argomento che include spazi deve essere racchiuso tra virgolette, ma tali virgolette non vengono riportate nell'applicazione di destinazione.Nelle virgolette incluse nell'argomento analizzato finale, aggiungere tre caratteri di escape a ogni virgoletta.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.CreateNoWindow\">\r\n      <summary>Ottiene o imposta un valore che indica se avviare il processo in una nuova finestra.</summary>\r\n      <returns>true se il processo deve essere avviato senza creare una nuova finestra; in caso contrario, false.Il valore predefinito è false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Domain\">\r\n      <summary>Ottiene o imposta un valore che identifica il dominio da usare all'avvio del processo. </summary>\r\n      <returns>Il dominio di Active Directory da usare all'avvio del processo.La proprietà del dominio interessa principalmente gli utenti in ambienti aziendali che usano Active Directory.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Environment\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.FileName\">\r\n      <summary>Ottiene o imposta l'applicazione o il documento da avviare.</summary>\r\n      <returns>Il nome dell'applicazione da avviare oppure il nome di un documento di un tipo di file associato a un'applicazione con un'azione Open predefinita.Il valore predefinito è una stringa vuota (\"\").</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.LoadUserProfile\">\r\n      <summary>Ottiene o imposta un valore che indica se deve essere caricato il profilo utente di Windows dal Registro di sistema. </summary>\r\n      <returns>true se il profilo utente Windows deve essere caricato; in caso contrario, false.Il valore predefinito è false.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Password\">\r\n      <summary>Ottiene o imposta una stringa sicura che contiene la password utente da usare all'avvio del processo.</summary>\r\n      <returns>La password utente da usare all'avvio del processo.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\">\r\n      <summary>Ottiene o imposta un valore che indica se l'output di errore di un'applicazione viene scritto nel flusso <see cref=\"P:System.Diagnostics.Process.StandardError\" />.</summary>\r\n      <returns>true se l'output di errore deve essere scritto in <see cref=\"P:System.Diagnostics.Process.StandardError\" />; in caso contrario, false.Il valore predefinito è false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\">\r\n      <summary>Ottiene o imposta un valore che indica se l'input per un'applicazione viene letto dal flusso <see cref=\"P:System.Diagnostics.Process.StandardInput\" />.</summary>\r\n      <returns>true se l'input deve essere letto da <see cref=\"P:System.Diagnostics.Process.StandardInput\" />; in caso contrario, false.Il valore predefinito è false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\">\r\n      <summary>Ottiene o imposta un valore che indica se l'output testuale di un'applicazione viene scritto nel flusso <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />.</summary>\r\n      <returns>true se l'output deve essere scritto in <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />; in caso contrario, false.Il valore predefinito è false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding\">\r\n      <summary>Ottiene o imposta la codifica preferita per l'output di errore.</summary>\r\n      <returns>Oggetto che rappresenta la codifica preferita per l'output di errore.Il valore predefinito è null.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding\">\r\n      <summary>Ottiene o imposta la codifica preferita per l'output standard.</summary>\r\n      <returns>Oggetto che rappresenta la codifica preferita per l'output standard.Il valore predefinito è null.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UserName\">\r\n      <summary>Ottiene o imposta il nome utente da usare all'avvio del processo.</summary>\r\n      <returns>Nome utente da usare all'avvio del processo.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\">\r\n      <summary>Ottiene o imposta un valore che indica se usare la shell del sistema operativo per avviare il processo.</summary>\r\n      <returns>true se la shell deve essere usata all'avvio del processo; false se il processo deve essere creato direttamente dal file eseguibile.Il valore predefinito è true.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.WorkingDirectory\">\r\n      <summary>Quando la proprietà <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> è false, ottiene o imposta la directory di lavoro per il processo da avviare.Quando la proprietà <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> è true, ottiene o imposta la directory che contiene il processo da avviare.</summary>\r\n      <returns>Quando <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> è true, il nome completo della directory contenente il processo da avviare.Quando la proprietà <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> è false, la directory di lavoro per il processo da avviare.Il valore predefinito è una stringa vuota (\"\").</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThread\">\r\n      <summary>Rappresenta un thread di processo del sistema operativo.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.BasePriority\">\r\n      <summary>Ottiene la priorità base del thread.</summary>\r\n      <returns>La priorità base del thread, calcolata dal sistema operativo combinando la classe di priorità del processo con il livello di priorità del thread associato.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.CurrentPriority\">\r\n      <summary>Ottiene la priorità corrente del thread.</summary>\r\n      <returns>La priorità corrente del thread, che potrebbe essere diversa da quella di base a seconda del modo in cui il sistema operativo pianifica il thread.La priorità può essere temporaneamente aumentata per un thread attivo.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.Id\">\r\n      <summary>Ottiene l'identificatore univoco del thread.</summary>\r\n      <returns>L'identificatore univoco associato a uno specifico thread.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.IdealProcessor\">\r\n      <summary>Imposta il processore preferenziale su cui eseguire questo thread.</summary>\r\n      <returns>Il processore preferenziale del thread, utilizzato quando il sistema pianifica i thread, per determinare il processore su cui eseguirlo.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Il sistema non è stato in grado di impostare l'avvio del thread sul processore specificato. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Il processo è eseguito su un computer remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityBoostEnabled\">\r\n      <summary>Ottiene o imposta un valore che indica se il sistema operativo deve incrementare temporaneamente la priorità del thread associato ogni volta che la finestra principale del processo del thread diventa attiva.</summary>\r\n      <returns>true per incrementare la priorità del thread quando l'utente interagisce con l'interfaccia del processo; in caso contrario, false .Il valore predefinito è false.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Non è possibile recuperare le informazioni sull'incremento di priorità.- oppure -Non è possibile impostare le informazioni sull'incremento di priorità. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Il processo è eseguito su un computer remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityLevel\">\r\n      <summary>Ottiene o imposta il livello di priorità del thread.</summary>\r\n      <returns>Uno dei valori di <see cref=\"T:System.Diagnostics.ThreadPriorityLevel\" />, che specifica un intervallo nel quale rientra la priorità del thread.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Non è possibile recuperare le informazioni sul livello di priorità del thread. - oppure -Non è possibile impostare il livello di priorità del thread.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Il processo è eseguito su un computer remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime\">\r\n      <summary>Ottiene l'intervallo di tempo che il thread ha impiegato nell'esecuzione del codice all'interno del nucleo centrale del sistema operativo.</summary>\r\n      <returns>Valore <see cref=\"T:System.TimeSpan\" /> che indica l'intervallo di tempo impiegato dal thread nell'esecuzione del codice all'interno del nucleo centrale del sistema operativo.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Non è possibile recuperare l'intervallo di tempo del thread. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Il processo è eseguito su un computer remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ProcessorAffinity\">\r\n      <summary>Imposta il processore sul quale può essere eseguito il thread associato.</summary>\r\n      <returns>Un oggetto <see cref=\"T:System.IntPtr\" /> che punta a un insieme di bit, ciascuno dei quali rappresenta un processore sul quale può essere eseguito il thread.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Non è stato possibile impostare l'affinità dei processori. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Il processo è eseguito su un computer remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThread.ResetIdealProcessor\">\r\n      <summary>Reimposta il processore ideale di questo thread a indicare che non è presente un singolo processore ideale.In altre parole, ogni altro processore può essere ideale.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Non è possibile reimpostare il processore ideale. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Il processo è eseguito su un computer remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartAddress\">\r\n      <summary>Ottiene l'indirizzo di memoria della funzione chiamata dal sistema operativo per l'avvio di questo thread.</summary>\r\n      <returns>L'indirizzo iniziale del thread, che punta alla funzione definita dall'applicazione eseguita dal thread.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Il processo è eseguito su un computer remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartTime\">\r\n      <summary>Ottiene l'ora in cui il sistema operativo ha iniziato il thread.</summary>\r\n      <returns>Un oggetto <see cref=\"T:System.DateTime\" /> che rappresenta l'ora di sistema al momento dell'avvio del thread da parte del sistema operativo.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Non è possibile recuperare l'intervallo di tempo del thread. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Il processo è eseguito su un computer remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ThreadState\">\r\n      <summary>Ottiene lo stato corrente di questo thread.</summary>\r\n      <returns>Un oggetto <see cref=\"T:System.Diagnostics.ThreadState\" /> che indica lo stato del thread, ad esempio in esecuzione, in attesa o completato.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Il processo è eseguito su un computer remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.TotalProcessorTime\">\r\n      <summary>Ottiene la quantità totale di tempo impiegata da questo thread nell'utilizzo del processore.</summary>\r\n      <returns>Un oggetto <see cref=\"T:System.TimeSpan\" /> che indica la quantità di tempo in base alla quale il thread ha avuto il controllo del processore.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Non è possibile recuperare l'intervallo di tempo del thread. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Il processo è eseguito su un computer remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.UserProcessorTime\">\r\n      <summary>Ottiene la quantità di tempo che il thread associato ha impiegato nell'esecuzione del codice all'interno dell'applicazione.</summary>\r\n      <returns>Valore <see cref=\"T:System.TimeSpan\" /> che indica la quantità di tempo impiegato dal thread nell'esecuzione del codice all'interno dell'applicazione, rispetto all'esecuzione all'interno del nucleo centrale del sistema operativo.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Non è possibile recuperare l'intervallo di tempo del thread. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Il processo è eseguito su un computer remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.WaitReason\">\r\n      <summary>Ottiene il motivo per cui il thread è in attesa.</summary>\r\n      <returns>Un oggetto <see cref=\"T:System.Diagnostics.ThreadWaitReason\" /> che rappresenta il motivo per il quale il thread è nello stato di attesa.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">Il thread non è nello stato di attesa. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">La piattaforma è Windows 98 o Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Il processo è eseguito su un computer remoto.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThreadCollection\">\r\n      <summary>Fornisce un insieme fortemente tipizzato di oggetti <see cref=\"T:System.Diagnostics.ProcessThread\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor\">\r\n      <summary>Consente di inizializzare una nuova istanza della classe <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />, senza istanze di <see cref=\"T:System.Diagnostics.ProcessThread\" /> associate.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])\">\r\n      <summary>Consente di inizializzare una nuova istanza della classe <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> utilizzando la matrice specificata di istanze <see cref=\"T:System.Diagnostics.ProcessThread\" />.</summary>\r\n      <param name=\"processThreads\">Matrice di istanze di <see cref=\"T:System.Diagnostics.ProcessThread\" /> con la quale inizializzare questa istanza <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> . </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)\">\r\n      <summary>Accoda un thread di processo all'insieme.</summary>\r\n      <returns>Indice a base zero del thread contenuto nell'insieme.</returns>\r\n      <param name=\"thread\">Thread da aggiungere all'insieme. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)\">\r\n      <summary>Determina se il thread di processo specificato è contenuto nell'insieme.</summary>\r\n      <returns>Restituisce true se il thread è presente nell'insieme; in caso contrario, false.</returns>\r\n      <param name=\"thread\">Istanza <see cref=\"T:System.Diagnostics.ProcessThread\" /> che indica il thread da trovare in questo insieme. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)\">\r\n      <summary>Copia una matrice di istanze <see cref=\"T:System.Diagnostics.ProcessThread\" /> nell'insieme, in corrispondenza dell'indice specificato.</summary>\r\n      <param name=\"array\">Matrice di istanze <see cref=\"T:System.Diagnostics.ProcessThread\" /> da aggiungere all'insieme. </param>\r\n      <param name=\"index\">Posizione in cui aggiungere le nuove istanze. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)\">\r\n      <summary>Fornisce la posizione di un thread specificato nell'insieme.</summary>\r\n      <returns>Indice a base zero che definisce la posizione del thread all'interno di <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />.</returns>\r\n      <param name=\"thread\">\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> il cui indice viene richiamato. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)\">\r\n      <summary>Inserisce un thread di processo nella posizione specificata dell'insieme.</summary>\r\n      <param name=\"index\">Indice a base zero che indica la posizione in cui inserire il thread. </param>\r\n      <param name=\"thread\">Thread da inserire nell'insieme. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)\">\r\n      <summary>Ottiene un indice per scorrere l'insieme di thread di processo.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> che indicizza i thread nell'insieme.</returns>\r\n      <param name=\"index\">Valore dell'indice a base zero del thread dell'insieme. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)\">\r\n      <summary>Elimina un thread di processo dall'insieme.</summary>\r\n      <param name=\"thread\">Thread da rimuovere dall'insieme. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ThreadPriorityLevel\">\r\n      <summary>Specifica il livello di priorità di un thread.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.AboveNormal\">\r\n      <summary>Specifica un livello superiore alla priorità normale della classe <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />  associata.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.BelowNormal\">\r\n      <summary>Specifica un livello inferiore alla priorità normale della classe <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />  associata.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Highest\">\r\n      <summary>Specifica la massima priorità.Questa è di due livelli superiore alla priorità normale della classe <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />  associata.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Idle\">\r\n      <summary>Specifica la priorità idle.Questo è il minimo valore possibile di priorità di tutti i thread, indipendentemente dal valore della classe <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />  associata.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Lowest\">\r\n      <summary>Specifica la minima priorità.Questa è di due livelli inferiore alla priorità normale della classe <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />  associata.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Normal\">\r\n      <summary>Specifica la priorità normale della classe <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />  associata.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.TimeCritical\">\r\n      <summary>Specifica la priorità critica a livello temporale.Questo è il massimo valore di priorità di tutti i thread, indipendentemente dal valore della classe <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />  associata.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadState\">\r\n      <summary>Specifica lo stato di esecuzione corrente del thread.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Initialized\">\r\n      <summary>Uno stato che indica che il thread è stato inizializzato ma non è stato ancora avviato.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Ready\">\r\n      <summary>Uno stato che indica che il thread è in attesa di utilizzare un processore in quanto nessun processore è disponibile.Il thread è pronto per essere eseguito sul prossimo processore disponibile.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Running\">\r\n      <summary>Uno stato che indica che il thread utilizza attualmente un processore.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Standby\">\r\n      <summary>Uno stato che indica che il thread sta per utilizzare un processore.Un solo thread alla volta può trovarsi in questo stato.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Terminated\">\r\n      <summary>Uno stato che indica che il thread ha completato l'esecuzione ed è uscito.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Transition\">\r\n      <summary>Uno stato che indica che il thread è in attesa di una risorsa, diversa dal processore, prima di poter essere eseguito.Può essere ad esempio in attesa che il proprio stack di esecuzione venga paginato dal disco.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Unknown\">\r\n      <summary>Lo stato del thread è sconosciuto.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Wait\">\r\n      <summary>Uno stato che indica che il thread non è pronto per essere utilizzato dal processore in quanto è in attesa che un'operazione secondaria venga completata o che una risorsa venga resa disponibile.Quando il thread è pronto, viene ripianificato.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadWaitReason\">\r\n      <summary>Specifica il motivo per il quale un thread è in attesa.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairHigh\">\r\n      <summary>Il thread è in attesa di Event Pair High.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairLow\">\r\n      <summary>Il thread è in attesa di Event Pair Low.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.ExecutionDelay\">\r\n      <summary>L'esecuzione del thread è stata rinviata.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Executive\">\r\n      <summary>Il thread è in attesa della pianificazione.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.FreePage\">\r\n      <summary>Il thread è in attesa di una pagina di memoria virtuale libera.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReceive\">\r\n      <summary>Il thread è in attesa di una chiamata alla routine locale.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReply\">\r\n      <summary>Il thread è in attesa di una risposta a una chiamata di routine locale.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageIn\">\r\n      <summary>Il thread è in attesa di una pagina di memoria virtuale nella memoria.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageOut\">\r\n      <summary>Il thread è in attesa di una pagina di memoria virtuale da scrivere nel disco.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Suspended\">\r\n      <summary>L'esecuzione del thread è stata sospesa.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.SystemAllocation\">\r\n      <summary>Il thread è in attesa dell'allocazione di sistema.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Unknown\">\r\n      <summary>Il thread è in attesa per un motivo sconosciuto.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.UserRequest\">\r\n      <summary>Il thread è in attesa di una richiesta dell'utente.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.VirtualMemory\">\r\n      <summary>Il thread è in attesa che il sistema allochi la memoria virtuale.</summary>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/ja/System.Diagnostics.Process.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<doc>\r\n  <assembly>\r\n    <name>System.Diagnostics.Process</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\">\r\n      <summary>[セキュリティ クリティカル] プロセス ハンドルのためのマネージ ラッパーを提供します。</summary>\r\n    </member>\r\n    <member name=\"M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)\">\r\n      <summary>[セキュリティ クリティカル] 新しいインスタンスを初期化、<see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" />ファイナライズ フェーズ中にハンドルを解放するかどうかを示す、指定したハンドルからクラスです。</summary>\r\n      <param name=\"existingHandle\">ラップされるハンドル。</param>\r\n      <param name=\"ownsHandle\">true確実にできるようにする<see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" />終了処理中にハンドルを解放します。それ以外の場合、falseです。</param>\r\n    </member>\r\n    <member name=\"P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid\"></member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventArgs\">\r\n      <summary>\r\n        <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> イベントと <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> イベントにデータを提供します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.DataReceivedEventArgs.Data\">\r\n      <summary>リダイレクトされた <see cref=\"T:System.Diagnostics.Process\" /> 出力ストリームに書き込まれた文字の行を取得します。</summary>\r\n      <returns>関連する <see cref=\"T:System.Diagnostics.Process\" /> によって、リダイレクトされた <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> または <see cref=\"P:System.Diagnostics.Process.StandardError\" /> ストリームに書き込まれた行。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventHandler\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> の <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> イベントまたは <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> イベントを処理するメソッドを表します。</summary>\r\n      <param name=\"sender\">イベントのソース。</param>\r\n      <param name=\"e\">イベント データを格納している <see cref=\"T:System.Diagnostics.DataReceivedEventArgs\" />。 </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.Process\">\r\n      <summary>ローカル プロセスとリモート プロセスにアクセスできるようにして、ローカル システム プロセスの起動と中断ができるようにします。この型の .NET Framework ソース コードを参照するには、参照ソースをご覧ください。</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.#ctor\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> クラスの新しいインスタンスを初期化します。</summary>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.BasePriority\">\r\n      <summary>関連付けられたプロセスの基本優先順位を取得します。</summary>\r\n      <returns>関連付けられたプロセスの <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> から算出される基本優先順位。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or- The process has not started, so there is no process ID. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginErrorReadLine\">\r\n      <summary>アプリケーションのリダイレクトされた <see cref=\"P:System.Diagnostics.Process.StandardError\" /> ストリームで、非同期読み取り操作を開始します。</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginOutputReadLine\">\r\n      <summary>アプリケーションのリダイレクトされた <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> ストリームで、非同期読み取り操作を開始します。</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelErrorRead\">\r\n      <summary>アプリケーションのリダイレクトされた <see cref=\"P:System.Diagnostics.Process.StandardError\" /> ストリームで、非同期読み取り操作をキャンセルします。</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelOutputRead\">\r\n      <summary>アプリケーションのリダイレクトされた <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> ストリームで、非同期読み取り操作をキャンセルします。</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose\"></member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose(System.Boolean)\">\r\n      <summary>このプロセスによって使用されているすべてのリソースを解放します。</summary>\r\n      <param name=\"disposing\">マネージ リソースとアンマネージ リソースの両方を解放する場合は true。アンマネージ リソースだけを解放する場合は false。</param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.EnableRaisingEvents\">\r\n      <summary>プロセスが終了したときに、<see cref=\"E:System.Diagnostics.Process.Exited\" /> イベントを発生させるかどうかを取得または設定します。</summary>\r\n      <returns>正常終了または <see cref=\"M:System.Diagnostics.Process.Kill\" /> の呼び出しによって関連付けられたプロセスが終了したときに <see cref=\"E:System.Diagnostics.Process.Exited\" /> イベントを発生させる場合は true。それ以外の場合は false。既定値は、false です。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.EnterDebugMode\">\r\n      <summary>現在のスレッドのネイティブ プロパティ SeDebugPrivilege を有効にすることにより、<see cref=\"T:System.Diagnostics.Process\" /> コンポーネントを、特殊なモードで実行されているオペレーティング システム プロセスと対話する状態にします。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.ErrorDataReceived\">\r\n      <summary>アプリケーションがリダイレクトされた <see cref=\"P:System.Diagnostics.Process.StandardError\" /> ストリームに書き込む場合に発生します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitCode\">\r\n      <summary>関連付けられたプロセスが終了したときにプロセスによって指定された値を取得します。</summary>\r\n      <returns>関連付けられたプロセスが終了したときにプロセスによって指定されたコード。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has not exited.-or- The process <see cref=\"P:System.Diagnostics.Process.Handle\" /> is not valid. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitCode\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.Exited\">\r\n      <summary>プロセスが終了したときに発生します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitTime\">\r\n      <summary>関連付けられたプロセスが終了した時刻を取得します。</summary>\r\n      <returns>関連付けられたプロセスが終了した時刻を示す <see cref=\"T:System.DateTime\" />。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetCurrentProcess\">\r\n      <summary>新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントを取得し、現在アクティブなプロセスに関連付けます。</summary>\r\n      <returns>呼び出し元のアプリケーションを実行しているプロセス リソースに関連付けられた新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネント。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32)\">\r\n      <summary>ローカル コンピューター上のプロセス ID が指定された新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントを返します。</summary>\r\n      <returns>\r\n        <paramref name=\"processId\" /> パラメーターで識別されるローカル プロセス リソースに関連付けられた <see cref=\"T:System.Diagnostics.Process\" /> コンポーネント。</returns>\r\n      <param name=\"processId\">システムで一意なプロセス リソースの識別子。</param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)\">\r\n      <summary>プロセス ID とネットワーク上のコンピューターの名前が指定された新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントを返します。</summary>\r\n      <returns>\r\n        <paramref name=\"processId\" /> パラメーターで識別されるリモート プロセス リソースに関連付けられた <see cref=\"T:System.Diagnostics.Process\" /> コンポーネント。</returns>\r\n      <param name=\"processId\">システムで一意なプロセス リソースの識別子。</param>\r\n      <param name=\"machineName\">ネットワーク上のコンピューターの名前。</param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.-or- The <paramref name=\"machineName\" /> parameter syntax is invalid.The name might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses\">\r\n      <summary>ローカル コンピューター上の各プロセス リソースごとに新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントを作成します。</summary>\r\n      <returns>ローカル コンピューター上で実行されているすべてのプロセス リソースを表す <see cref=\"T:System.Diagnostics.Process\" /> 型の配列。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses(System.String)\">\r\n      <summary>指定したコンピューター上の各プロセス リソースごとに新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントを作成します。</summary>\r\n      <returns>指定したコンピューター上で実行されているすべてのプロセス リソースを表す <see cref=\"T:System.Diagnostics.Process\" /> 型の配列。</returns>\r\n      <param name=\"machineName\">プロセスの一覧を読み取る対象のコンピューター。</param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String)\">\r\n      <summary>新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントの配列を作成し、指定したプロセス名を共有するローカル コンピューター上のすべてのプロセス リソースに関連付けます。</summary>\r\n      <returns>指定したアプリケーションまたはファイルを実行しているプロセス リソースを表す <see cref=\"T:System.Diagnostics.Process\" /> 型の配列。</returns>\r\n      <param name=\"processName\">プロセスのフレンドリ名。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)\">\r\n      <summary>新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントの配列を作成し、指定したプロセス名を共有するリモート コンピューター上のすべてのプロセス リソースに関連付けます。</summary>\r\n      <returns>指定したアプリケーションまたはファイルを実行しているプロセス リソースを表す <see cref=\"T:System.Diagnostics.Process\" /> 型の配列。</returns>\r\n      <param name=\"processName\">プロセスのフレンドリ名。</param>\r\n      <param name=\"machineName\">ネットワーク上のコンピューターの名前。</param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.HasExited\">\r\n      <summary>関連付けられているプロセスが終了したかどうかを示す値を取得します。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントが参照するオペレーティング システム プロセスが終了している場合は true。それ以外の場合は false。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with the object. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The exit code for the process could not be retrieved. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.HasExited\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Id\">\r\n      <summary>関連付けられたプロセスの一意の識別子を取得します。</summary>\r\n      <returns>この <see cref=\"T:System.Diagnostics.Process\" /> インスタンスが参照する、システムが生成したプロセスの一意の識別子。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process's <see cref=\"P:System.Diagnostics.Process.Id\" /> property has not been set.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Kill\">\r\n      <summary>関連付けられたプロセスを即時中断します。</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to call <see cref=\"M:System.Diagnostics.Process.Kill\" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has already exited. -or-There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.LeaveDebugMode\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントを、特殊なモードで実行されているオペレーティング システム プロセスと対話する状態から解放します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MachineName\">\r\n      <summary>関連付けられたプロセスを実行しているコンピューターの名前を取得します。</summary>\r\n      <returns>関連付けられたプロセスを実行しているコンピューターの名前。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MainModule\">\r\n      <summary>関連付けられたプロセスのメイン モジュールを取得します。</summary>\r\n      <returns>プロセスを起動するときに使用した <see cref=\"T:System.Diagnostics.ProcessModule\" />。</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MainModule\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A 32-bit process is trying to access the modules of a 64-bit process.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MaxWorkingSet\">\r\n      <summary>関連付けられたプロセスに許可されるワーキング セットの最大サイズを取得または設定します。</summary>\r\n      <returns>プロセスに許可されるメモリ上のワーキング セットの最大サイズ (バイト単位)。</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MaxWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MinWorkingSet\">\r\n      <summary>関連付けられたプロセスに許可されるワーキング セットの最小サイズを取得または設定します。</summary>\r\n      <returns>プロセスに必要なメモリ上の最小ワーキング セット サイズ (バイト単位)。</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MinWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Modules\">\r\n      <summary>関連付けられたプロセスに読み込まれたモジュールを取得します。</summary>\r\n      <returns>関連付けられたプロセスに読み込まれたモジュールを表す <see cref=\"T:System.Diagnostics.ProcessModule\" /> 型の配列。</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for either the system process or the idle process.These processes do not have modules.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.NonpagedSystemMemorySize64\">\r\n      <summary>関連付けられたプロセスに割り当てられたページングされないシステム メモリの量を取得します。</summary>\r\n      <returns>関連付けられたプロセスに割り当てられた、仮想メモリ ページング ファイルに書き込むことができないシステム メモリの容量 (バイト単位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.OnExited\">\r\n      <summary>\r\n        <see cref=\"E:System.Diagnostics.Process.Exited\" /> イベントを発生させます。</summary>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.OutputDataReceived\">\r\n      <summary>アプリケーションが、リダイレクトされた <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> ストリームに行を書き込む度に発生します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedMemorySize64\">\r\n      <summary>関連付けられたプロセスに割り当てられたページングされるシステム メモリの量を取得します。</summary>\r\n      <returns>関連付けられたプロセスの仮想メモリ ページング ファイル内で割り当てられたメモリの量 (バイト単位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedSystemMemorySize64\">\r\n      <summary>関連付けられたプロセスに割り当てられたページング可能なシステム メモリの量を取得します。</summary>\r\n      <returns>関連付けられたプロセスに割り当てられた、仮想メモリ ページング ファイルに書き込むことができるシステム メモリの容量 (バイト単位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakPagedMemorySize64\">\r\n      <summary>関連付けられたプロセスによって使用される、仮想メモリ ページング ファイル内のメモリの最大量を取得します。</summary>\r\n      <returns>プロセスの開始以降、関連付けられたプロセスの仮想メモリ ページング ファイル内で割り当てられたメモリの最大量 (バイト単位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakVirtualMemorySize64\">\r\n      <summary>関連付けられたプロセスによって使用される仮想メモリの最大量を取得します。</summary>\r\n      <returns>プロセスの開始以降、関連付けられたプロセスに割り当てられた仮想メモリの最大量 (バイト単位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakWorkingSet64\">\r\n      <summary>関連付けられたプロセスによって使用される物理メモリの最大量を取得します。</summary>\r\n      <returns>プロセスの開始以降、関連付けられたプロセスに割り当てられた物理メモリの最大量 (バイト単位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityBoostEnabled\">\r\n      <summary>メイン ウィンドウのフォーカス時に、オペレーティング システムによって関連付けられたプロセスの優先順位を一時的に上げるかどうかを示す値を取得または設定します。</summary>\r\n      <returns>待機状態から抜けたときにプロセスの優先順位を動的に上げる場合は true。それ以外の場合は false。既定値は、false です。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Priority boost information could not be retrieved from the associated process resource. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityBoostEnabled\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityClass\">\r\n      <summary>関連付けられたプロセスの全体的な優先順位カテゴリを取得または設定します。</summary>\r\n      <returns>プロセスの <see cref=\"P:System.Diagnostics.Process.BasePriority\" /> を計算するときに使用する、関連付けられたプロセスの優先順位カテゴリ。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">You have set the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>\r\n      <exception cref=\"T:System.ComponentModel.InvalidEnumArgumentException\">Priority class cannot be set because it does not use a valid value, as defined in the <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> enumeration.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivateMemorySize64\">\r\n      <summary>関連付けられたプロセスに割り当てられたプライベート メモリの量を取得します。</summary>\r\n      <returns>関連付けられたプロセスに割り当てられ、他のプロセスと共有できないメモリの量 (バイト単位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\">\r\n      <summary>このプロセスの特権プロセッサ時間を取得します。</summary>\r\n      <returns>プロセスが、オペレーティング システム コア内でコードを実行した合計時間を示す <see cref=\"T:System.TimeSpan\" />。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessName\">\r\n      <summary>プロセスの名前を取得します。</summary>\r\n      <returns>システムで使用する、ユーザーがプロセスを識別するための名前。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process does not have an identifier, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" />.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is not on this computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessorAffinity\">\r\n      <summary>このプロセスでのスレッドの実行をスケジュールできるプロセッサを取得または設定します。</summary>\r\n      <returns>関連付けられたプロセスのスレッドを実行できるプロセッサを示すビットマスク。既定値は、コンピューターのプロセッサ数によって異なります。既定値は 2 n -1 で、n はプロセッサ数です。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> was not available.-or- The process has exited. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Refresh\">\r\n      <summary>プロセス コンポーネントにキャッシュされている関連付けられたプロセスに関するすべての情報を破棄します。</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SafeHandle\">\r\n      <summary>このプロセスへのネイティブ ハンドルを取得します。</summary>\r\n      <returns>このプロセスへのネイティブ ハンドル。</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SessionId\">\r\n      <summary>関連付けられたプロセスのターミナル サービス セッション識別子を取得します。</summary>\r\n      <returns>関連付けられたプロセスのターミナル サービス セッション識別子。</returns>\r\n      <exception cref=\"T:System.NullReferenceException\">There is no session associated with this process.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The <see cref=\"P:System.Diagnostics.Process.SessionId\" /> property is not supported on Windows 98.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardError\">\r\n      <summary>アプリケーションのエラー出力の読み取りに使用されるストリームを取得します。</summary>\r\n      <returns>アプリケーションの標準エラー ストリームの読み取りに使用できる <see cref=\"T:System.IO.StreamReader\" />。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginErrorReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardInput\">\r\n      <summary>アプリケーションの入力の書き込みに使用されるストリームを取得します。</summary>\r\n      <returns>アプリケーションの標準入力ストリームの書き込みに使用できる <see cref=\"T:System.IO.StreamWriter\" />。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> stream has not been defined because <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" /> is set to false. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardOutput\">\r\n      <summary>アプリケーションのテキスト出力の読み取りに使用されるストリームを取得します。</summary>\r\n      <returns>アプリケーションの標準出力ストリームの読み取りに使用できる <see cref=\"T:System.IO.StreamReader\" />。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginOutputReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start\">\r\n      <summary>この <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントの <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> プロパティで指定されたプロセス リソースを起動 (または再利用) し、コンポーネントに関連付けます。</summary>\r\n      <returns>プロセス リソースが起動された場合は true。新しいプロセス リソースが起動されなかった場合は false (既存のプロセスを再利用した場合など)。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <see cref=\"T:System.Diagnostics.Process\" /> component's <see cref=\"P:System.Diagnostics.Process.StartInfo\" />.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> member of the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> property is true while <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is true. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)\">\r\n      <summary>プロセス起動情報 (起動するプロセスのファイル名など) が格納されているパラメーターで指定されたプロセス リソースを起動し、リソースを新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントに関連付けます。</summary>\r\n      <returns>プロセス リソースに関連付けられている新しい <see cref=\"T:System.Diagnostics.Process\" />。プロセス リソースが起動されていない場合は null。同じプロセスのインスタンスが既に実行されているときに起動された新しいプロセスは、他のインスタンスから独立します。また、Start では、<see cref=\"T:System.Diagnostics.ProcessHasExited\" /> プロパティが既に true に設定されている null 以外の Process が返される場合があります。その場合、起動されたプロセス自体の既存のインスタンスがアクティブ化され、その後に終了されることがあります。</returns>\r\n      <param name=\"startInfo\">ファイル名やコマンド ライン引数など、プロセスの起動に使用する情報が格納されている <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is also true.-or-The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UserName\" /> property is not null or empty or the <see cref=\"P:System.Diagnostics.ProcessStartInfo.Password\" /> property is not null.</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"startInfo\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The file specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property could not be found.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String)\">\r\n      <summary>文書またはアプリケーション ファイルの名前を指定してプロセス リソースを起動し、リソースを新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントに関連付けます。</summary>\r\n      <returns>プロセス リソースに関連付けられている新しい <see cref=\"T:System.Diagnostics.Process\" />。プロセス リソースが起動されていない場合は null。同じプロセスのインスタンスが既に実行されているときに起動された新しいプロセスは、他のインスタンスから独立します。また、Start では、<see cref=\"T:System.Diagnostics.ProcessHasExited\" /> プロパティが既に true に設定されている null 以外の Process が返される場合があります。その場合、起動されたプロセス自体の既存のインスタンスがアクティブ化され、その後に終了されることがあります。</returns>\r\n      <param name=\"fileName\">プロセスで実行する文書またはアプリケーション ファイルの名前。</param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String)\">\r\n      <summary>アプリケーションの名前とコマンド ライン引数のセットを指定してプロセス リソースを起動し、リソースを新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントに関連付けます。</summary>\r\n      <returns>プロセス リソースに関連付けられている新しい <see cref=\"T:System.Diagnostics.Process\" />。プロセス リソースが起動されていない場合は null。同じプロセスのインスタンスが既に実行されているときに起動された新しいプロセスは、他のインスタンスから独立します。また、Start では、<see cref=\"T:System.Diagnostics.ProcessHasExited\" /> プロパティが既に true に設定されている null 以外の Process が返される場合があります。その場合、起動されたプロセス自体の既存のインスタンスがアクティブ化され、その後に終了されることがあります。</returns>\r\n      <param name=\"fileName\">プロセスで実行するアプリケーション ファイルの名前。</param>\r\n      <param name=\"arguments\">プロセスを起動するときに渡すコマンド ライン引数。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <paramref name=\"fileName\" /> or <paramref name=\"arguments\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>アプリケーションの名前、ユーザー名、パスワード、およびドメインを指定してプロセス リソースを起動し、リソースを新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントに関連付けます。</summary>\r\n      <returns>プロセス リソースに関連付けられている新しい <see cref=\"T:System.Diagnostics.Process\" />。プロセス リソースが起動されていない場合は null。同じプロセスのインスタンスが既に実行されているときに起動された新しいプロセスは、他のインスタンスから独立します。また、Start では、<see cref=\"T:System.Diagnostics.ProcessHasExited\" /> プロパティが既に true に設定されている null 以外の Process が返される場合があります。その場合、起動されたプロセス自体の既存のインスタンスがアクティブ化され、その後に終了されることがあります。</returns>\r\n      <param name=\"fileName\">プロセスで実行するアプリケーション ファイルの名前。</param>\r\n      <param name=\"userName\">プロセスの開始時に使用するユーザー名。</param>\r\n      <param name=\"password\">プロセスを開始するときに使用されるパスワードを含んだ <see cref=\"T:System.Security.SecureString\" />。</param>\r\n      <param name=\"domain\">プロセスの開始時に使用するドメイン。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>アプリケーションの名前、コマンド ライン引数のセット、ユーザー名、パスワード、およびドメインを指定してプロセス リソースを起動し、リソースを新しい <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントに関連付けます。</summary>\r\n      <returns>プロセス リソースに関連付けられている新しい <see cref=\"T:System.Diagnostics.Process\" />。プロセス リソースが起動されていない場合は null。同じプロセスのインスタンスが既に実行されているときに起動された新しいプロセスは、他のインスタンスから独立します。また、Start では、<see cref=\"T:System.Diagnostics.ProcessHasExited\" /> プロパティが既に true に設定されている null 以外の Process が返される場合があります。その場合、起動されたプロセス自体の既存のインスタンスがアクティブ化され、その後に終了されることがあります。</returns>\r\n      <param name=\"fileName\">プロセスで実行するアプリケーション ファイルの名前。</param>\r\n      <param name=\"arguments\">プロセスを起動するときに渡すコマンド ライン引数。</param>\r\n      <param name=\"userName\">プロセスの開始時に使用するユーザー名。</param>\r\n      <param name=\"password\">プロセスを開始するときに使用されるパスワードを含んだ <see cref=\"T:System.Security.SecureString\" />。</param>\r\n      <param name=\"domain\">プロセスの開始時に使用するドメイン。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartInfo\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> の <see cref=\"M:System.Diagnostics.Process.Start\" /> メソッドに渡すプロパティを取得または設定します。</summary>\r\n      <returns>プロセスを起動するときに使用するデータを表す <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />。これらの引数には、プロセスの起動時に使用する実行可能ファイルまたは文書の名前があります。</returns>\r\n      <exception cref=\"T:System.ArgumentNullException\">The value that specifies the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> is null. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartTime\">\r\n      <summary>関連付けられたプロセスが起動された時刻を取得します。</summary>\r\n      <returns>プロセスが起動された時刻を示すオブジェクト。プロセスが実行中でない場合は、例外がスローされます。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.StartTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or-The process has not been started.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred in the call to the Windows function.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Threads\">\r\n      <summary>関連付けられたプロセスで実行されているスレッドのセットを取得します。</summary>\r\n      <returns>関連付けられたプロセスで現在実行中のオペレーティング システム スレッドを表す <see cref=\"T:System.Diagnostics.ProcessThread\" /> 型の配列。</returns>\r\n      <exception cref=\"T:System.SystemException\">The process does not have an <see cref=\"P:System.Diagnostics.Process.Id\" />, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" /> instance.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.TotalProcessorTime\">\r\n      <summary>このプロセスの合計プロセッサ時間を取得します。</summary>\r\n      <returns>関連付けられたプロセスが CPU を使用した合計時間を示す <see cref=\"T:System.TimeSpan\" />。この値は、<see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> と <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> の合計です。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.TotalProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.UserProcessorTime\">\r\n      <summary>このプロセスのユーザー プロセッサ時間を取得します。</summary>\r\n      <returns>関連付けられたプロセスが、プロセスのアプリケーション部分の内部 (オペレーティング システム コアの外部) でコードを実行した合計時間を示す <see cref=\"T:System.TimeSpan\" />。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.VirtualMemorySize64\">\r\n      <summary>関連付けられたプロセスに割り当てられた仮想メモリの量を取得します。</summary>\r\n      <returns>関連付けられたプロセスに割り当てられた仮想メモリの量 (バイト単位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit\">\r\n      <summary>関連付けられたプロセスが終了するまで無期限に待機するように <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントに指示します。</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\">\r\n      <summary>関連付けられたプロセスが終了するまで、最大で指定したミリ秒間待機するように <see cref=\"T:System.Diagnostics.Process\" /> コンポーネントに指示します。</summary>\r\n      <returns>関連付けられたプロセスが終了した場合は true。それ以外の場合は false。</returns>\r\n      <param name=\"milliseconds\">関連付けられたプロセスが終了するまで待機する時間。単位はミリ秒です。最大値は、32 ビット整数で表現できる最大値で、オペレーティング システムに対して無限大で表現される値です。</param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.WorkingSet64\">\r\n      <summary>関連付けられたプロセスに割り当てられた物理メモリの量を取得します。</summary>\r\n      <returns>関連付けられたプロセスに割り当てられた物理メモリの量 (バイト単位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModule\">\r\n      <summary>特定のプロセスに読み込まれた .dll ファイルまたは実行可能ファイル (.exe) を表します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.BaseAddress\">\r\n      <summary>モジュールが読み込まれたメモリ アドレスを取得します。</summary>\r\n      <returns>モジュールの読み込みアドレス。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.EntryPointAddress\">\r\n      <summary>システムがモジュールを読み込んで実行するときに実行される関数のメモリ アドレスを取得します。</summary>\r\n      <returns>モジュールのエントリ ポイント。</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.FileName\">\r\n      <summary>モジュールの完全パスを取得します。</summary>\r\n      <returns>モジュールの位置を定義する絶対パス。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleMemorySize\">\r\n      <summary>モジュールの読み込みに必要なメモリ容量を取得します。</summary>\r\n      <returns>モジュールが占有するメモリのサイズ。単位はバイトです。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleName\">\r\n      <summary>プロセス モジュールの名前を取得します。</summary>\r\n      <returns>モジュールの名前です。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModule.ToString\">\r\n      <summary>モジュールの名前を文字列に変換します。</summary>\r\n      <returns>\r\n        <see cref=\"P:System.Diagnostics.ProcessModule.ModuleName\" /> プロパティの値。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModuleCollection\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> オブジェクトの厳密に型指定されたコレクションを提供します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> インスタンスに関連付けずに、<see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> クラスの新しいインスタンスを初期化します。</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> インスタンスの配列を指定して、<see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> クラスの新しいインスタンスを初期化します。</summary>\r\n      <param name=\"processModules\">この <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> インスタンスを初期化するために使用する <see cref=\"T:System.Diagnostics.ProcessModule\" /> インスタンスの配列。</param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)\">\r\n      <summary>指定したプロセス モジュールがコレクション内にあるかどうかを調べます。</summary>\r\n      <returns>モジュールがコレクション内にある場合は true。それ以外の場合は false。</returns>\r\n      <param name=\"module\">コレクション内にあるかどうかを調べるモジュールを示す <see cref=\"T:System.Diagnostics.ProcessModule\" /> インスタンス。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)\">\r\n      <summary>コレクションの指定したインデックスに <see cref=\"T:System.Diagnostics.ProcessModule\" /> インスタンスの配列をコピーします。</summary>\r\n      <param name=\"array\">コレクションに追加する <see cref=\"T:System.Diagnostics.ProcessModule\" /> インスタンスの配列。</param>\r\n      <param name=\"index\">新しいインスタンスを追加する位置。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)\">\r\n      <summary>コレクション内の指定したモジュールの位置を提供します。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 内のモジュールの位置を定義する 0 から始まるインデックス番号。</returns>\r\n      <param name=\"module\">インデックスを取得する <see cref=\"T:System.Diagnostics.ProcessModule\" />。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)\">\r\n      <summary>一連のプロセス モジュールを反復処理するためのインデックスを取得します。</summary>\r\n      <returns>コレクション内のモジュールにインデックスを作成する <see cref=\"T:System.Diagnostics.ProcessModule\" />。</returns>\r\n      <param name=\"index\">コレクション内のモジュールの 0 から始まるインデックス値。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ProcessPriorityClass\">\r\n      <summary>システムがプロセスに関連付ける優先順位を示します。この値は、プロセスの各スレッドの優先順位値と組み合わされ、各スレッドの基本優先順位を決定します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.AboveNormal\">\r\n      <summary>プロセスの優先順位を Normal より高く <see cref=\"F:System.Diagnostics.ProcessPriorityClass.High\" /> より低く指定します。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.BelowNormal\">\r\n      <summary>プロセスの優先順位を Idle より高く Normal より低く指定します。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.High\">\r\n      <summary>Task List ダイアログ ボックスなどの、ユーザーから呼び出されたらオペレーティング システムの負荷にかかわらずすぐに応答する必要のある、即時実行を要求される重要なタスクに対して、プロセス実行時間を指定します。このプロセスのスレッドは、Normal または Idle 優先順位クラスのプロセスのスレッドよりも優先します。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Idle\">\r\n      <summary>このプロセスのスレッドが、スクリーン セーバーなど、システムがアイドル状態のときにだけ実行されるよう指定します。このプロセスのスレッドよりも、より高い優先順位クラスで実行されているあらゆるプロセスのスレッドの方が優先します。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Normal\">\r\n      <summary>プロセスが特別なスケジューリングを必要としないよう指定します。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.RealTime\">\r\n      <summary>プロセスの優先順位をできるだけ高く指定します。</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessStartInfo\">\r\n      <summary>プロセスを起動するときに使用する値のセットを指定します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor\">\r\n      <summary>プロセスを起動するときに使用するファイル名を指定せずに、<see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> クラスの新しいインスタンスを初期化します。</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> クラスの新しいインスタンスを初期化し、アプリケーションやドキュメントなど、プロセスを起動するときに使用するファイル名を指定します。</summary>\r\n      <param name=\"fileName\">プロセスを起動するときに使用するアプリケーションまたはドキュメント。</param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)\">\r\n      <summary>プロセスを起動するときに使用するアプリケーション ファイル名およびアプリケーションに渡すコマンド ライン引数のセットを指定して、<see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> クラスの新しいインスタンスを初期化します。</summary>\r\n      <param name=\"fileName\">プロセスを起動するときに使用するアプリケーション。</param>\r\n      <param name=\"arguments\">プロセスを起動するときにアプリケーションに渡すコマンド ライン引数。</param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Arguments\">\r\n      <summary>アプリケーションを起動するときに使用するコマンド ライン引数のセットを取得または設定します。</summary>\r\n      <returns>\r\n        <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> プロパティで指定したターゲット アプリケーションに渡す引数を格納した単一の文字列。既定値は、空の文字列 (\"\") です。Windows オペレーティング システムの Windows Vista 以前のバージョンでは、プロセスへの完全パスの長さに追加される引数の長さは 2080 よりも小さくする必要があります。Windows 7 およびそれ以降のバージョンでは、長さは 32699 よりも小さくする必要があります。引数はターゲット アプリケーションで解析され、解釈されるため、そのアプリケーションの想定に合わせたものでなければなりません。下記の「例」で説明するとおり、.NET アプリケーションではスペースが複数の引数間の区切り記号として解釈されます。1 つの引数にスペースが含まれる場合は引用符で囲む必要がありますが、これらの引用符はターゲット アプリケーションに渡されません。解析後の最終的な引数に引用符を組み込むには、それぞれの記号をトリプル エスケープします。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.CreateNoWindow\">\r\n      <summary>プロセスを新しいウィンドウで起動するかどうかを示す値を取得または設定します。</summary>\r\n      <returns>プロセス用の新しいウィンドウを作成せずにプロセスを起動する場合は true。それ以外の場合は false。既定値は、false です。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Domain\">\r\n      <summary>プロセスを開始するときに使用されるドメインを指定する値を取得または設定します。</summary>\r\n      <returns>プロセスを開始するときに使用する Active Directory ドメイン。ドメイン プロパティは、主に、Active Directory を使用するエンタープライズ環境のユーザーにとって重要です。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Environment\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.FileName\">\r\n      <summary>起動するアプリケーションまたはドキュメントを取得または設定します。</summary>\r\n      <returns>起動するアプリケーション名。または、アプリケーションに関連付けられていて、既定の \"open\" アクションが利用できるファイル タイプのドキュメント名。既定値は、空の文字列 (\"\") です。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.LoadUserProfile\">\r\n      <summary>Windows ユーザー プロファイルをレジストリから読み込むかどうかを示す値を取得または設定します。</summary>\r\n      <returns>Windows ユーザー プロファイルを読み込む必要がある場合は true。それ以外の場合は false。既定値は、false です。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Password\">\r\n      <summary>プロセスを開始するときに使用するユーザー パスワードを格納するセキュリティ文字列を取得または設定します。</summary>\r\n      <returns>プロセスの開始時に使用するユーザー パスワード。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\">\r\n      <summary>アプリケーションのエラー出力を <see cref=\"P:System.Diagnostics.Process.StandardError\" /> ストリームに書き込むかどうかを示す値を取得または設定します。</summary>\r\n      <returns>エラー出力を <see cref=\"P:System.Diagnostics.Process.StandardError\" /> に書き込む場合は true。それ以外の場合は false。既定値は、false です。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\">\r\n      <summary>アプリケーションの入力を <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> ストリームから読み取るかどうかを示す値を取得または設定します。</summary>\r\n      <returns>\r\n        <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> から入力を読み取る場合は true。それ以外の場合は false。既定値は、false です。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\">\r\n      <summary>アプリケーションのテキスト出力を <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> ストリームに書き込むかどうかを示す値を取得または設定します。</summary>\r\n      <returns>出力を <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> に書き込む場合は true。それ以外の場合は false。既定値は、false です。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding\">\r\n      <summary>エラー出力に最適なエンコーディングを取得または設定します。</summary>\r\n      <returns>エラー出力に最適なエンコーディングを表すオブジェクト。既定値は、null です。</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding\">\r\n      <summary>標準出力に最適なエンコーディングを取得または設定します。</summary>\r\n      <returns>標準出力に最適なエンコーディングを表すオブジェクト。既定値は、null です。</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UserName\">\r\n      <summary>プロセスを開始するときに使用するユーザー名を取得または設定します。</summary>\r\n      <returns>プロセスの開始時に使用するユーザー名。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\">\r\n      <summary>プロセスの起動にオペレーティング システムのシェルを使用するかどうかを示す値を取得または設定します。</summary>\r\n      <returns>プロセスを起動するときにシェルを使用する場合は true。プロセスを実行可能ファイルから直接作成する場合は false。既定値は、true です。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.WorkingDirectory\">\r\n      <summary>\r\n        <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> プロパティが false の場合に、開始するプロセスの作業ディレクトリを取得または設定します。<see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> が true の場合に、開始するプロセスを含むディレクトリを取得または設定します。</summary>\r\n      <returns>\r\n        <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> が true の場合、起動するプロセスがあるディレクトリの完全修飾名。<see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> プロパティが false の場合、開始するプロセスの作業ディレクトリ。既定値は、空の文字列 (\"\") です。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThread\">\r\n      <summary>オペレーティング システムのプロセス スレッドを表します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.BasePriority\">\r\n      <summary>スレッドの基本優先順位を取得します。</summary>\r\n      <returns>プロセスの優先順位クラスと関連付けられたスレッドの優先順位との組み合わせからオペレーティング システムが算出した、スレッドの基本優先順位。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.CurrentPriority\">\r\n      <summary>スレッドの現在の優先順位を取得します。</summary>\r\n      <returns>オペレーティング システムがスレッドをスケジュールする方法によっては、スレッドの現在の優先順位が基本優先順位と異なることがあります。アクティブなスレッドの優先順位を一時的に上げることもできます。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.Id\">\r\n      <summary>スレッドの一意な識別子を取得します。</summary>\r\n      <returns>特定のスレッドに関連付けられた一意な識別子。</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.IdealProcessor\">\r\n      <summary>このスレッドを実行する優先プロセッサを設定します。</summary>\r\n      <returns>スレッドの優先プロセッサは、システムがスレッドをスケジュールするときに、スレッドを実行するプロセッサを決定するために使用します。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">指定したプロセッサでスレッドを起動するよう設定できませんでした。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">プラットフォームは、Windows 98 または Windows Millennium Edition です。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">プロセスは、リモート コンピューター上にあります。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityBoostEnabled\">\r\n      <summary>スレッドのプロセスのメイン ウィンドウがフォーカスを受け取るたびに、関連付けられたスレッドの優先順位をオペレーティング システムが一時的に上げるかどうかを示す値を取得または設定します。</summary>\r\n      <returns>ユーザーがプロセスのインターフェイスと対話しているときにスレッドの優先順位を上げる場合は true。それ以外の場合は false。既定値は、false です。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">優先順位上昇情報を取得できませんでした。または優先順位上昇情報を設定できませんでした。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">プラットフォームは、Windows 98 または Windows Millennium Edition です。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">プロセスは、リモート コンピューター上にあります。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityLevel\">\r\n      <summary>スレッドの優先順位を取得または設定します。</summary>\r\n      <returns>スレッドの優先順位の範囲を指定する <see cref=\"T:System.Diagnostics.ThreadPriorityLevel\" /> 値のいずれか。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">スレッドの優先順位情報を取得できませんでした。またはスレッドの優先順位を設定できませんでした。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">プラットフォームは、Windows 98 または Windows Millennium Edition です。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">プロセスは、リモート コンピューター上にあります。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime\">\r\n      <summary>スレッドが、オペレーティング システム コアでコードを実行した時間を取得します。</summary>\r\n      <returns>スレッドが、オペレーティング システム コアでコードを実行した時間を示す <see cref=\"T:System.TimeSpan\" />。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">スレッド時間を取得できませんでした。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">プラットフォームは、Windows 98 または Windows Millennium Edition です。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">プロセスは、リモート コンピューター上にあります。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ProcessorAffinity\">\r\n      <summary>関連付けられたスレッドを実行できるプロセッサを設定します。</summary>\r\n      <returns>スレッドを実行できるプロセッサを表すビットのセットを指す <see cref=\"T:System.IntPtr\" />。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">プロセッサ アフィニティを設定できませんでした。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">プラットフォームは、Windows 98 または Windows Millennium Edition です。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">プロセスは、リモート コンピューター上にあります。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThread.ResetIdealProcessor\">\r\n      <summary>このスレッドに最も適したプロセッサをリセットして、単一の最も適したプロセッサがないことを示します。つまり、どのプロセッサも適しています。</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">最適なプロセッサをリセットできませんでした。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">プラットフォームは、Windows 98 または Windows Millennium Edition です。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">プロセスは、リモート コンピューター上にあります。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartAddress\">\r\n      <summary>このスレッドを起動するときにオペレーティング システムが呼び出した関数のメモリ アドレスを取得します。</summary>\r\n      <returns>スレッドを実行するアプリケーション定義の関数を指すスレッドの起動アドレス。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">プラットフォームは、Windows 98 または Windows Millennium Edition です。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">プロセスは、リモート コンピューター上にあります。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartTime\">\r\n      <summary>オペレーティング システムによってスレッドを起動した時刻を取得します。</summary>\r\n      <returns>オペレーティング システムがスレッドを起動したときのシステム上の時刻を表す <see cref=\"T:System.DateTime\" />。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">スレッド時間を取得できませんでした。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">プラットフォームは、Windows 98 または Windows Millennium Edition です。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">プロセスは、リモート コンピューター上にあります。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ThreadState\">\r\n      <summary>このスレッドの現在の状態を取得します。</summary>\r\n      <returns>実行中、待機中、終了など、スレッドの実行状態を示す <see cref=\"T:System.Diagnostics.ThreadState\" />。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">プラットフォームは、Windows 98 または Windows Millennium Edition です。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">プロセスは、リモート コンピューター上にあります。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.TotalProcessorTime\">\r\n      <summary>このスレッドがプロセッサを使用した時間の合計を取得します。</summary>\r\n      <returns>スレッドがプロセッサの制御を取得していた時間の合計を示す <see cref=\"T:System.TimeSpan\" />。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">スレッド時間を取得できませんでした。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">プラットフォームは、Windows 98 または Windows Millennium Edition です。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">プロセスは、リモート コンピューター上にあります。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.UserProcessorTime\">\r\n      <summary>関連付けられたスレッドが、アプリケーションでコードを実行した時間を取得します。</summary>\r\n      <returns>スレッドによるコード実行がオペレーティング システム コアではなくアプリケーションで行われた時間を示す <see cref=\"T:System.TimeSpan\" />。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">スレッド時間を取得できませんでした。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">プラットフォームは、Windows 98 または Windows Millennium Edition です。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">プロセスは、リモート コンピューター上にあります。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.WaitReason\">\r\n      <summary>スレッドが待機している理由を取得します。</summary>\r\n      <returns>スレッドが待機状態にある理由を表す <see cref=\"T:System.Diagnostics.ThreadWaitReason\" />。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">スレッドが待機状態にありません。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">プラットフォームは、Windows 98 または Windows Millennium Edition です。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">プロセスは、リモート コンピューター上にあります。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThreadCollection\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> オブジェクトの厳密に型指定されたコレクションを提供します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> インスタンスに関連付けずに、<see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> クラスの新しいインスタンスを初期化します。</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> インスタンスの配列を指定して、<see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> クラスの新しいインスタンスを初期化します。</summary>\r\n      <param name=\"processThreads\">この <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> インスタンスを初期化するために使用する <see cref=\"T:System.Diagnostics.ProcessThread\" /> インスタンスの配列。</param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)\">\r\n      <summary>プロセス スレッドをコレクションに追加します。</summary>\r\n      <returns>コレクション内のスレッドの 0 から始まるインデックス番号。</returns>\r\n      <param name=\"thread\">コレクションに追加するスレッド。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)\">\r\n      <summary>指定したプロセス スレッドがコレクション内にあるかどうかを調べます。</summary>\r\n      <returns>スレッドがコレクション内にある場合は true。それ以外の場合は false。</returns>\r\n      <param name=\"thread\">コレクション内にあるかどうかを調べるスレッドを示す <see cref=\"T:System.Diagnostics.ProcessThread\" /> インスタンス。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)\">\r\n      <summary>コレクションの指定したインデックスに <see cref=\"T:System.Diagnostics.ProcessThread\" /> インスタンスの配列をコピーします。</summary>\r\n      <param name=\"array\">コレクションに追加する <see cref=\"T:System.Diagnostics.ProcessThread\" /> インスタンスの配列。</param>\r\n      <param name=\"index\">新しいインスタンスを追加する位置。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)\">\r\n      <summary>コレクション内の指定したスレッドの位置を提供します。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 内のスレッドの位置を定義する 0 から始まるインデックス番号。</returns>\r\n      <param name=\"thread\">インデックスを取得する <see cref=\"T:System.Diagnostics.ProcessThread\" />。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)\">\r\n      <summary>コレクション内の指定した位置にプロセス スレッドを挿入します。</summary>\r\n      <param name=\"index\">スレッドを挿入する位置を示す 0 から始まるインデックス番号。</param>\r\n      <param name=\"thread\">コレクションに挿入するスレッド。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)\">\r\n      <summary>一連のプロセス スレッドを反復処理するためのインデックスを取得します。</summary>\r\n      <returns>コレクション内のスレッドにインデックスを作成する <see cref=\"T:System.Diagnostics.ProcessThread\" />。</returns>\r\n      <param name=\"index\">コレクション内のスレッドの 0 から始まるインデックス値。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)\">\r\n      <summary>コレクションからプロセス スレッドを削除します。</summary>\r\n      <param name=\"thread\">コレクションから削除するスレッド。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ThreadPriorityLevel\">\r\n      <summary>スレッドの優先順位を指定します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.AboveNormal\">\r\n      <summary>関連付けられた <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> の通常の優先順位を基準に 1 段階上を指定します。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.BelowNormal\">\r\n      <summary>関連付けられた <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> の通常の優先順位を基準に 1 段階下を指定します。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Highest\">\r\n      <summary>最も高い優先順位を指定します。関連付けられた <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> の通常の優先順位から 2 段階上です。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Idle\">\r\n      <summary>アイドル優先順位を指定します。関連付けられた <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> の値とは関係なく、すべてのスレッドの優先順位値の中で最も低い優先順位です。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Lowest\">\r\n      <summary>最も低い優先順位を指定します。関連付けられた <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> の通常の優先順位から 2 段階下です。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Normal\">\r\n      <summary>関連付けられた <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> の通常の優先順位を指定します。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.TimeCritical\">\r\n      <summary>時間が重要な優先順位を指定します。関連付けられた <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> の値とは無関係に、すべてのスレッドの中で最も高い優先順位です。</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadState\">\r\n      <summary>スレッドの現在の実行状態を指定します。</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Initialized\">\r\n      <summary>スレッドは初期化されたが、まだ開始していないことを示す状態。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Ready\">\r\n      <summary>解放されているプロセッサがないため、スレッドがプロセッサの使用を待機していることを示す状態。スレッドは、次に利用可能になるプロセッサで実行する準備が整っています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Running\">\r\n      <summary>スレッドが現在プロセッサを使用していることを示す状態。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Standby\">\r\n      <summary>スレッドがすぐにプロセッサを使用することを示す状態。一度に 1 つのスレッドだけが、この状態になることができます。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Terminated\">\r\n      <summary>スレッドが実行を終了しスレッド自身も終了したことを示す状態。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Transition\">\r\n      <summary>スレッドが、実行前にプロセッサ以外のリソースを待機していることを示す状態。たとえば、ディスクから実行スタックのページングを待機している場合があります。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Unknown\">\r\n      <summary>スレッドの状態が不明です。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Wait\">\r\n      <summary>スレッドが、周辺操作の完了またはリソースの解放を待機しているために、プロセッサを使用する準備が整っていないことを示す状態。スレッドの準備が整うと、スケジュールが再設定されます。</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadWaitReason\">\r\n      <summary>スレッドが待機している理由を示します。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairHigh\">\r\n      <summary>スレッドは、イベント ペア High を待機しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairLow\">\r\n      <summary>スレッドは、イベント ペア Low を待機しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.ExecutionDelay\">\r\n      <summary>スレッドの実行が遅延しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Executive\">\r\n      <summary>スレッドは、スケジューラを待機しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.FreePage\">\r\n      <summary>スレッドは、空き仮想メモリ ページを待機しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReceive\">\r\n      <summary>スレッドは、ローカル プロシージャ呼び出しの到達を待機しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReply\">\r\n      <summary>スレッドは、ローカル プロシージャ呼び出しへの応答の到達を待機しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageIn\">\r\n      <summary>スレッドは、仮想メモリ ページのメモリへの到達を待機しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageOut\">\r\n      <summary>スレッドは、仮想メモリ ページのディスクへの書き込みを待機しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Suspended\">\r\n      <summary>スレッドの実行は中断しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.SystemAllocation\">\r\n      <summary>スレッドは、システムによる割り当てを待機しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Unknown\">\r\n      <summary>スレッドは、不明な理由のために待機しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.UserRequest\">\r\n      <summary>スレッドは、ユーザー要求を待機しています。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.VirtualMemory\">\r\n      <summary>スレッドは、仮想メモリの割り当てを待機しています。</summary>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/ko/System.Diagnostics.Process.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<doc>\r\n  <assembly>\r\n    <name>System.Diagnostics.Process</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\">\r\n      <summary>[보안 중요] 프로세스 핸들에 대해 관리되는 래퍼를 제공합니다.</summary>\r\n    </member>\r\n    <member name=\"M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)\">\r\n      <summary>[보안 중요] 새 인스턴스를 초기화는 <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> 에서 지정된 된 핸들을 종료 단계 핸들을 해제 여부를 나타내는 클래스입니다. </summary>\r\n      <param name=\"existingHandle\">래핑될 핸들입니다.</param>\r\n      <param name=\"ownsHandle\">true안정적으로 있도록 <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> 종료 단계 핸들을 해제 합니다. 그렇지 않은 경우 false.</param>\r\n    </member>\r\n    <member name=\"P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid\"></member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventArgs\">\r\n      <summary>\r\n        <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" />과 <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> 이벤트에 대한 데이터를 제공합니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.DataReceivedEventArgs.Data\">\r\n      <summary>리디렉션된 <see cref=\"T:System.Diagnostics.Process\" /> 출력 스트림에 쓰여진 문자 줄을 가져옵니다.</summary>\r\n      <returns>연결된 <see cref=\"T:System.Diagnostics.Process\" />가 리디렉션된 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 또는 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 스트림에 쓴 줄입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventHandler\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.Process\" />의 <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> 이벤트 또는 <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> 이벤트를 처리할 메서드를 나타냅니다.</summary>\r\n      <param name=\"sender\">이벤트 소스입니다. </param>\r\n      <param name=\"e\">이벤트 데이터가 포함된 <see cref=\"T:System.Diagnostics.DataReceivedEventArgs\" />입니다. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.Process\">\r\n      <summary>로컬 및 원격 프로세스에 대한 액세스를 제공하고 로컬 시스템 프로세스를 시작하고 중지할 수 있습니다.이 형식에 대한 .NET Framework 소스 코드를 찾아보려면 참조 원본을 참조하세요.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.#ctor\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 클래스의 새 인스턴스를 초기화합니다.</summary>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.BasePriority\">\r\n      <summary>연결된 프로세스의 기본 우선 순위를 가져옵니다.</summary>\r\n      <returns>연결된 프로세스의 <see cref=\"P:System.Diagnostics.Process.PriorityClass\" />에서 계산되는 기본 우선 순위입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or- The process has not started, so there is no process ID. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginErrorReadLine\">\r\n      <summary>응용 프로그램의 리디렉션된 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 스트림에 대해 비동기 읽기 작업을 시작합니다.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginOutputReadLine\">\r\n      <summary>응용 프로그램의 리디렉션된 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 스트림에 대해 비동기 읽기 작업을 시작합니다.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelErrorRead\">\r\n      <summary>응용 프로그램의 리디렉션된 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 스트림에 대해 비동기 읽기 작업을 취소합니다.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelOutputRead\">\r\n      <summary>응용 프로그램의 리디렉션된 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 스트림에 대해 비동기 읽기 작업을 취소합니다.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose\"></member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose(System.Boolean)\">\r\n      <summary>이 프로세스에서 사용하는 리소스를 모두 해제합니다.</summary>\r\n      <param name=\"disposing\">관리되는 리소스와 관리되지 않는 리소스를 모두 해제하려면 true로 설정하고, 관리되지 않는 리소스만 해제하려면 false로 설정합니다. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.EnableRaisingEvents\">\r\n      <summary>프로세스가 종료될 때 <see cref=\"E:System.Diagnostics.Process.Exited\" /> 이벤트를 발생시켜야 하는지를 나타내는 값을 가져오거나 설정합니다.</summary>\r\n      <returns>종료 명령 또는 <see cref=\"M:System.Diagnostics.Process.Kill\" /> 호출을 통해 연결된 프로세스가 종료될 때 <see cref=\"E:System.Diagnostics.Process.Exited\" /> 이벤트가 발생해야 한다면 true이고, 그러지 않으면 false입니다.기본값은 false입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.EnterDebugMode\">\r\n      <summary>현재 스레드에서 네이티브 속성 SeDebugPrivilege를 활성화하여 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소를 특수 모드에서 실행되는 운영 체제 프로세스와 상호 작용하는 상태로 만듭니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.ErrorDataReceived\">\r\n      <summary>응용 프로그램이 리디렉션된 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 스트림에 쓸 때 발생합니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitCode\">\r\n      <summary>연결된 프로세스가 종료될 때 연결된 프로세스에서 지정한 값을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스가 종료될 때 연결된 프로세스에서 지정한 코드입니다.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has not exited.-or- The process <see cref=\"P:System.Diagnostics.Process.Handle\" /> is not valid. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitCode\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.Exited\">\r\n      <summary>프로세스가 종료될 때 발생합니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitTime\">\r\n      <summary>연결된 프로세스가 종료된 시간을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스가 종료된 시간을 나타내는 <see cref=\"T:System.DateTime\" />입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetCurrentProcess\">\r\n      <summary>새 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소를 가져온 후 현재 활성화되어 있는 프로세스에 연결합니다.</summary>\r\n      <returns>호출하는 응용 프로그램에서 실행 중인 프로세스 리소스에 연결된 새 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소입니다.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32)\">\r\n      <summary>로컬 컴퓨터의 프로세서에 대한 식별자가 주어지면 새 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소를 반환합니다.</summary>\r\n      <returns>\r\n        <paramref name=\"processId\" /> 매개 변수에 의해 식별되는 로컬 프로세스 리소스에 연결된 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소입니다.</returns>\r\n      <param name=\"processId\">프로세스 리소스의 시스템 고유 식별자입니다. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)\">\r\n      <summary>프로세스 식별자 및 네트워크에 있는 컴퓨터의 이름이 주어지면 새 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소를 반환합니다.</summary>\r\n      <returns>\r\n        <paramref name=\"processId\" /> 매개 변수에 의해 식별되는 원격 프로세스 리소스에 연결된 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소입니다.</returns>\r\n      <param name=\"processId\">프로세스 리소스의 시스템 고유 식별자입니다. </param>\r\n      <param name=\"machineName\">네트워크에 있는 컴퓨터 이름입니다. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.-or- The <paramref name=\"machineName\" /> parameter syntax is invalid.The name might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses\">\r\n      <summary>로컬 컴퓨터의 각 프로세스 리소스에 대해 새 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소를 만듭니다.</summary>\r\n      <returns>로컬 컴퓨터에서 실행 중인 모든 프로세스 리소스를 나타내는 <see cref=\"T:System.Diagnostics.Process\" /> 형식의 배열입니다.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses(System.String)\">\r\n      <summary>지정한 컴퓨터의 각 프로세스 리소스에 대해 새 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소를 만듭니다.</summary>\r\n      <returns>지정된 컴퓨터에서 실행 중인 모든 프로세스 리소스를 나타내는 <see cref=\"T:System.Diagnostics.Process\" /> 형식의 배열입니다.</returns>\r\n      <param name=\"machineName\">프로세스 목록을 읽어 올 컴퓨터입니다. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String)\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소로 이루어진 새 배열을 만들어 지정한 프로세스 이름을 공유하는 로컬 컴퓨터의 모든 프로세스 리소스에 연결합니다.</summary>\r\n      <returns>지정한 응용 프로그램 또는 파일을 실행 중인 프로세스 리소스를 나타내는 <see cref=\"T:System.Diagnostics.Process\" /> 형식의 배열입니다.</returns>\r\n      <param name=\"processName\">프로세스의 이름입니다. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소로 이루어진 새 배열을 만들어 지정한 프로세스 이름을 공유하는 원격 컴퓨터에 있는 모든 프로세스 리소스에 연결합니다.</summary>\r\n      <returns>지정한 응용 프로그램 또는 파일을 실행 중인 프로세스 리소스를 나타내는 <see cref=\"T:System.Diagnostics.Process\" /> 형식의 배열입니다.</returns>\r\n      <param name=\"processName\">프로세스의 이름입니다. </param>\r\n      <param name=\"machineName\">네트워크에 있는 컴퓨터 이름입니다. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.HasExited\">\r\n      <summary>연결된 프로세스가 종료되었는지를 나타내는 값을 가져옵니다.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소가 참조하는 운영 체제 프로세스가 종료되었으면 true이고, 그러지 않으면 false입니다.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with the object. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The exit code for the process could not be retrieved. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.HasExited\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Id\">\r\n      <summary>연결된 프로세스의 고유 식별자를 가져옵니다.</summary>\r\n      <returns>이 <see cref=\"T:System.Diagnostics.Process\" /> 인스턴스에서 참조하는 프로세스의 고유 식별자입니다. 이 식별자는 시스템에서 생성됩니다.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process's <see cref=\"P:System.Diagnostics.Process.Id\" /> property has not been set.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Kill\">\r\n      <summary>연결된 프로세스를 즉시 중지합니다.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to call <see cref=\"M:System.Diagnostics.Process.Kill\" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has already exited. -or-There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.LeaveDebugMode\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소를 특수 모드에서 실행되는 운영 체제 프로세스와 상호 작용할 수 없는 상태로 만듭니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MachineName\">\r\n      <summary>연결된 프로세스가 실행 중인 컴퓨터 이름을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스가 실행 중인 컴퓨터 이름입니다.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MainModule\">\r\n      <summary>연결된 프로세스의 주 모듈을 가져옵니다.</summary>\r\n      <returns>프로세스를 시작하는 데 사용된 <see cref=\"T:System.Diagnostics.ProcessModule\" />입니다.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MainModule\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A 32-bit process is trying to access the modules of a 64-bit process.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MaxWorkingSet\">\r\n      <summary>연결된 프로세스에 대해 허용되는 작업 집합의 최대 크기를 가져오거나 설정합니다.</summary>\r\n      <returns>프로세스에 대해 메모리에서 허용된 작업 집합의 최대 크기(바이트)입니다.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MaxWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MinWorkingSet\">\r\n      <summary>연결된 프로세스에 대해 허용되는 작업 집합의 최소 크기를 가져오거나 설정합니다.</summary>\r\n      <returns>프로세스에 대해 메모리에서 필요로 하는 작업 집합의 최소 크기(바이트)입니다.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MinWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Modules\">\r\n      <summary>연결된 프로세스에 의해 로드된 모듈을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스에 의해 로드된 모듈을 나타내는 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 형식의 배열입니다.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for either the system process or the idle process.These processes do not have modules.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.NonpagedSystemMemorySize64\">\r\n      <summary>연결된 프로세스에 할당된 비페이징 시스템 메모리의 양을 가져옵니다.</summary>\r\n      <returns>가상 메모리 페이징 파일에 쓸 수 없는 연결된 프로세스에 대해 시스템에서 할당한 메모리의 양(바이트)입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.OnExited\">\r\n      <summary>\r\n        <see cref=\"E:System.Diagnostics.Process.Exited\" /> 이벤트를 발생시킵니다.</summary>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.OutputDataReceived\">\r\n      <summary>응용 프로그램이 리디렉션된 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 스트림에 쓸 때마다 발생합니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedMemorySize64\">\r\n      <summary>연결된 프로세스에 할당된 페이징 메모리의 양을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스의 가상 메모리 페이징 파일에 할당된 메모리의 양(바이트)입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedSystemMemorySize64\">\r\n      <summary>연결된 프로세스에 할당된 페이징할 수 있는 시스템 메모리의 양을 가져옵니다.</summary>\r\n      <returns>가상 메모리 페이징 파일에 쓸 수 있는 연결된 프로세스에 대해 할당된 시스템 메모리의 양(바이트)입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakPagedMemorySize64\">\r\n      <summary>연결된 프로세스에서 사용하는 가상 메모리 페이징 파일의 최대 메모리 양을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스가 시작된 이후 연결된 프로세스의 가상 메모리 페이징 파일에 할당된 메모리의 최대 양(바이트)입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakVirtualMemorySize64\">\r\n      <summary>연결된 프로세스에서 사용된 가상 메모리의 최대 양을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스가 시작된 이후 해당 프로세스에 할당된 가상 메모리의 최대 양(바이트)입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakWorkingSet64\">\r\n      <summary>연결된 프로세스에서 사용된 실제 메모리의 최대 양을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스가 시작된 이후 해당 프로세스에 할당된 실제 메모리의 최대 양(바이트)입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityBoostEnabled\">\r\n      <summary>포커스가 주 창에 있을 때 운영 체제가 연결된 프로세스의 우선 순위를 일시적으로 높일지를 나타내는 값을 가져오거나 설정합니다.</summary>\r\n      <returns>프로세스가 대기 상태에서 빠져나올 때 프로세스의 우선 순위를 동적으로 높여야 하는 경우 true이고, 그러지 않으면 false입니다.기본값은 false입니다.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Priority boost information could not be retrieved from the associated process resource. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityBoostEnabled\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityClass\">\r\n      <summary>연결된 프로세스에 대한 전체 우선 순위 범주를 가져오거나 설정합니다.</summary>\r\n      <returns>연결된 프로세스에 대한 우선 순위 범주입니다. 이를 통해 해당 프로세스의 <see cref=\"P:System.Diagnostics.Process.BasePriority\" />를 계산할 수 있습니다.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">You have set the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>\r\n      <exception cref=\"T:System.ComponentModel.InvalidEnumArgumentException\">Priority class cannot be set because it does not use a valid value, as defined in the <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> enumeration.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivateMemorySize64\">\r\n      <summary>연결된 프로세스에 할당된 전용 메모리의 양을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스에 할당되어 다른 프로세스와는 공유할 수 없는 메모리의 양(바이트)입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\">\r\n      <summary>해당 프로세스의 권한 있는 프로세서 시간을 가져옵니다.</summary>\r\n      <returns>프로세스가 운영 체제 코어 내부에서 코드를 실행하는 데 소비한 시간을 나타내는 <see cref=\"T:System.TimeSpan\" />입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessName\">\r\n      <summary>프로세스의 이름을 가져옵니다.</summary>\r\n      <returns>사용자가 프로세스를 식별할 수 있도록 시스템에서 사용하는 이름입니다.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process does not have an identifier, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" />.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is not on this computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessorAffinity\">\r\n      <summary>이 프로세스에 포함된 스레드의 실행을 예약할 수 있는 프로세서를 가져오거나 설정합니다.</summary>\r\n      <returns>연결된 프로세스의 스레드가 실행될 수 있는 프로세서를 나타내는 비트 마스크입니다.기본값은 컴퓨터의 프로세서 수에 따라 다릅니다.기본값은 2 n -1입니다. 여기서 n은 프로세서 수입니다.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> was not available.-or- The process has exited. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Refresh\">\r\n      <summary>프로세스 구성 요소 내에 캐시되어 있는 연결된 프로세스 정보를 모두 삭제합니다.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SafeHandle\">\r\n      <summary>이 프로세스에 대한 기본 핸들을 가져옵니다.</summary>\r\n      <returns>이 프로세스에 대한 기본 핸들입니다.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SessionId\">\r\n      <summary>연결된 프로세스의 터미널 서비스 세션 식별자를 가져옵니다.</summary>\r\n      <returns>연결된 프로세스의 터미널 서비스 세션 식별자입니다.</returns>\r\n      <exception cref=\"T:System.NullReferenceException\">There is no session associated with this process.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The <see cref=\"P:System.Diagnostics.Process.SessionId\" /> property is not supported on Windows 98.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardError\">\r\n      <summary>응용 프로그램의 오류 출력을 읽는 데 사용되는 스트림을 가져옵니다.</summary>\r\n      <returns>응용 프로그램의 표준 오류 스트림을 읽는 데 사용할 수 있는 <see cref=\"T:System.IO.StreamReader\" />입니다.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginErrorReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardInput\">\r\n      <summary>응용 프로그램의 입력을 쓰는 데 사용되는 스트림을 가져옵니다.</summary>\r\n      <returns>응용 프로그램의 표준 입력 스트림을 쓰는 데 사용할 수 있는 <see cref=\"T:System.IO.StreamWriter\" />입니다.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> stream has not been defined because <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" /> is set to false. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardOutput\">\r\n      <summary>응용 프로그램의 텍스트 출력을 읽는 데 사용되는 스트림을 가져옵니다.</summary>\r\n      <returns>응용 프로그램의 표준 출력 스트림을 읽는 데 사용할 수 있는 <see cref=\"T:System.IO.StreamReader\" />입니다.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginOutputReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start\">\r\n      <summary>이 <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> 구성 요소의 <see cref=\"T:System.Diagnostics.Process\" /> 속성으로 지정된 프로세스 리소스를 시작하거나 다시 사용하여 구성 요소에 연결합니다.</summary>\r\n      <returns>프로세스 리소스가 시작된 경우에는 true이고 기존 프로세스를 다시 사용한 경우처럼 새 프로세스 리소스가 시작되지 않은 경우에는 false입니다.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <see cref=\"T:System.Diagnostics.Process\" /> component's <see cref=\"P:System.Diagnostics.Process.StartInfo\" />.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> member of the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> property is true while <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is true. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)\">\r\n      <summary>시작할 프로세스의 파일 이름 같은 프로세스 시작 정보가 포함된 매개 변수에 의해 지정된 프로세스 리소스를 시작하고 해당 리소스를 새 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소에 연결합니다.</summary>\r\n      <returns>프로세스 리소스와 연결되거나 시작된 프로세스가 없는 경우 null에 연결되는 새 <see cref=\"T:System.Diagnostics.Process\" />입니다.같은 프로세스에서 이미 실행 중인 인스턴스와 함께 시작되는 새 프로세스는 서로 독립적인 관계입니다.뿐만 아니라 시작 시 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 속성이 이미 true로 설정되어 있는 null이 아닌 프로세스가 반환될 수 있습니다.이 경우 시작된 프로세스가 자체의 기존 인스턴스를 활성화한 후 종료될 수 있습니다.</returns>\r\n      <param name=\"startInfo\">파일 이름 및 모든 명령줄 인수를 포함하여 프로세스를 시작하는 데 사용되는 정보가 들어 있는 <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />입니다. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is also true.-or-The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UserName\" /> property is not null or empty or the <see cref=\"P:System.Diagnostics.ProcessStartInfo.Password\" /> property is not null.</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"startInfo\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The file specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property could not be found.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String)\">\r\n      <summary>문서 또는 응용 프로그램 파일 이름을 지정하여 프로세스 리소스를 시작하고 해당 리소스를 새 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소에 연결합니다.</summary>\r\n      <returns>프로세스 리소스와 연결되거나 시작된 프로세스가 없는 경우 null에 연결되는 새 <see cref=\"T:System.Diagnostics.Process\" />입니다.같은 프로세스에서 이미 실행 중인 인스턴스와 함께 시작되는 새 프로세스는 서로 독립적인 관계입니다.뿐만 아니라 시작 시 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 속성이 이미 true로 설정되어 있는 null이 아닌 프로세스가 반환될 수 있습니다.이 경우 시작된 프로세스가 자체의 기존 인스턴스를 활성화한 후 종료될 수 있습니다.</returns>\r\n      <param name=\"fileName\">프로세스에서 실행될 문서 또는 응용 프로그램 파일의 이름입니다. </param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String)\">\r\n      <summary>응용 프로그램 이름 및 명령줄 인수 집합을 지정하여 프로세스 리소스를 시작하고 해당 리소스를 새 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소에 연결합니다.</summary>\r\n      <returns>프로세스 리소스와 연결되거나 시작된 프로세스가 없는 경우 null에 연결되는 새 <see cref=\"T:System.Diagnostics.Process\" />입니다.같은 프로세스에서 이미 실행 중인 인스턴스와 함께 시작되는 새 프로세스는 서로 독립적인 관계입니다.뿐만 아니라 시작 시 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 속성이 이미 true로 설정되어 있는 null이 아닌 프로세스가 반환될 수 있습니다.이 경우 시작된 프로세스가 자체의 기존 인스턴스를 활성화한 후 종료될 수 있습니다.</returns>\r\n      <param name=\"fileName\">프로세스에서 실행될 응용 프로그램 파일 이름입니다. </param>\r\n      <param name=\"arguments\">프로세스를 시작할 때 전달할 명령줄 인수입니다. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <paramref name=\"fileName\" /> or <paramref name=\"arguments\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>응용 프로그램 이름, 사용자 이름, 암호 및 도메인을 지정하여 프로세스 리소스를 시작하고 해당 리소스를 새 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소에 연결합니다.</summary>\r\n      <returns>프로세스 리소스와 연결되거나 시작된 프로세스가 없는 경우 null에 연결되는 새 <see cref=\"T:System.Diagnostics.Process\" />입니다.같은 프로세스에서 이미 실행 중인 인스턴스와 함께 시작되는 새 프로세스는 서로 독립적인 관계입니다.뿐만 아니라 시작 시 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 속성이 이미 true로 설정되어 있는 null이 아닌 프로세스가 반환될 수 있습니다.이 경우 시작된 프로세스가 자체의 기존 인스턴스를 활성화한 후 종료될 수 있습니다.</returns>\r\n      <param name=\"fileName\">프로세스에서 실행될 응용 프로그램 파일 이름입니다.</param>\r\n      <param name=\"userName\">프로세스를 시작할 때 사용할 사용자 이름입니다.</param>\r\n      <param name=\"password\">프로세스를 시작할 때 사용할 암호가 포함된 <see cref=\"T:System.Security.SecureString\" />입니다.</param>\r\n      <param name=\"domain\">프로세스를 시작할 때 사용할 도메인입니다.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>응용 프로그램 이름, 명령줄 인수 집합, 사용자 이름, 암호 및 도메인을 지정하여 프로세스 리소스를 시작하고 해당 리소스를 새 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소에 연결합니다.</summary>\r\n      <returns>프로세스 리소스와 연결되거나 시작된 프로세스가 없는 경우 null에 연결되는 새 <see cref=\"T:System.Diagnostics.Process\" />입니다.같은 프로세스에서 이미 실행 중인 인스턴스와 함께 시작되는 새 프로세스는 서로 독립적인 관계입니다.뿐만 아니라 시작 시 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 속성이 이미 true로 설정되어 있는 null이 아닌 프로세스가 반환될 수 있습니다.이 경우 시작된 프로세스가 자체의 기존 인스턴스를 활성화한 후 종료될 수 있습니다.</returns>\r\n      <param name=\"fileName\">프로세스에서 실행될 응용 프로그램 파일 이름입니다. </param>\r\n      <param name=\"arguments\">프로세스를 시작할 때 전달할 명령줄 인수입니다. </param>\r\n      <param name=\"userName\">프로세스를 시작할 때 사용할 사용자 이름입니다.</param>\r\n      <param name=\"password\">프로세스를 시작할 때 사용할 암호가 포함된 <see cref=\"T:System.Security.SecureString\" />입니다.</param>\r\n      <param name=\"domain\">프로세스를 시작할 때 사용할 도메인입니다.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartInfo\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.Process\" />의 <see cref=\"M:System.Diagnostics.Process.Start\" /> 메서드에 전달할 속성을 가져오거나 설정합니다.</summary>\r\n      <returns>프로세스를 시작하는 데 사용된 데이터를 나타내는 <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />입니다.이러한 인수에는 프로세스를 시작하는 데 사용된 실행 파일이나 문서 이름이 포함됩니다.</returns>\r\n      <exception cref=\"T:System.ArgumentNullException\">The value that specifies the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> is null. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartTime\">\r\n      <summary>연결된 프로세스가 시작된 시간을 가져옵니다.</summary>\r\n      <returns>해당 프로세스가 시작된 시간을 나타내는 개체입니다.프로세스가 실행되고 있지 않으면 예외가 throw됩니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.StartTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or-The process has not been started.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred in the call to the Windows function.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Threads\">\r\n      <summary>연결된 프로세스에서 실행 중인 스레드를 가져오거나 설정합니다.</summary>\r\n      <returns>연결된 프로세스에서 현재 실행 중인 운영 체제 스레드를 나타내는 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 형식의 배열입니다.</returns>\r\n      <exception cref=\"T:System.SystemException\">The process does not have an <see cref=\"P:System.Diagnostics.Process.Id\" />, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" /> instance.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.TotalProcessorTime\">\r\n      <summary>이 프로세스의 총 프로세서 시간을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스에서 CPU를 사용해 소비한 시간을 나타내는 <see cref=\"T:System.TimeSpan\" />입니다.이 값은 <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" />과 <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" />의 합입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.TotalProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.UserProcessorTime\">\r\n      <summary>이 프로세스의 사용자 프로세서 시간을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스가 운영 체제 코어 내부가 아닌 프로세스의 응용 프로그램 부분 내부에서 코드를 실행하는 데 소비한 시간을 나타내는 <see cref=\"T:System.TimeSpan\" />입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.VirtualMemorySize64\">\r\n      <summary>연결된 프로세스에 할당된 가상 메모리의 양을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스에 할당된 가상 메모리의 양(바이트)입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit\">\r\n      <summary>연결된 프로세스가 종료될 때까지 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소를 무기한 대기하게 합니다.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\">\r\n      <summary>연결된 프로세스가 종료되도록 지정한 밀리초 동안 <see cref=\"T:System.Diagnostics.Process\" /> 구성 요소를 대기하게 합니다.</summary>\r\n      <returns>연결된 프로세스가 종료된 경우 true이고, 그러지 않으면 false입니다.</returns>\r\n      <param name=\"milliseconds\">연결된 프로세스가 종료될 때까지 대기하는 시간(밀리초)입니다.최대값은 사용 가능한 가장 큰 32비트 정수 값이며, 이는 운영 체제에서 사실상 무기한 대기한다는 것을 나타냅니다.</param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.WorkingSet64\">\r\n      <summary>연결된 프로세스에 할당된 실제 메모리의 양을 가져옵니다.</summary>\r\n      <returns>연결된 프로세스에 할당된 실제 메모리의 양(바이트)입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModule\">\r\n      <summary>특정 프로세스에 로드된 .dll 또는 .exe 파일을 나타냅니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.BaseAddress\">\r\n      <summary>모듈이 로드된 메모리 주소를 가져옵니다.</summary>\r\n      <returns>모듈의 로드 주소입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.EntryPointAddress\">\r\n      <summary>시스템에서 모듈을 로드하고 실행할 때 실행되는 함수의 메모리 주소를 가져옵니다.</summary>\r\n      <returns>모듈의 진입점입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.FileName\">\r\n      <summary>모듈의 전체 경로를 가져옵니다.</summary>\r\n      <returns>모듈의 위치를 정의하는 정규화된 경로입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleMemorySize\">\r\n      <summary>모듈을 로드하는 데 필요한 메모리의 양을 가져옵니다.</summary>\r\n      <returns>모듈이 자치하는 메모리의 크기(바이트)입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleName\">\r\n      <summary>프로세스 모듈의 이름을 가져옵니다.</summary>\r\n      <returns>모듈의 이름입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModule.ToString\">\r\n      <summary>모듈 이름을 문자열로 변환합니다.</summary>\r\n      <returns>\r\n        <see cref=\"P:System.Diagnostics.ProcessModule.ModuleName\" /> 속성의 값입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModuleCollection\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> 개체의 강력한 형식의 컬렉션을 제공합니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor\">\r\n      <summary>연결된 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 인스턴스 없이 <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 클래스의 새 인스턴스를 초기화합니다.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> 인스턴스의 지정된 배열을 사용하여 <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 클래스의 새 인스턴스를 초기화합니다.</summary>\r\n      <param name=\"processModules\">이 <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 인스턴스를 초기화하는 데 사용할 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 인스턴스의 배열입니다. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)\">\r\n      <summary>지정한 프로세스 모듈이 컬렉션에 있는지 여부를 확인합니다.</summary>\r\n      <returns>해당 모듈이 컬렉션에 있으면 true이고, 그렇지 않으면 false입니다.</returns>\r\n      <param name=\"module\">이 컬렉션에서 찾을 모듈을 나타내는 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 인스턴스입니다. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> 인스턴스의 배열을 컬렉션 내의 지정된 인덱스에 복사합니다.</summary>\r\n      <param name=\"array\">컬렉션에 추가할 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 인스턴스의 배열입니다. </param>\r\n      <param name=\"index\">새 인스턴스를 추가할 위치입니다. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)\">\r\n      <summary>컬렉션 내에서 지정된 모듈의 위치를 제공합니다.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 내에서 모듈의 위치를 정의하는 인덱스(0부터 시작)입니다.</returns>\r\n      <param name=\"module\">해당 인덱스가 검색되는 <see cref=\"T:System.Diagnostics.ProcessModule\" />입니다. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)\">\r\n      <summary>프로세스 모듈 집합 전체를 반복하기 위한 인덱스를 가져옵니다.</summary>\r\n      <returns>컬렉션의 모듈을 인덱싱하는 <see cref=\"T:System.Diagnostics.ProcessModule\" />입니다. </returns>\r\n      <param name=\"index\">컬렉션 내의 모듈 값에 대한 0부터 시작하는 인덱스입니다. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ProcessPriorityClass\">\r\n      <summary>시스템이 프로세스와 연결되는 우선 순위를 나타냅니다.이 값은 각 프로세스 스레드의 우선 순위 값과 더불어 각 스레드의 기본 우선 순위 수준을 결정합니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.AboveNormal\">\r\n      <summary>프로세스 우선 순위를 Normal보다는 높게, <see cref=\"F:System.Diagnostics.ProcessPriorityClass.High\" />보다는 낮게 지정합니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.BelowNormal\">\r\n      <summary>프로세스 우선 순위를 Idle보다는 높게, Normal보다는 낮게 지정합니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.High\">\r\n      <summary>운영 체제의 부하와 관계없이 사용자가 호출하면 즉시 응답해야 하는 Task List 대화 상자 같이 즉각 실행되어야 하는 시간 위험 작업을 프로세스가 수행하도록 지정합니다.프로세스의 스레드는 정상 또는 유휴 우선 순위 클래스 프로세스의 스레드를 우선합니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Idle\">\r\n      <summary>화면 보호기와 같이 시스템이 유휴 상태일 때에만 이 프로세스의 스레드가 실행되도록 지정합니다.프로세스의 스레드는 더 높은 우선 순위 클래스에서 실행되는 프로세스의 스레드가 우선합니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Normal\">\r\n      <summary>프로세스를 특별히 예약할 필요가 없도록 지정합니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.RealTime\">\r\n      <summary>프로세스의 우선 순위가 최고가 되도록 지정합니다.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessStartInfo\">\r\n      <summary>프로세스를 시작할 때 사용되는 값 집합을 지정합니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor\">\r\n      <summary>프로세스를 시작할 때 사용할 파일 이름을 지정하지 않고 <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> 클래스의 새 인스턴스를 초기화합니다.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> 클래스의 새 인스턴스를 초기화하고 프로세스를 시작할 때 사용할 응용 프로그램이나 문서와 같은 파일 이름을 지정합니다.</summary>\r\n      <param name=\"fileName\">프로세스를 시작할 때 사용할 응용 프로그램이나 문서입니다. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> 클래스의 새 인스턴스를 초기화하고, 프로세스를 시작할 응용 프로그램 파일 이름과 응용 프로그램에 전달할 명령줄 인수 집합을 지정합니다.</summary>\r\n      <param name=\"fileName\">프로세스를 시작할 때 사용할 응용 프로그램입니다. </param>\r\n      <param name=\"arguments\">프로세스가 시작될 때 응용 프로그램에 전달할 명령줄 인수입니다. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Arguments\">\r\n      <summary>응용 프로그램을 시작할 때 사용할 명령줄 인수 집합을 가져오거나 설정합니다.</summary>\r\n      <returns>\r\n        <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> 속성에 지정된 대상 응용 프로그램으로 전달할 인수를 포함한 단일 문자열입니다.기본값은 빈 문자열(\"\")입니다.Windows Vista 및 Windows 운영 체제의 이전 버전에서 프로세스의 전체 경로 길이에 추가되는 인수의 길이는 2080자보다 짧아야 합니다.Windows 7 이상 버전에서는 길이가 32699 미만이어야 합니다.인수가 대상 응용 프로그램에서 분석 및 해석되므로 이 응용 프로그램의 예상과 일치해야 합니다.아래 예제와 같은 .NET 응용 프로그램의 경우 공백은 여러 인수 사이의 구분 기호로 해석됩니다.공백이 포함된 단일 인수는 따옴표로 묶어야 하지만 따옴표 자체는 대상 응용 프로그램으로 전달되지 않습니다.최종 분석 인수에 따옴표를 포함하려면 각 따옴표에 트리플 이스케이프를 적용합니다.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.CreateNoWindow\">\r\n      <summary>프로세스를 새 창에서 시작할지 여부를 나타내는 값을 가져오거나 설정합니다.</summary>\r\n      <returns>프로세스를 포함할 새 창을 만들지 않고 프로세스를 시작해야 하면 true이고, 그러지 않으면 false 입니다.기본값은 false입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Domain\">\r\n      <summary>프로세스를 시작할 때 사용할 도메인을 식별하는 값을 가져오거나 설정합니다. </summary>\r\n      <returns>프로세스를 시작할 때 사용할 Active Directory 도메인입니다.도메인 속성은 Active Directory를 사용하는 엔터프라이즈 환경 내의 사용자가 주로 사용합니다.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Environment\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.FileName\">\r\n      <summary>시작할 응용 프로그램 또는 문서를 가져오거나 설정합니다.</summary>\r\n      <returns>응용 프로그램과 연결되며 그 응용 프로그램에서 사용할 수 있는 기본 열기 동작이 있는 파일 형식의 문서 이름 또는 시작할 응용 프로그램의 이름입니다.기본값은 빈 문자열(\"\")입니다.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.LoadUserProfile\">\r\n      <summary>Windows 사용자 프로필을 레지스트리에서 로드할지 여부를 나타내는 값을 가져오거나 설정합니다. </summary>\r\n      <returns>Windows 사용자 프로필을 로드해야 하는 경우 true이고, 그러지 않으면 false입니다.기본값은 false입니다.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Password\">\r\n      <summary>프로세스를 시작할 때 사용할 사용자 암호가 포함된 보안 문자열을 가져오거나 설정합니다.</summary>\r\n      <returns>프로세스를 시작할 때 사용할 사용자 암호입니다.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\">\r\n      <summary>응용 프로그램의 오류 출력을 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 스트림에 쓸지 여부를 나타내는 값을 가져오거나 설정합니다.</summary>\r\n      <returns>오류 출력을 true에 써야 하는 경우 <see cref=\"P:System.Diagnostics.Process.StandardError\" />이고, 그러지 않으면false입니다.기본값은 false입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\">\r\n      <summary>응용 프로그램의 입력을 <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> 스트림에서 읽을지 여부를 나타내는 값을 가져오거나 설정합니다.</summary>\r\n      <returns>입력을 <see cref=\"P:System.Diagnostics.Process.StandardInput\" />에서 읽어야 하는 경우 true이고, 그러지 않으면 false입니다.기본값은 false입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\">\r\n      <summary>응용 프로그램의 텍스트 출력을 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 스트림에 쓸지 여부를 나타내는 값을 가져오거나 설정합니다.</summary>\r\n      <returns>출력을 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />에 써야 하는 경우 true이고, 그러지 않으면 false입니다.기본값은 false입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding\">\r\n      <summary>오류 출력에 대한 기본 설정 인코딩을 가져오거나 설정합니다.</summary>\r\n      <returns>오류 출력에 대한 기본 설정 인코딩을 나타내는 개체입니다.기본값은 null입니다.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding\">\r\n      <summary>표준 출력에 대한 기본 설정 인코딩을 가져오거나 설정합니다.</summary>\r\n      <returns>표준 출력에 대한 기본 설정 인코딩을 나타내는 개체입니다.기본값은 null입니다.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UserName\">\r\n      <summary>프로세스를 시작할 때 사용할 사용자 이름을 가져오거나 설정합니다.</summary>\r\n      <returns>프로세스를 시작할 때 사용할 사용자 이름입니다.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\">\r\n      <summary>프로세스를 시작할 때 운영 체제 셸을 사용할지 여부를 나타내는 값을 가져오거나 설정합니다.</summary>\r\n      <returns>프로세스를 시작할 때 셸을 사용하려면 true이고, 실행 파일에서 직접 프로세스를 만들어야 하면 false입니다.기본값은 true입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.WorkingDirectory\">\r\n      <summary>\r\n        <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> 속성이 false인 경우 시작할 프로세스의 작업 디렉터리를 가져오거나 설정합니다.<see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" />가 true인 경우 시작할 프로세스가 포함된 디렉터리를 가져오거나 설정합니다.</summary>\r\n      <returns>\r\n        <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" />가 true이면 시작할 프로세스가 들어 있는 디렉터리의 정규화된 이름입니다.<see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> 속성이 false인 경우 시작할 프로세스의 작업 디렉터리입니다.기본값은 빈 문자열(\"\")입니다.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThread\">\r\n      <summary>운영 체제 프로세스 스레드를 나타냅니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.BasePriority\">\r\n      <summary>스레드의 기본 우선 순위를 가져옵니다.</summary>\r\n      <returns>프로세스 우선 순위 클래스와 관련 스레드의 우선 순위 수준을 결합하여 계산되는 스레드의 기본 우선 순위입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.CurrentPriority\">\r\n      <summary>스레드의 현재 우선 순위를 가져옵니다.</summary>\r\n      <returns>운영 체제에서 스레드를 예약하는 방법에 따라 기본 우선 순위에서 벗어날 수도 있는 스레드의 현재 우선 순위입니다.활성 스레드의 경우 우선 순위가 일시적으로 높아질 수 있습니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.Id\">\r\n      <summary>스레드의 고유 식별자를 가져옵니다.</summary>\r\n      <returns>특정 스레드와 관련된 고유 식별자입니다.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.IdealProcessor\">\r\n      <summary>이 스레드가 실행될 기본 설정 프로세서를 설정합니다.</summary>\r\n      <returns>스레드를 실행할 프로세서를 결정하기 위해 시스템에서 스레드를 예약할 때 사용하는 스레드의 기본 설정 프로세서입니다.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">지정한 프로세스에서 스레드가 시작되도록 설정할 수 없는 경우 </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">플랫폼이 Windows 98 또는 Windows Millennium Edition인 경우 </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">프로세스가 원격 컴퓨터에 있는 경우</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityBoostEnabled\">\r\n      <summary>스레드 프로세스의 주 창이 포커스를 받을 때마다 운영 체제에서 관련 스레드의 우선 순위를 일시적으로 높여야 하는지 여부를 나타내는 값을 가져오거나 설정합니다.</summary>\r\n      <returns>프로세스의 인터페이스와 상호 작용할 때 스레드의 우선 순위를 높이려면 true이고, 그렇지 않으면 false입니다.기본값은 false입니다.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">우선 순위 높임 정보를 검색할 수 없는 경우또는우선 순위 높임 정보를 설정할 수 없는 경우 </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">플랫폼이 Windows 98 또는 Windows Millennium Edition인 경우 </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">프로세스가 원격 컴퓨터에 있는 경우</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityLevel\">\r\n      <summary>스레드의 우선 순위 수준을 가져오거나 설정합니다.</summary>\r\n      <returns>스레드의 우선 순위를 한정하는 범위를 지정하는 <see cref=\"T:System.Diagnostics.ThreadPriorityLevel\" /> 값 중 하나입니다.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">스레드 우선 순위 수준 정보를 검색할 수 없는 경우 또는스레드 우선 순위 수준을 설정할 수 없는 경우</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">플랫폼이 Windows 98 또는 Windows Millennium Edition인 경우 </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">프로세스가 원격 컴퓨터에 있는 경우</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime\">\r\n      <summary>스레드가 운영 체제 코어 내부에서 코드를 실행하는데 사용한 시간을 가져옵니다.</summary>\r\n      <returns>스레드가 운영 체제 코어 내부에서 코드를 실행하는데 사용한 시간을 나타내는 <see cref=\"T:System.TimeSpan\" />입니다.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">스레드 시간을 검색할 수 없는 경우 </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">플랫폼이 Windows 98 또는 Windows Millennium Edition인 경우 </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">프로세스가 원격 컴퓨터에 있는 경우</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ProcessorAffinity\">\r\n      <summary>관련 스레드가 실행될 수 있는 프로세서를 설정합니다.</summary>\r\n      <returns>비트 집합을 가리키는 <see cref=\"T:System.IntPtr\" />입니다. 각각의 비트는 스레드가 실행될 수 있는 프로세서를 나타냅니다.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">프로세서 선호도를 설정할 수 없는 경우 </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">플랫폼이 Windows 98 또는 Windows Millennium Edition인 경우 </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">프로세스가 원격 컴퓨터에 있는 경우</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThread.ResetIdealProcessor\">\r\n      <summary>이 스레드의 최적 프로세서를 다시 설정하여 단일 최적 프로세서가 없음을 나타냅니다.다시 말해서 모든 프로세서가 최적 프로세서가 되도록 다시 설정합니다.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">최적 프로세서를 다시 설정할 수 없는 경우 </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">플랫폼이 Windows 98 또는 Windows Millennium Edition인 경우 </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">프로세스가 원격 컴퓨터에 있는 경우</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartAddress\">\r\n      <summary>이 스레드를 시작한 운영 체제가 호출한 함수의 메모리 주소를 가져옵니다.</summary>\r\n      <returns>스레드가 실행하는 응용 프로그램 정의 함수를 가리키는 스레드의 시작 주소입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">플랫폼이 Windows 98 또는 Windows Millennium Edition인 경우 </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">프로세스가 원격 컴퓨터에 있는 경우</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartTime\">\r\n      <summary>운영 체제가 스레드를 시작한 시간을 가져옵니다.</summary>\r\n      <returns>운영 체제가 스레드를 시작했을 때의 시스템 시간을 나타내는 <see cref=\"T:System.DateTime\" />입니다.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">스레드 시간을 검색할 수 없는 경우 </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">플랫폼이 Windows 98 또는 Windows Millennium Edition인 경우 </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">프로세스가 원격 컴퓨터에 있는 경우</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ThreadState\">\r\n      <summary>이 스레드의 현재 상태를 가져옵니다.</summary>\r\n      <returns>실행, 대기, 종료 등 스레드의 실행을 나타내는 <see cref=\"T:System.Diagnostics.ThreadState\" />입니다.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">플랫폼이 Windows 98 또는 Windows Millennium Edition인 경우 </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">프로세스가 원격 컴퓨터에 있는 경우</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.TotalProcessorTime\">\r\n      <summary>이 스레드가 프로세서를 사용하는데 소비한 총 시간을 가져옵니다.</summary>\r\n      <returns>스레드가 프로세서의 제어를 받고 있던 시간을 나타내는 <see cref=\"T:System.TimeSpan\" />입니다.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">스레드 시간을 검색할 수 없는 경우 </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">플랫폼이 Windows 98 또는 Windows Millennium Edition인 경우 </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">프로세스가 원격 컴퓨터에 있는 경우</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.UserProcessorTime\">\r\n      <summary>관련 스레드가 응용 프로그램 내부에서 코드를 실행하는데 사용한 시간을 가져옵니다.</summary>\r\n      <returns>운영 체제 코어 내부와 반대로 스레드가 응용 프로그램 내부에서 코드를 실행하는데 사용한 시간을 나타내는 <see cref=\"T:System.TimeSpan\" />입니다.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">스레드 시간을 검색할 수 없는 경우 </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">플랫폼이 Windows 98 또는 Windows Millennium Edition인 경우 </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">프로세스가 원격 컴퓨터에 있는 경우</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.WaitReason\">\r\n      <summary>스레드가 대기 상태에 있는 이유를 가져옵니다.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ThreadWaitReason\" />은 스레드가 대기 상태에 있는 이유를 나타냅니다.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">스레드가 대기 상태에 있지 않은 경우 </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">플랫폼이 Windows 98 또는 Windows Millennium Edition인 경우 </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">프로세스가 원격 컴퓨터에 있는 경우</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThreadCollection\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> 개체의 강력한 형식의 컬렉션을 제공합니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor\">\r\n      <summary>연결된 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 인스턴스 없이 <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 클래스의 새 인스턴스를 초기화합니다.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> 인스턴스의 지정된 배열을 사용하여 <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 클래스의 새 인스턴스를 초기화합니다.</summary>\r\n      <param name=\"processThreads\">이 <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 인스턴스를 초기화하는 데 사용할 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 인스턴스의 배열입니다. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)\">\r\n      <summary>컬렉션에 프로세스 스레드를 추가합니다.</summary>\r\n      <returns>컬렉션 스레드의 인덱스(0부터 시작)입니다.</returns>\r\n      <param name=\"thread\">컬렉션에 추가할 스레드입니다. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)\">\r\n      <summary>지정한 프로세스 스레드가 컬렉션에 있는지 여부를 확인합니다.</summary>\r\n      <returns>해당 스레드가 컬렉션에 있으면 true이고, 그렇지 않으면 false입니다.</returns>\r\n      <param name=\"thread\">이 컬렉션에서 찾을 스레드를 나타내는 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 인스턴스입니다. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)\">\r\n      <summary>\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> 인스턴스의 배열을 컬렉션 내의 지정된 인덱스에 복사합니다.</summary>\r\n      <param name=\"array\">컬렉션에 추가할 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 인스턴스의 배열입니다. </param>\r\n      <param name=\"index\">새 인스턴스를 추가할 위치입니다. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)\">\r\n      <summary>컬렉션 내에서 지정된 스레드의 위치를 제공합니다.</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 내에서 스레드의 위치를 정의하는 인덱스(0부터 시작)입니다.</returns>\r\n      <param name=\"thread\">해당 인덱스가 검색되는 <see cref=\"T:System.Diagnostics.ProcessThread\" />입니다. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)\">\r\n      <summary>컬렉션의 지정된 위치에 프로세스 스레드를 삽입합니다.</summary>\r\n      <param name=\"index\">스레드가 삽입될 위치를 나타내는 인덱스(0부터 시작)입니다. </param>\r\n      <param name=\"thread\">컬렉션에 삽입할 스레드입니다. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)\">\r\n      <summary>프로세스 스레드 집합 전체를 반복하기 위한 인덱스를 가져옵니다.</summary>\r\n      <returns>컬렉션의 스레드를 인덱싱하는 <see cref=\"T:System.Diagnostics.ProcessThread\" />입니다.</returns>\r\n      <param name=\"index\">컬렉션 내의 스레드 값에 대한 인덱스(0부터 시작)입니다. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)\">\r\n      <summary>컬렉션에서 프로세스 스레드를 삭제합니다.</summary>\r\n      <param name=\"thread\">컬렉션에서 제거할 스레드입니다. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ThreadPriorityLevel\">\r\n      <summary>스레드의 우선 순위 수준을 지정합니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.AboveNormal\">\r\n      <summary>관련된 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />의 보통 우선 순위 보다 한 단계 높게 지정합니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.BelowNormal\">\r\n      <summary>관련된 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />의 보통 우선 순위 보다 한 단계 낮게 지정합니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Highest\">\r\n      <summary>최고 우선 순위를 지정합니다.이는 관련된 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />의 보통 우선 순위보다 두 단계 높습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Idle\">\r\n      <summary>유휴 우선 순위를 지정합니다.이는 관련된 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />의 값에 관계없이 모든 스레드의 우선 순위 값중 가장 낮습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Lowest\">\r\n      <summary>최저 우선 순위를 지정합니다.이는 관련된 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />의 보통 우선 순위보다 두 단계 낮습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Normal\">\r\n      <summary>관련된 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />의 보통 우선 순위를 지정합니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.TimeCritical\">\r\n      <summary>시간 위험 우선 순위를 지정합니다.이는 관련된 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />의 값에 관계없이 모든 스레드의 최고 우선 순위입니다.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadState\">\r\n      <summary>스레드의 현재 실행 상태를 지정합니다.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Initialized\">\r\n      <summary>스레드가 초기화되었으나 아직 시작되지 않았음을 나타내는 상태입니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Ready\">\r\n      <summary>사용 가능한 프로세서가 없으므로 스레드가 프로세서를 사용하기 위해 대기 중임을 나타내는 상태입니다.스레드는 사용 가능한 다음 프로세서에서 실행될 준비가 되어 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Running\">\r\n      <summary>스레드가 현재 프로세서를 사용 중임을 나타내는 상태입니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Standby\">\r\n      <summary>스레드가 곧 프로세서를 사용할 것임을 나타내는 상태입니다.한 번에 하나의 스레드만 이 상태가 될 수 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Terminated\">\r\n      <summary>스레드가 실행을 마치고 종료되었음을 나타내는 상태입니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Transition\">\r\n      <summary>스레드가 실행 전에 프로세서가 아닌 리소스를 대기하고 있음을 나타내는 상태입니다.예를 들어, 디스크에서 해당 실행 스택을 페이지로 나누기 위해 대기하고 있을 수 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Unknown\">\r\n      <summary>스레드의 상태를 알 수 없습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Wait\">\r\n      <summary>스레드가 주변 작업이 완료되거나 리소스가 사용 가능해질 때까지 기다리고 있으므로 프로세서를 사용할 준비가 되어 있지 않음을 나타내는 상태입니다.스레드가 준비 상태가 되면 다시 일정을 잡습니다.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadWaitReason\">\r\n      <summary>스레드 대기 원인을 지정합니다.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairHigh\">\r\n      <summary>스레드가 상위 이벤트 쌍을 기다리고 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairLow\">\r\n      <summary>스레드가 하위 이벤트 쌍을 기다리고 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.ExecutionDelay\">\r\n      <summary>스레드 실행이 지연됩니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Executive\">\r\n      <summary>스레드가 스케줄러를 기다리고 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.FreePage\">\r\n      <summary>스레드가 사용 가능한 가상 메모리 페이지를 기다리고 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReceive\">\r\n      <summary>스레드가 로컬 프로시저 호출이 도착하기를 기다리고 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReply\">\r\n      <summary>스레드가 로컬 프로시저 호출의 응답이 도착하기를 기다리고 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageIn\">\r\n      <summary>스레드가 메모리에 가상 메모리 페이지가 도착하기를 기다리고 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageOut\">\r\n      <summary>스레드가 디스크에 가상 메모리 페이지가 쓰여지기를 기다리고 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Suspended\">\r\n      <summary>스레드 실행이 일시 중단됩니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.SystemAllocation\">\r\n      <summary>스레드가 시스템 할당을 기다리고 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Unknown\">\r\n      <summary>스레드가 알 수 없는 이유로 기다리고 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.UserRequest\">\r\n      <summary>스레드가 사용자 요청을 기다리고 있습니다.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.VirtualMemory\">\r\n      <summary>스레드가 시스템에서 가상 메모리를 할당하기를 기다리고 있습니다.</summary>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/ru/System.Diagnostics.Process.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<doc>\r\n  <assembly>\r\n    <name>System.Diagnostics.Process</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\">\r\n      <summary>[SECURITY CRITICAL] Предоставляет управляемую оболочку для дескриптора процесса.</summary>\r\n    </member>\r\n    <member name=\"M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)\">\r\n      <summary>[SECURITY CRITICAL] Инициализирует новый экземпляр класса <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> класса для указанного дескриптора, указывающее, следует ли освободить дескриптор на стадии завершения. </summary>\r\n      <param name=\"existingHandle\">Инкапсулируемый дескриптор.</param>\r\n      <param name=\"ownsHandle\">trueЧтобы надежно <see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" /> освободить дескриптор на стадии завершения; в противном случае — false.</param>\r\n    </member>\r\n    <member name=\"P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid\"></member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventArgs\">\r\n      <summary>Предоставляет данные для событий <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> и <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.DataReceivedEventArgs.Data\">\r\n      <summary>Возвращает строку символов, записанную в перенаправленный поток вывода <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Строка, записанная соответствующим процессом <see cref=\"T:System.Diagnostics.Process\" /> в перенаправленный поток <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> или <see cref=\"P:System.Diagnostics.Process.StandardError\" />.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventHandler\">\r\n      <summary>Представляет метод, обрабатывающий событие <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> или событие <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> объекта <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <param name=\"sender\">Источник события. </param>\r\n      <param name=\"e\">Объект <see cref=\"T:System.Diagnostics.DataReceivedEventArgs\" />, содержащий данные, которые относятся к событию. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.Process\">\r\n      <summary>Предоставляет доступ к локальным и удаленным процессам и позволяет запускать и останавливать локальные системные процессы.Исходный код .NET Framework для этого типа см. в указанном источнике.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.#ctor\">\r\n      <summary>Инициализирует новый экземпляр класса <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.BasePriority\">\r\n      <summary>Получает базовый приоритет связанного процесса.</summary>\r\n      <returns>Базовый приоритет, который вычисляется свойством <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> связанного процесса.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or- The process has not started, so there is no process ID. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginErrorReadLine\">\r\n      <summary>Начинает операции асинхронного чтения с перенаправленного потока <see cref=\"P:System.Diagnostics.Process.StandardError\" /> приложения.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginOutputReadLine\">\r\n      <summary>Начинает операции асинхронного чтения с перенаправленного потока <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> приложения.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelErrorRead\">\r\n      <summary>Отменяет операцию асинхронного чтения в перенаправленном потоке <see cref=\"P:System.Diagnostics.Process.StandardError\" /> приложения.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelOutputRead\">\r\n      <summary>Отменяет операцию асинхронного чтения в перенаправленном потоке <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> приложения.</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose\"></member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose(System.Boolean)\">\r\n      <summary>Освобождает все ресурсы, используемые этим процессом.</summary>\r\n      <param name=\"disposing\">Значение true позволяет освободить как управляемые, так и неуправляемые ресурсы; значение false освобождает только неуправляемые ресурсы. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.EnableRaisingEvents\">\r\n      <summary>Получает или задает значение, указывающее, следует ли вызывать событие <see cref=\"E:System.Diagnostics.Process.Exited\" /> при прекращении процесса.</summary>\r\n      <returns>Значение true, если событие <see cref=\"E:System.Diagnostics.Process.Exited\" /> должно быть вызвано при завершении связанного процесса (выход или вызов метода <see cref=\"M:System.Diagnostics.Process.Kill\" />); в противном случае — значение false.Значение по умолчанию — false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.EnterDebugMode\">\r\n      <summary>Помещает компонент <see cref=\"T:System.Diagnostics.Process\" /> в состояние взаимодействия с работающим системным процессом, выполняющимся в специальном режиме путем включения встроенного свойства SeDebugPrivilege в данном потоке.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.ErrorDataReceived\">\r\n      <summary>Происходит, когда приложение выполняет запись в свой перенаправленный поток <see cref=\"P:System.Diagnostics.Process.StandardError\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitCode\">\r\n      <summary>Получает значение, заданное связанным процессом при завершении.</summary>\r\n      <returns>Код, который задал связанный процесс при завершении.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has not exited.-or- The process <see cref=\"P:System.Diagnostics.Process.Handle\" /> is not valid. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitCode\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.Exited\">\r\n      <summary>Происходит при завершении процесса.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitTime\">\r\n      <summary>Получает время завершения связанного процесса.</summary>\r\n      <returns>Класс <see cref=\"T:System.DateTime\" />, показывающий время завершения связанного процесса.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetCurrentProcess\">\r\n      <summary>Получает новый компонент <see cref=\"T:System.Diagnostics.Process\" /> и связывает его с активным в данный момент процессом.</summary>\r\n      <returns>Новый компонент <see cref=\"T:System.Diagnostics.Process\" />, связанный с ресурсом выполняющегося процесса в приложении.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32)\">\r\n      <summary>Возвращает новый компонент <see cref=\"T:System.Diagnostics.Process\" />, по заданному идентификатору процесса на локальном компьютере.</summary>\r\n      <returns>Компонент <see cref=\"T:System.Diagnostics.Process\" />, связанный с локальным ресурсом процесса, определенного параметром <paramref name=\"processId\" />.</returns>\r\n      <param name=\"processId\">Уникальный в системе идентификатор ресурса процесса. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)\">\r\n      <summary>Возвращает новый компонент <see cref=\"T:System.Diagnostics.Process\" />, по заданному идентификатору процесса и имени компьютера в сети.</summary>\r\n      <returns>Компонент <see cref=\"T:System.Diagnostics.Process\" />, связанный с удаленным ресурсом процесса, определенного параметром <paramref name=\"processId\" />.</returns>\r\n      <param name=\"processId\">Уникальный в системе идентификатор ресурса процесса. </param>\r\n      <param name=\"machineName\">Имя компьютера в сети. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.-or- The <paramref name=\"machineName\" /> parameter syntax is invalid.The name might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses\">\r\n      <summary>Создает новый компонент <see cref=\"T:System.Diagnostics.Process\" /> для каждого ресурса процесса на локальном компьютере.</summary>\r\n      <returns>Массив типа <see cref=\"T:System.Diagnostics.Process\" />, представляющий все ресурсы процесса, выполняющегося на локальном компьютере.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses(System.String)\">\r\n      <summary>Создает новый компонент <see cref=\"T:System.Diagnostics.Process\" /> для каждого ресурса процесса на указанном компьютере.</summary>\r\n      <returns>Массив типа <see cref=\"T:System.Diagnostics.Process\" />, представляющий все ресурсы процесса, выполняющегося на указанном компьютере.</returns>\r\n      <param name=\"machineName\">Компьютер, из которого читается список процессов. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String)\">\r\n      <summary>Создает массив из новых компонентов <see cref=\"T:System.Diagnostics.Process\" /> и связывает их со всеми ресурсами процесса на локальном компьютере, для которых заданное имя процесса является общедоступным.</summary>\r\n      <returns>Массив типа <see cref=\"T:System.Diagnostics.Process\" />, представляющий ресурсы процесса, выполняющего указанное приложение или файл.</returns>\r\n      <param name=\"processName\">Понятное имя процесса. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)\">\r\n      <summary>Создает массив из новых компонентов <see cref=\"T:System.Diagnostics.Process\" /> и связывает их со всеми ресурсами процесса на удаленном компьютере, для которых заданное имя процесса является общедоступным.</summary>\r\n      <returns>Массив типа <see cref=\"T:System.Diagnostics.Process\" />, представляющий ресурсы процесса, выполняющего указанное приложение или файл.</returns>\r\n      <param name=\"processName\">Понятное имя процесса. </param>\r\n      <param name=\"machineName\">Имя компьютера в сети. </param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.HasExited\">\r\n      <summary>Получает значение, определяющее завершение связанного процесса.</summary>\r\n      <returns>Значение true, если процесс операционной системы, на который ссылается компонент <see cref=\"T:System.Diagnostics.Process\" />, был завершен; в противном случае — значение false.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with the object. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The exit code for the process could not be retrieved. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.HasExited\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Id\">\r\n      <summary>Получает уникальный идентификатор связанного процесса.</summary>\r\n      <returns>Созданный системой уникальный идентификатор, на который ссылается этот экземпляр <see cref=\"T:System.Diagnostics.Process\" />.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process's <see cref=\"P:System.Diagnostics.Process.Id\" /> property has not been set.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Kill\">\r\n      <summary>Немедленно останавливает связанный процесс.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to call <see cref=\"M:System.Diagnostics.Process.Kill\" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has already exited. -or-There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.LeaveDebugMode\">\r\n      <summary>Выбирает компонент <see cref=\"T:System.Diagnostics.Process\" /> из состояния, позволяющего ему взаимодействовать с процессами операционной системы, запущенными в специальном режиме.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MachineName\">\r\n      <summary>Получает имя компьютера, на котором выполняется связанный процесс.</summary>\r\n      <returns>Имя компьютера, на котором выполняется связанный процесс.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MainModule\">\r\n      <summary>Получает главный модуль связанного процесса.</summary>\r\n      <returns>Модуль <see cref=\"T:System.Diagnostics.ProcessModule\" />, который был использован для запуска процесса.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MainModule\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A 32-bit process is trying to access the modules of a 64-bit process.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MaxWorkingSet\">\r\n      <summary>Возвращает или задает максимальный размер доступного рабочего множества для связанного процесса.</summary>\r\n      <returns>Максимальный размер рабочего множества в байтах, доступного в памяти для процесса.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MaxWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MinWorkingSet\">\r\n      <summary>Возвращает или задает минимальный размер доступного рабочего множества для связанного процесса.</summary>\r\n      <returns>Минимальный размер рабочего множества в байтах, требуемый в памяти для процесса.</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MinWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Modules\">\r\n      <summary>Получает модули, которые были загружены связанным процессом.</summary>\r\n      <returns>Массив объектов типа <see cref=\"T:System.Diagnostics.ProcessModule\" />, который предоставляет модули, загруженные связанным процессом.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for either the system process or the idle process.These processes do not have modules.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.NonpagedSystemMemorySize64\">\r\n      <summary>Получает количество невыгружаемой системной памяти, выделенной для связанного процесса.</summary>\r\n      <returns>Количество системной памяти в байтах, выделенной для связанного процесса, которую нельзя записать в файл подкачки виртуальной памяти.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.OnExited\">\r\n      <summary>Вызывает событие <see cref=\"E:System.Diagnostics.Process.Exited\" />.</summary>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.OutputDataReceived\">\r\n      <summary>Происходит, когда приложение записывает строку в свой перенаправленный поток <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedMemorySize64\">\r\n      <summary>Получает количество выгружаемой системной памяти, выделенной для связанного процесса.</summary>\r\n      <returns>Количество памяти в байтах, выделенной в файле подкачки виртуальной памяти для связанного процесса.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedSystemMemorySize64\">\r\n      <summary>Возвращает объем выгружаемой системной памяти, выделенной для связанного процесса.</summary>\r\n      <returns>Количество системной памяти в байтах, выделенной для связанного процесса, которую можно записать в файл подкачки виртуальной памяти.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakPagedMemorySize64\">\r\n      <summary>Получает максимальное количество памяти в файле подкачки виртуальной памяти, используемой связанным процессом.</summary>\r\n      <returns>Максимальное количество памяти в байтах, выделенной в файле подкачки виртуальной памяти для связанного процесса с момента его запуска.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakVirtualMemorySize64\">\r\n      <summary>Получает максимальное количество виртуальной памяти, используемой связанным процессом.</summary>\r\n      <returns>Максимальное количество виртуальной памяти в байтах, выделенной для связанного процесса с момента его запуска.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakWorkingSet64\">\r\n      <summary>Получает максимальное количество физической памяти, используемой связанным процессом.</summary>\r\n      <returns>Максимальное количество физической памяти в байтах, выделенной для связанного процесса с момента его запуска.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityBoostEnabled\">\r\n      <summary>Возвращает или задает значение, указывающее, должна ли операционная система временно увеличить приоритет связанного процесса, когда основное окно процесса получит фокус.</summary>\r\n      <returns>Значение true, если требуется динамическое увеличение приоритета процесса, когда процесс выходит из состояния ожидания; в противном случае — значение false.Значение по умолчанию — false.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Priority boost information could not be retrieved from the associated process resource. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityBoostEnabled\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityClass\">\r\n      <summary>Возвращает или задает общую категорию приоритета для процесса.</summary>\r\n      <returns>Категория приоритета для связанного процесса, из которой вычисляется свойство <see cref=\"P:System.Diagnostics.Process.BasePriority\" />.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">You have set the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>\r\n      <exception cref=\"T:System.ComponentModel.InvalidEnumArgumentException\">Priority class cannot be set because it does not use a valid value, as defined in the <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> enumeration.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivateMemorySize64\">\r\n      <summary>Получает количество закрытой памяти, выделенной для связанного процесса.</summary>\r\n      <returns>Количество памяти в байтах, выделенное для связанного процесса, который не может быть доступен другим процессам.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\">\r\n      <summary>Получает права доступа на время процессора для этого процесса.</summary>\r\n      <returns>Класс <see cref=\"T:System.TimeSpan\" />, показывающий количество времени, которое процесс потратил на выполнение кода внутри ядра операционной системы.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessName\">\r\n      <summary>Получает имя процесса.</summary>\r\n      <returns>Имя, которое использует система для идентификации процесса для пользователя.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process does not have an identifier, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" />.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is not on this computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessorAffinity\">\r\n      <summary>Возвращает или задает процессоры, на которых может быть запланировано выполнение потоков данного процесса.</summary>\r\n      <returns>Битовая маска, представляющая процессоры, на которых могут выполняться потоки связанного процесса.По умолчанию маска зависит от числа процессоров в компьютере.Значение по умолчанию равно 2 n -1, где n — число процессоров.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> was not available.-or- The process has exited. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Refresh\">\r\n      <summary>Удаляет любые кэшированные внутри компонента процесса сведения о связанном процессе.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SafeHandle\">\r\n      <summary>Возвращает собственный дескриптор процесса.</summary>\r\n      <returns>Собственный дескриптор процесса.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SessionId\">\r\n      <summary>Получает идентификатор сеанса служб терминалов для связанного процесса.</summary>\r\n      <returns>Идентификатор сеанса служба терминалов для связанного процесса.</returns>\r\n      <exception cref=\"T:System.NullReferenceException\">There is no session associated with this process.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The <see cref=\"P:System.Diagnostics.Process.SessionId\" /> property is not supported on Windows 98.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardError\">\r\n      <summary>Получает поток, используемый для чтения вывода ошибок приложения.</summary>\r\n      <returns>Объект <see cref=\"T:System.IO.StreamReader\" />, используемый для чтения стандартного потока ошибок приложения.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginErrorReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardInput\">\r\n      <summary>Получает поток, используемый для записи ввода приложения.</summary>\r\n      <returns>Объект <see cref=\"T:System.IO.StreamWriter\" />, используемый для записи стандартного входного потока приложения.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> stream has not been defined because <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" /> is set to false. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardOutput\">\r\n      <summary>Получает поток, используемый для чтения текстовых выходных данных приложения.</summary>\r\n      <returns>Объект <see cref=\"T:System.IO.StreamReader\" />, используемый для чтения стандартного потока вывода приложения.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginOutputReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start\">\r\n      <summary>Запускает (или повторно использует) ресурс процесса, определенный свойством <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> этого компонента <see cref=\"T:System.Diagnostics.Process\" />, и связывает его с компонентом.</summary>\r\n      <returns>Значение true, если ресурс процесса запущен; значение false, если новый ресурс процесса не был запущен (например, при повторном использовании существующего процесса).</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <see cref=\"T:System.Diagnostics.Process\" /> component's <see cref=\"P:System.Diagnostics.Process.StartInfo\" />.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> member of the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> property is true while <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is true. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)\">\r\n      <summary>Запускает ресурс процесса, определенный параметром, содержащим стартовую информацию процесса (например, имя файла запускаемого процесса), и связывает ресурс с новым компонентом <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Новый процесс <see cref=\"T:System.Diagnostics.Process\" />, связанный с ресурсом процесса, или null, если ресурс процесса не запущен.Обратите внимание, что новый процесс, запущенный с уже выполняющимися экземплярами того же процесса, будет независимым от других.Кроме того, метод Start может вернуть ненулевой тип Process, свойство <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> которого равно true.В этом случае запущенный процесс может активировать существующий экземпляр самого себя, а затем завершить работу.</returns>\r\n      <param name=\"startInfo\">Объект <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />, который содержит информацию, использующуюся для запуска процесса, включая имя файла и все аргументы командной строки. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is also true.-or-The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UserName\" /> property is not null or empty or the <see cref=\"P:System.Diagnostics.ProcessStartInfo.Password\" /> property is not null.</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"startInfo\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The file specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property could not be found.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String)\">\r\n      <summary>Запускает ресурс процесса путем указания имени документа или файла приложения и связывает ресурс с новым компонентом <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Новый процесс <see cref=\"T:System.Diagnostics.Process\" />, связанный с ресурсом процесса, или null, если ресурс процесса не запущен.Обратите внимание, что новый процесс, запущенный наряду с уже выполняющимися экземплярами того же процесса, будет независимым от других.Кроме того, метод Start может вернуть ненулевой тип Process, свойство <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> которого равно true.В этом случае запущенный процесс может активировать существующий экземпляр самого себя, а затем завершить работу.</returns>\r\n      <param name=\"fileName\">Имя документа или файла приложения для запуска в процессе. </param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String)\">\r\n      <summary>Запускает ресурс процесса путем указания имени приложения и набора аргументов командной строки и связывает ресурс с новым компонентом <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Новый процесс <see cref=\"T:System.Diagnostics.Process\" />, связанный с ресурсом процесса, или null, если ресурс процесса не запущен.Обратите внимание, что новый процесс, запущенный наряду с уже выполняющимися экземплярами того же процесса, будет независимым от других.Кроме того, метод Start может вернуть ненулевой тип Process, свойство <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> которого равно true.В этом случае запущенный процесс может активировать существующий экземпляр самого себя, а затем завершить работу.</returns>\r\n      <param name=\"fileName\">Имя файла приложения для запуска в процессе. </param>\r\n      <param name=\"arguments\">Аргументы командной строки для передачи при запуске процесса. </param>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <paramref name=\"fileName\" /> or <paramref name=\"arguments\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>Запускает ресурс процесса путем указания имени приложения, имени пользователя, пароля и домена и связывает ресурс с новым компонентом <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Новый процесс <see cref=\"T:System.Diagnostics.Process\" />, связанный с ресурсом процесса, или null, если ресурс процесса не запущен.Обратите внимание, что новый процесс, запущенный наряду с уже выполняющимися экземплярами того же процесса, будет независимым от других.Кроме того, метод Start может вернуть ненулевой тип Process, свойство <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> которого равно true.В этом случае запущенный процесс может активировать существующий экземпляр самого себя, а затем завершить работу.</returns>\r\n      <param name=\"fileName\">Имя файла приложения для запуска в процессе.</param>\r\n      <param name=\"userName\">Имя пользователя, используемое при запуске процесса.</param>\r\n      <param name=\"password\">Объект <see cref=\"T:System.Security.SecureString\" />, содержащий пароль для использования при запуске процесса.</param>\r\n      <param name=\"domain\">Домен, используемый при запуске процесса.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>Запускает ресурс процесса путем указания имени приложения, набора аргументов командной строки, имени пользователя, пароля и домена и связывает ресурс с новым компонентом <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Новый процесс <see cref=\"T:System.Diagnostics.Process\" />, связанный с ресурсом процесса, или null, если ресурс процесса не запущен.Обратите внимание, что новый процесс, запущенный наряду с уже выполняющимися экземплярами того же процесса, будет независимым от других.Кроме того, метод Start может вернуть ненулевой тип Process, свойство <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> которого равно true.В этом случае запущенный процесс может активировать существующий экземпляр самого себя, а затем завершить работу.</returns>\r\n      <param name=\"fileName\">Имя файла приложения для запуска в процессе. </param>\r\n      <param name=\"arguments\">Аргументы командной строки для передачи при запуске процесса. </param>\r\n      <param name=\"userName\">Имя пользователя, используемое при запуске процесса.</param>\r\n      <param name=\"password\">Объект <see cref=\"T:System.Security.SecureString\" />, содержащий пароль для использования при запуске процесса.</param>\r\n      <param name=\"domain\">Домен, используемый при запуске процесса.</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartInfo\">\r\n      <summary>Получает или задает свойства для передачи их методу <see cref=\"M:System.Diagnostics.Process.Start\" /> объекта <see cref=\"T:System.Diagnostics.Process\" />.</summary>\r\n      <returns>Класс <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />, который представляет данные для запуска процесса.Эти аргументы включают имя исполняемого файла или документа, использованного для запуска процесса.</returns>\r\n      <exception cref=\"T:System.ArgumentNullException\">The value that specifies the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> is null. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartTime\">\r\n      <summary>Получает время запуска связанного процесса.</summary>\r\n      <returns>Объект, показывающий время запуска процесса.Если процесс не выполняется, возникает исключение.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.StartTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or-The process has not been started.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred in the call to the Windows function.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Threads\">\r\n      <summary>Получает множество потоков, выполняющихся в связанном процессе.</summary>\r\n      <returns>Массив объектов типа <see cref=\"T:System.Diagnostics.ProcessThread\" />, представляющий потоки операционной системы, которые в настоящий момент выполняются в связанном процессе.</returns>\r\n      <exception cref=\"T:System.SystemException\">The process does not have an <see cref=\"P:System.Diagnostics.Process.Id\" />, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" /> instance.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.TotalProcessorTime\">\r\n      <summary>Получает полное время процессора для этого процесса.</summary>\r\n      <returns>Объект <see cref=\"T:System.TimeSpan\" />, указывающий количество времени, потраченного процессом на загрузку ЦП.Это значение является суммой значений свойств <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> и <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" />.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.TotalProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.UserProcessorTime\">\r\n      <summary>Получает пользовательское время процессора для этого процесса.</summary>\r\n      <returns>Класс <see cref=\"T:System.TimeSpan\" />, показывающий количество времени, которое связанный процесс потратил на выполнение кода внутри приложения (не внутри ядра операционной системы).</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.VirtualMemorySize64\">\r\n      <summary>Получает количество виртуальной памяти, выделенной для связанного процесса.</summary>\r\n      <returns>Возвращает количество виртуальной памяти в байтах, выделенной для связанного процесса.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit\">\r\n      <summary>Дает компоненту <see cref=\"T:System.Diagnostics.Process\" /> команду ожидать завершения связанного процесса в течение неограниченного времени.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\">\r\n      <summary>Дает компоненту <see cref=\"T:System.Diagnostics.Process\" /> команду ожидать завершения связанного процесса в течение указанного времени в миллисекундах.</summary>\r\n      <returns>Значение true, если связанный процесс завершился; в противном случае — значение false.</returns>\r\n      <param name=\"milliseconds\">Количество времени в миллисекундах для ожидания завершения связанного процесса.Максимальным является наибольшее возможное 32-битное целое число, которое представляет для операционной системы бесконечность.</param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.WorkingSet64\">\r\n      <summary>Получает количество физической памяти, выделенной для связанного процесса.</summary>\r\n      <returns>Количество физической памяти в байтах, выделенной для связанного процесса.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModule\">\r\n      <summary>Представляет файл с расширением .dll или .exe, загруженный в определенный процесс.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.BaseAddress\">\r\n      <summary>Возвращает адрес в памяти, куда был загружен модуль.</summary>\r\n      <returns>Адрес загрузки модуля.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.EntryPointAddress\">\r\n      <summary>Возвращает адрес памяти для функции, выполняющейся при загрузке и выполнении модуля системой.</summary>\r\n      <returns>Точка входа модуля.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.FileName\">\r\n      <summary>Возвращает полный путь к модулю.</summary>\r\n      <returns>Полный путь, который определяет место модуля.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleMemorySize\">\r\n      <summary>Возвращает объем памяти, необходимый для загрузки модуля.</summary>\r\n      <returns>Размер памяти в байтах, которую занимает модуль.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleName\">\r\n      <summary>Возвращает имя модуля процесса.</summary>\r\n      <returns>Имя модуля.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModule.ToString\">\r\n      <summary>Преобразует имя модуля в строку.</summary>\r\n      <returns>Значение свойства <see cref=\"P:System.Diagnostics.ProcessModule.ModuleName\" />.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModuleCollection\">\r\n      <summary>Предоставляет строго типизированную коллекцию объектов <see cref=\"T:System.Diagnostics.ProcessModule\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor\">\r\n      <summary>Инициализирует новый экземпляр класса <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> без использования связанных экземпляров <see cref=\"T:System.Diagnostics.ProcessModule\" />.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])\">\r\n      <summary>Инициализирует новый экземпляр класса <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />, используя указанный массив экземпляров <see cref=\"T:System.Diagnostics.ProcessModule\" />.</summary>\r\n      <param name=\"processModules\">Массив экземпляров <see cref=\"T:System.Diagnostics.ProcessModule\" />, с помощью которого инициализируется экземпляр <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)\">\r\n      <summary>Определяет, существует ли в коллекции указанный модуль процесса.</summary>\r\n      <returns>Значение true, если модуль присутствует в коллекции; в противном случае — значение false.</returns>\r\n      <param name=\"module\">Экземпляр <see cref=\"T:System.Diagnostics.ProcessModule\" />, указывающий на искомый модуль в коллекции. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)\">\r\n      <summary>Копирует в коллекцию массив экземпляров <see cref=\"T:System.Diagnostics.ProcessModule\" /> по указанному индексу.</summary>\r\n      <param name=\"array\">Массив экземпляров <see cref=\"T:System.Diagnostics.ProcessModule\" /> для добавления в коллекцию. </param>\r\n      <param name=\"index\">Место, куда добавляются новые экземпляры. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)\">\r\n      <summary>Предоставляет расположение указанного модуля в коллекции.</summary>\r\n      <returns>Отсчитываемый от нуля индекс, по которому определяется место модуля в коллекции <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" />.</returns>\r\n      <param name=\"module\">Класс <see cref=\"T:System.Diagnostics.ProcessModule\" />, чей индекс извлекается. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)\">\r\n      <summary>Возвращает индекс для выполнения итерации по набору модулей процесса.</summary>\r\n      <returns>Класс <see cref=\"T:System.Diagnostics.ProcessModule\" />, который индексирует модули в коллекции. </returns>\r\n      <param name=\"index\">Отсчитываемое от нуля индексное значение модуля в коллекции. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ProcessPriorityClass\">\r\n      <summary>Указывает приоритет, который система связывает с процессом.Это значение вместе со значением приоритета каждого потока процесса определяет базовый уровень приоритета каждого потока.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.AboveNormal\">\r\n      <summary>Указывает, что значение приоритета процесса находится между Normal и <see cref=\"F:System.Diagnostics.ProcessPriorityClass.High\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.BelowNormal\">\r\n      <summary>Указывает, что значение приоритета процесса находится между Idle и Normal.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.High\">\r\n      <summary>Указывает, что процесс выполняет срочные задачи, которые должны быть выполнены немедленно, например диалоговое окно Task List, которое должно быстро отвечать при вызове пользователя независимо от загрузки операционной системы.Потоки процесса выгружают потоки процессов с нормальными или низкими приоритетами.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Idle\">\r\n      <summary>Указывает, что потоки этого процесса выполняются, только когда система не занята. Примером может служить программа-заставка.Потоки данного процесса выгружаются потоками любых процессов с более высоким приоритетом.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Normal\">\r\n      <summary>Указывает, что у процесса нет особых запланированных потребностей.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.RealTime\">\r\n      <summary>Указывает, что процесс обладает максимально высоким приоритетом.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessStartInfo\">\r\n      <summary>Задает набор значений, используемых при запуске процесса.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor\">\r\n      <summary>Инициализирует новый экземпляр класса <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />, не указывая имени файла, вместе с которым должен запускаться процесс.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)\">\r\n      <summary>Инициализирует новый экземпляр класса <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> и задает имя файла, например приложение или документ, вместе с которым должен запускаться процесс.</summary>\r\n      <param name=\"fileName\">Приложение или документ, вместе с которыми должен запускаться процесс. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)\">\r\n      <summary>Инициализирует новый экземпляр класса <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />, задает имя файла приложения, вместе с которым должен запускаться процесс, и указывает передаваемые в приложение аргументы командной строки.</summary>\r\n      <param name=\"fileName\">Приложение, с которым должен запускаться процесс. </param>\r\n      <param name=\"arguments\">Аргументы командной строки, передаваемые в приложение при запуске процесса. </param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Arguments\">\r\n      <summary>Возвращает или задает набор аргументов командной строки, используемых при запуске приложения.</summary>\r\n      <returns>Одна строка, содержащая аргументы для передачи в целевое приложение, указанное в свойстве <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" />.Значение по умолчанию — пустая строка (\"\").В Windows Vista и более ранних версиях операционной системы Windows длина аргументов, добавляемых к длине полного пути к процессу, должна быть меньше 2080.В Windows 7 и более поздних версиях длина должна быть меньше 32699.Аргументы анализируются и интерпретируются целевым приложением, поэтому они должны соответствовать ожидаемым аргументам приложения.Как показано в примерах ниже, для приложений .NET пробелы считаются разделителями между несколькими аргументами.Одиночный аргумент, включающий пробелы, должен быть заключен в кавычки, но кавычки не указываются в целевом приложении.В финальном проанализированном аргументе при включении кавычек к каждому знаку следует добавить escape-символ.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.CreateNoWindow\">\r\n      <summary>Возвращает или задает значение, позволяющее определить, нужно ли запускать процесс в новом окне.</summary>\r\n      <returns>Значение true, если процесс должен быть запущен без создания для него нового окна; в противном случае — значение false.Значение по умолчанию — false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Domain\">\r\n      <summary>Возвращает или задает значение, позволяющее идентифицировать домен, используемый при запуске процесса. </summary>\r\n      <returns>Домен Active Directory, используемый при запуске процесса.Свойство домена актуально преимущественно для пользователей, работающих в корпоративной среде и использующих службу Active Directory.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Environment\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.FileName\">\r\n      <summary>Возвращает или задает приложение или документ для запуска.</summary>\r\n      <returns>Имя запускаемого приложения или имя документа, тип файла которого связан с приложением и для которого доступно действие открытия по умолчанию.Значение по умолчанию — пустая строка (\"\").</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.LoadUserProfile\">\r\n      <summary>Возвращает или задает значение, позволяющее определить, следует ли загружать профиль пользователя Windows из реестра. </summary>\r\n      <returns>Значение true, если должен быть загружен профиль пользователя Windows; в противном случае — значение false.Значение по умолчанию — false.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Password\">\r\n      <summary>Возвращает или задает параметр безопасности, в котором содержится пароль пользователя, используемый при запуске процесса.</summary>\r\n      <returns>Пароль пользователя, используемый при запуске процесса.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\">\r\n      <summary>Возвращает или задает значение, позволяющее определить, записываются ли выходные данные об ошибках приложения в поток <see cref=\"P:System.Diagnostics.Process.StandardError\" />.</summary>\r\n      <returns>Значение true, если выходные данные должны записываться в <see cref=\"P:System.Diagnostics.Process.StandardError\" />; в противном случае — значение false.Значение по умолчанию — false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\">\r\n      <summary>Возвращает или задает значение, позволяющее определить, будут ли считываться входные данные приложения из потока <see cref=\"P:System.Diagnostics.Process.StandardInput\" />.</summary>\r\n      <returns>Значение true, если входные данные должны считываться из <see cref=\"P:System.Diagnostics.Process.StandardInput\" />; в противном случае — значение false.Значение по умолчанию — false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\">\r\n      <summary>Возвращает или задает значение, позволяющее определить, записываются ли текстовые выходные данные приложения в поток <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />.</summary>\r\n      <returns>Значение true, если выходные данные должны записываться в <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />; в противном случае — значение false.Значение по умолчанию — false.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding\">\r\n      <summary>Возвращает или задает предпочтительную кодировку для вывода ошибок.</summary>\r\n      <returns>Объект, представляющий предпочтительную кодировку для вывода ошибок.Значение по умолчанию — null.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding\">\r\n      <summary>Возвращает или задает предпочтительную кодировку для стандартного вывода.</summary>\r\n      <returns>Объект, представляющий предпочтительную кодировку для стандартного вывода.Значение по умолчанию — null.</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UserName\">\r\n      <summary>Возвращает или задает имя пользователя, которое следует использовать при запуске процесса.</summary>\r\n      <returns>Имя пользователя, используемое при запуске процесса.</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\">\r\n      <summary>Возвращает или задает значение, позволяющее определить, нужно ли использовать оболочку операционной системы для запуска процесса.</summary>\r\n      <returns>Значение true, если оболочка должна использоваться при запуске процесса; значение false, если процесс должен создаваться непосредственно из исполняемого файла.Значение по умолчанию — true.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.WorkingDirectory\">\r\n      <summary>Если свойство <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> имеет значение false, возвращает или задает рабочую папку для процесса для запуска.Если параметру <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> присвоено значение true, возвращает или задает каталог, содержащий процесс, который требуется запустить.</summary>\r\n      <returns>Если <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> имеет значение true, полное имя каталога, в котором содержится запускаемый процесс.Если свойство <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> имеет значение false, рабочая папка для запускаемого процесса.Значение по умолчанию — пустая строка (\"\").</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThread\">\r\n      <summary>Представляет поток процесса операционной системы.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.BasePriority\">\r\n      <summary>Возвращает базовый приоритет потока.</summary>\r\n      <returns>Базовый приоритет потока, вычисляемый операционной системой путем совмещения класса приоритета процесса с уровнем приоритета соответствующего потока.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.CurrentPriority\">\r\n      <summary>Возвращает текущий приоритет потока.</summary>\r\n      <returns>Текущий приоритет потока, который может отклоняться от базового, в зависимости от способа планирования потока в операционной системе.Для активного потока приоритет может быть временно увеличен.</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.Id\">\r\n      <summary>Возвращает уникальный идентификатор потока.</summary>\r\n      <returns>Уникальный идентификатор связан с конкретным потоком.</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.IdealProcessor\">\r\n      <summary>Устанавливает предпочтительный процессор для выполнения этого потока.</summary>\r\n      <returns>Предпочтительный процессор для потока, используемый при планировании потока системой для определения процессора, на котором будет выполняться поток.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Системе не удалось задать поток для запуска на указанном процессоре. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Используется платформа Windows 98 или Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Данный процесс выполняется на удаленном компьютере.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityBoostEnabled\">\r\n      <summary>Возвращает или задает значение, указывающее, должна ли операционная система временно увеличивать приоритет соответствующего потока всякий раз, когда основное окно процесса, которому принадлежит данный поток, получает фокус.</summary>\r\n      <returns>Значение true для увеличения приоритета потока при взаимодействии пользователя с интерфейсом процесса или значение false в противном случае.Значение по умолчанию — false.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Не удается извлечь информацию о повышении приоритета.– или –Не удается задать информацию о повышении приоритета. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Используется платформа Windows 98 или Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Данный процесс выполняется на удаленном компьютере.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityLevel\">\r\n      <summary>Возвращает или задает уровень приоритета потока.</summary>\r\n      <returns>Одно из значений <see cref=\"T:System.Diagnostics.ThreadPriorityLevel\" />, задающих диапазон, который ограничивает приоритет потока.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Не удается извлечь информацию об уровне приоритета потока. – или –Не удается задать информацию об уровне приоритета потока.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Используется платформа Windows 98 или Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Данный процесс выполняется на удаленном компьютере.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime\">\r\n      <summary>Возвращает количество времени, затрачиваемое потоком на выполнение кода внутри ядра операционной системы.</summary>\r\n      <returns>Объект <see cref=\"T:System.TimeSpan\" />, указывающий количество времени, которое поток потратил на выполнение кода внутри ядра операционной системы.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Не удалось извлечь затраченное потоком время. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Используется платформа Windows 98 или Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Данный процесс выполняется на удаленном компьютере.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ProcessorAffinity\">\r\n      <summary>Задает процессоры, на которых может выполняться соответствующий поток.</summary>\r\n      <returns>Объект <see cref=\"T:System.IntPtr\" />, указывающий на набор битов, каждый из которых представляет процессор, где может выполняться поток.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Не удается задать сходство процессоров. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Используется платформа Windows 98 или Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Данный процесс выполняется на удаленном компьютере.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThread.ResetIdealProcessor\">\r\n      <summary>Отменяет идеальный процессор для данного потока, указывая тем самым на отсутствие единственного идеального процессора.Другими словами, для потока идеален любой процессор.</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Не удается сбросить идеальный процессор. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Используется платформа Windows 98 или Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Данный процесс выполняется на удаленном компьютере.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartAddress\">\r\n      <summary>Возвращает адрес функции в памяти, которая была вызвана операционной системой и запустила этот поток.</summary>\r\n      <returns>Начальный адрес потока, указывающий на определенную приложением функцию, которую выполняет данный поток.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Используется платформа Windows 98 или Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Данный процесс выполняется на удаленном компьютере.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartTime\">\r\n      <summary>Возвращает время запуска потока операционной системой.</summary>\r\n      <returns>Класс <see cref=\"T:System.DateTime\" />, представляющий системное время запуска потока операционной системой.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Не удалось извлечь затраченное потоком время. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Используется платформа Windows 98 или Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Данный процесс выполняется на удаленном компьютере.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ThreadState\">\r\n      <summary>Возвращает текущее состояние данного потока.</summary>\r\n      <returns>Объект <see cref=\"T:System.Diagnostics.ThreadState\" />, указывающий на состояние выполнения потока, например, выполняется, ожидает или прекращен.</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Используется платформа Windows 98 или Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Данный процесс выполняется на удаленном компьютере.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.TotalProcessorTime\">\r\n      <summary>Возвращает общее количество времени, которое потратил поток на обработку процессором.</summary>\r\n      <returns>Объект <see cref=\"T:System.TimeSpan\" />, указывающий количество времени, на протяжении которого поток контролировал процессор.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Не удалось извлечь затраченное потоком время. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Используется платформа Windows 98 или Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Данный процесс выполняется на удаленном компьютере.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.UserProcessorTime\">\r\n      <summary>Возвращает количество времени, которое поток потратил на выполнение кода внутри приложения.</summary>\r\n      <returns>Объект <see cref=\"T:System.TimeSpan\" />, указывающий количество времени, которое поток потратил на выполнение кода внутри приложения, в отличие от выполнения в ядре операционной системы.</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Не удалось извлечь затраченное потоком время. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Используется платформа Windows 98 или Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Данный процесс выполняется на удаленном компьютере.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.WaitReason\">\r\n      <summary>Возвращает причину, по которой поток находится в состоянии ожидания.</summary>\r\n      <returns>Объект <see cref=\"T:System.Diagnostics.ThreadWaitReason\" />, представляющий причину нахождения потока в состоянии ожидания.</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">Поток не находится в состоянии ожидания. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">Используется платформа Windows 98 или Windows Millennium Edition. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">Данный процесс выполняется на удаленном компьютере.</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThreadCollection\">\r\n      <summary>Содержит строго типизированную коллекцию объектов <see cref=\"T:System.Diagnostics.ProcessThread\" />.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor\">\r\n      <summary>Инициализирует новый экземпляр класса <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> без использования связанных экземпляров <see cref=\"T:System.Diagnostics.ProcessThread\" />.</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])\">\r\n      <summary>Инициализирует новый экземпляр класса <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />, используя указанный массив экземпляров <see cref=\"T:System.Diagnostics.ProcessThread\" />.</summary>\r\n      <param name=\"processThreads\">Массив экземпляров <see cref=\"T:System.Diagnostics.ProcessThread\" />, с помощью которого инициализируется экземпляр <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />. </param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)\">\r\n      <summary>Добавляет поток процесса в коллекцию.</summary>\r\n      <returns>Отсчитываемый с нуля индекс потока в коллекции.</returns>\r\n      <param name=\"thread\">Поток, который требуется добавить в коллекцию. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)\">\r\n      <summary>Определяет, существует ли указанный поток процесса в коллекции.</summary>\r\n      <returns>Значение true, если поток присутствует в коллекции; в противном случае — значение false.</returns>\r\n      <param name=\"thread\">Экземпляр <see cref=\"T:System.Diagnostics.ProcessThread\" />, указывающий на искомый поток в коллекции. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)\">\r\n      <summary>Копирует в коллекцию массив экземпляров <see cref=\"T:System.Diagnostics.ProcessThread\" /> по указанному индексу.</summary>\r\n      <param name=\"array\">Массив экземпляров <see cref=\"T:System.Diagnostics.ProcessThread\" /> для добавления в коллекцию. </param>\r\n      <param name=\"index\">Место, куда добавляются новые экземпляры. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)\">\r\n      <summary>Предоставляет место указанного потока в коллекции.</summary>\r\n      <returns>Отсчитываемый с нуля индекс, который определяет место потока в коллекции <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" />.</returns>\r\n      <param name=\"thread\">Класс <see cref=\"T:System.Diagnostics.ProcessThread\" />, чей индекс извлекается. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)\">\r\n      <summary>Вставляет поток процесса в указанное место в коллекции.</summary>\r\n      <param name=\"index\">Отсчитываемый с нуля индекс, указывающий на место, в которое должен быть вставлен поток. </param>\r\n      <param name=\"thread\">Поток, вставляемый в коллекцию. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)\">\r\n      <summary>Получает индекс для итерационного перебора набора потоков процесса.</summary>\r\n      <returns>Класс <see cref=\"T:System.Diagnostics.ProcessThread\" />, который индексирует потоки в коллекции.</returns>\r\n      <param name=\"index\">Отсчитываемое с нуля значение потока в коллекции. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)\">\r\n      <summary>Удаляет поток процесса из коллекции.</summary>\r\n      <param name=\"thread\">Поток, который нужно удалить из коллекции. </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ThreadPriorityLevel\">\r\n      <summary>Задает уровень приоритета потока.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.AboveNormal\">\r\n      <summary>Задает приоритет на один уровень выше нормального для связанного <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.BelowNormal\">\r\n      <summary>Задает приоритет на один уровень ниже нормального для связанного <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Highest\">\r\n      <summary>Задает высший приоритет.Он на два уровня выше нормального приоритета для связанного <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Idle\">\r\n      <summary>Задает приоритет простоя.Это самое низкое из возможных значений приоритета всех потоков, независимо от значения связанного <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Lowest\">\r\n      <summary>Задает низший приоритет.Он на два уровня ниже нормального приоритета для связанного <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Normal\">\r\n      <summary>Задает нормальный приоритет для связанного <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.TimeCritical\">\r\n      <summary>Задает критичный по времени приоритет.Это самый высокий приоритет всех потоков, независимо от значения связанного <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" />.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadState\">\r\n      <summary>Задает текущее состояние выполнения потока.</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Initialized\">\r\n      <summary>Состояние, указывающее, что поток инициализирован, но еще не запущен.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Ready\">\r\n      <summary>Состояние, указывающее, что поток ожидает освобождения процессора.Поток готов к выполнению на следующем доступном процессоре.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Running\">\r\n      <summary>Состояние, указывающее, что поток в данный момент использует процессор.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Standby\">\r\n      <summary>Состояние, указывающее, что поток приступает к использованию процессора.В каждый момент времени в этом состоянии может быть только один поток.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Terminated\">\r\n      <summary>Состояние, указывающее, что выполнение потока завершено и он выполнил выход.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Transition\">\r\n      <summary>Состояние, указывающее, что поток ожидает ресурс (не процессор), необходимый для его выполнения.Например, он может ожидать считывания с диска стека его выполнения.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Unknown\">\r\n      <summary>Состояние потока неизвестно.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Wait\">\r\n      <summary>Состояние, указывающее, что поток не готов использовать процессор, поскольку ожидает завершения внешней операции или освобождения ресурса.Когда поток становится готовым, его выполнение планируется повторно.</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadWaitReason\">\r\n      <summary>Указывает причину, по которой поток находится в состоянии ожидания.</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairHigh\">\r\n      <summary>Поток ожидает старшую составляющую пары события.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairLow\">\r\n      <summary>Поток ожидает младшую составляющую пары события.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.ExecutionDelay\">\r\n      <summary>Выполнение потока отложено.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Executive\">\r\n      <summary>Поток ожидает планировщик.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.FreePage\">\r\n      <summary>Поток ожидает свободную страницу виртуальной памяти.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReceive\">\r\n      <summary>Поток ожидает поступления вызова локальной процедуры.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReply\">\r\n      <summary>Поток ожидает поступления ответа на вызов локальной процедуры.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageIn\">\r\n      <summary>Поток ожидает поступления страницы виртуальной памяти в память.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageOut\">\r\n      <summary>Поток ожидает записи страницы виртуальной памяти на диск.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Suspended\">\r\n      <summary>Выполнение потока приостановлено.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.SystemAllocation\">\r\n      <summary>Поток ожидает системных ресурсов.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Unknown\">\r\n      <summary>Причина ожидания потока неизвестна.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.UserRequest\">\r\n      <summary>Поток ожидает запроса пользователя.</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.VirtualMemory\">\r\n      <summary>Поток ожидает выделения системой виртуальной памяти.</summary>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<doc>\r\n  <assembly>\r\n    <name>System.Diagnostics.Process</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\">\r\n      <summary>[SECURITY CRITICAL] 为一个进程句柄提供托管包装。</summary>\r\n    </member>\r\n    <member name=\"M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)\">\r\n      <summary>[SECURITY CRITICAL] 初始化的新实例<see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" />从，该值指示是否在终结阶段释放该句柄指定的句柄的类。</summary>\r\n      <param name=\"existingHandle\">要包装的句柄。</param>\r\n      <param name=\"ownsHandle\">true若要可靠地让<see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" />在终结阶段 ； 释放该句柄否则为false。</param>\r\n    </member>\r\n    <member name=\"P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid\"></member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventArgs\">\r\n      <summary>为 <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> 和 <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> 事件提供数据。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.DataReceivedEventArgs.Data\">\r\n      <summary>获取写入到重定向 <see cref=\"T:System.Diagnostics.Process\" /> 输出流的字符行。</summary>\r\n      <returns>由关联的 <see cref=\"T:System.Diagnostics.Process\" /> 写入到其重定向 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 或 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 流中的行。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventHandler\">\r\n      <summary>表示将要处理 <see cref=\"T:System.Diagnostics.Process\" /> 的 <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> 事件或 <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> 事件的方法。</summary>\r\n      <param name=\"sender\">事件源。</param>\r\n      <param name=\"e\">包含事件数据的 <see cref=\"T:System.Diagnostics.DataReceivedEventArgs\" />。 </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.Process\">\r\n      <summary>提供对本地和远程进程的访问权限并使你能够启动和停止本地系统进程。若要浏览此类型的 .NET Framework 源代码，请参阅引用源。</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.#ctor\">\r\n      <summary>初始化 <see cref=\"T:System.Diagnostics.Process\" /> 类的新实例。</summary>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.BasePriority\">\r\n      <summary>获取关联进程的基本优先级。</summary>\r\n      <returns>基本优先级别，它从关联进程的 <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> 计算。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or- The process has not started, so there is no process ID. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginErrorReadLine\">\r\n      <summary>在应用程序的重定向 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 流上开始进行异步读取操作。</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginOutputReadLine\">\r\n      <summary>在应用程序的重定向 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 流上开始进行异步读取操作。</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelErrorRead\">\r\n      <summary>取消在应用程序的重定向 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 流上执行的异步读取操作。</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelOutputRead\">\r\n      <summary>取消在应用程序的重定向 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 流上执行的异步读取操作。</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose\"></member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose(System.Boolean)\">\r\n      <summary>释放此进程使用的所有资源。</summary>\r\n      <param name=\"disposing\">若要释放托管资源和非托管资源，则为 true；若仅释放非托管资源，则为 false。</param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.EnableRaisingEvents\">\r\n      <summary>获取或设置在进程终止时是否应激发 <see cref=\"E:System.Diagnostics.Process.Exited\" /> 事件。</summary>\r\n      <returns>如果关联的进程终止（通过退出或者调用 <see cref=\"M:System.Diagnostics.Process.Kill\" />）时应引发 <see cref=\"E:System.Diagnostics.Process.Exited\" /> 事件，则为 true；否则为 false。默认值为 false。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.EnterDebugMode\">\r\n      <summary>通过启用当前线程的本机属性 SeDebugPrivilege，将 <see cref=\"T:System.Diagnostics.Process\" /> 组件置于与以特殊模式运行的操作系统进程交互的状态。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.ErrorDataReceived\">\r\n      <summary>当应用程序写入其重定向 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 流中时发生。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitCode\">\r\n      <summary>获取关联进程终止时指定的值。</summary>\r\n      <returns>关联进程终止时指定的代码。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has not exited.-or- The process <see cref=\"P:System.Diagnostics.Process.Handle\" /> is not valid. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitCode\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.Exited\">\r\n      <summary>在进程退出时发生。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitTime\">\r\n      <summary>获取关联进程退出的时间。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.DateTime\" />，它指示关联进程终止的时间。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetCurrentProcess\">\r\n      <summary>获取新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件并将其与当前活动的进程关联。</summary>\r\n      <returns>与运行调用应用程序的进程资源关联的新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32)\">\r\n      <summary>返回新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件（给定本地计算机上某个进程的标识符）。</summary>\r\n      <returns>一个与 <paramref name=\"processId\" /> 参数标识的本地进程资源关联的 <see cref=\"T:System.Diagnostics.Process\" /> 组件。</returns>\r\n      <param name=\"processId\">进程资源的系统唯一标识符。</param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)\">\r\n      <summary>返回新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件（给定进程标识符和网络中计算机的名称）。</summary>\r\n      <returns>一个与 <paramref name=\"processId\" /> 参数标识的远程进程资源关联的 <see cref=\"T:System.Diagnostics.Process\" /> 组件。</returns>\r\n      <param name=\"processId\">进程资源的系统唯一标识符。</param>\r\n      <param name=\"machineName\">网络上计算机的名称。</param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.-or- The <paramref name=\"machineName\" /> parameter syntax is invalid.The name might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses\">\r\n      <summary>为本地计算机上的每个进程资源创建一个新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 类型的数组，它表示本地计算机上运行的所有进程资源。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses(System.String)\">\r\n      <summary>为指定计算机上的每个进程资源创建一个新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 类型的数组，表示指定计算机上运行的所有进程资源。</returns>\r\n      <param name=\"machineName\">从其中读取进程列表的计算机。</param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String)\">\r\n      <summary>创建新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件的数组，并将它们与本地计算机上共享指定的进程名称的所有进程资源关联。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 类型的数组，表示运行指定应用程序或文件的进程资源。</returns>\r\n      <param name=\"processName\">该进程的友好名称。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)\">\r\n      <summary>创建新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件的数组，并将它们与远程计算机上共享指定进程名称的所有进程资源关联。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 类型的数组，表示运行指定应用程序或文件的进程资源。</returns>\r\n      <param name=\"processName\">该进程的友好名称。</param>\r\n      <param name=\"machineName\">网络上计算机的名称。</param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.HasExited\">\r\n      <summary>获取指示关联进程是否已终止的值。</summary>\r\n      <returns>如果 <see cref=\"T:System.Diagnostics.Process\" /> 组件引用的操作系统进程已终止，则为 true；否则为 false。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with the object. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The exit code for the process could not be retrieved. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.HasExited\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Id\">\r\n      <summary>获取关联进程的唯一标识符。</summary>\r\n      <returns>此 <see cref=\"T:System.Diagnostics.Process\" /> 实例引用的、由系统生成的进程的唯一标识符。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process's <see cref=\"P:System.Diagnostics.Process.Id\" /> property has not been set.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Kill\">\r\n      <summary>立即停止关联的进程。</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to call <see cref=\"M:System.Diagnostics.Process.Kill\" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has already exited. -or-There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.LeaveDebugMode\">\r\n      <summary>使 <see cref=\"T:System.Diagnostics.Process\" /> 组件离开允许它与以特殊模式运行的操作系统进程交互的状态。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MachineName\">\r\n      <summary>获取关联进程正在其上运行的计算机的名称。</summary>\r\n      <returns>关联进程正在其上运行的计算机的名称。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MainModule\">\r\n      <summary>获取关联进程的主模块。</summary>\r\n      <returns>用于启动进程的 <see cref=\"T:System.Diagnostics.ProcessModule\" />。</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MainModule\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A 32-bit process is trying to access the modules of a 64-bit process.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MaxWorkingSet\">\r\n      <summary>获取或设置关联进程的允许的最大工作集大小。</summary>\r\n      <returns>内存中允许的进程的最大工作集大小（以字节为单位）。</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MaxWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MinWorkingSet\">\r\n      <summary>获取或设置关联进程的允许的最小工作集大小。</summary>\r\n      <returns>内存中进程所需的最小工作集大小（以字节为单位）。</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MinWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Modules\">\r\n      <summary>获取已由关联进程加载的模块。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> 类型的数组，它表示已由关联进程加载的模块。</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for either the system process or the idle process.These processes do not have modules.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.NonpagedSystemMemorySize64\">\r\n      <summary>获取为关联的进程分配的非分页系统内存量。</summary>\r\n      <returns>为关联的进程分配的、不能写入虚拟内存分页文件中的系统内存量（以字节为单位）。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.OnExited\">\r\n      <summary>引发 <see cref=\"E:System.Diagnostics.Process.Exited\" /> 事件。</summary>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.OutputDataReceived\">\r\n      <summary>每次应用程序向其重定向 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 流中写入行时发生。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedMemorySize64\">\r\n      <summary>获取为关联的进程分配的分页内存量。</summary>\r\n      <returns>在虚拟内存分页文件中为关联进程分配的内存量（以字节为单位）。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedSystemMemorySize64\">\r\n      <summary>获取为关联进程分配的可分页系统内存量。</summary>\r\n      <returns>为可写入虚拟内存分页文件的关联内存分配的系统内存量（以字节为单位）。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakPagedMemorySize64\">\r\n      <summary>获取关联的进程使用的虚拟内存分页文件中的最大内存量。</summary>\r\n      <returns>从启动关联的进程以来在为虚拟内存分页文件中关联进程分配的最大内存量（以字节为单位）。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakVirtualMemorySize64\">\r\n      <summary>获取关联进程使用的最大虚拟内存量。</summary>\r\n      <returns>从关联进程启动以来为关联进程分配的最大虚拟内存量（以字节为单位）。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakWorkingSet64\">\r\n      <summary>获取关联进程使用的最大物理内存量。</summary>\r\n      <returns>从启动关联进程以来为关联进程分配的最大物理内存量（以字节为单位）。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityBoostEnabled\">\r\n      <summary>获取或设置一个值，该值指示主窗口拥有焦点时是否应由操作系统暂时提升关联进程优先级。</summary>\r\n      <returns>如果进程离开等待状态时应动态提升进程优先级别，则为 true；否则为 false。默认值为 false。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Priority boost information could not be retrieved from the associated process resource. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityBoostEnabled\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityClass\">\r\n      <summary>获取或设置关联进程的总体优先级类别。</summary>\r\n      <returns>关联进程的优先级别类别，可从该类别计算进程的 <see cref=\"P:System.Diagnostics.Process.BasePriority\" />。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">You have set the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>\r\n      <exception cref=\"T:System.ComponentModel.InvalidEnumArgumentException\">Priority class cannot be set because it does not use a valid value, as defined in the <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> enumeration.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivateMemorySize64\">\r\n      <summary>获取为关联进程分配的专用内存量。</summary>\r\n      <returns>为关联进程分配的不能与其他进程共享的内存量（以字节为单位）。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\">\r\n      <summary>获取此进程的特权处理器时间。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" />，它指示进程在操作系统内核中运行代码所用的时间。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessName\">\r\n      <summary>获取该进程的名称。</summary>\r\n      <returns>系统用以向用户标识该进程的名称。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process does not have an identifier, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" />.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is not on this computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessorAffinity\">\r\n      <summary>获取或设置一些处理器，此进程中的线程可以按计划在这些处理器上运行。</summary>\r\n      <returns>位掩码，表示关联进程内的线程可以在其上运行的处理器。默认值取决于计算机上的处理器数。默认值为 2 n -1，其中 n 是处理器数。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> was not available.-or- The process has exited. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Refresh\">\r\n      <summary>放弃已缓存到进程组件的关联仅存的任何相关信息。</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SafeHandle\">\r\n      <summary>获取此进程的本机句柄。</summary>\r\n      <returns>此进程的本机句柄。</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SessionId\">\r\n      <summary>获取关联进程的终端服务会话标识符。</summary>\r\n      <returns>关联进程的终端服务会话标识符。</returns>\r\n      <exception cref=\"T:System.NullReferenceException\">There is no session associated with this process.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The <see cref=\"P:System.Diagnostics.Process.SessionId\" /> property is not supported on Windows 98.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardError\">\r\n      <summary>获取用于读取应用程序错误输出的流。</summary>\r\n      <returns>一个 <see cref=\"T:System.IO.StreamReader\" />，可用于读取应用程序的标准错误流。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginErrorReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardInput\">\r\n      <summary>获取用于写入应用程序输入的流。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IO.StreamWriter\" />，可用于写入应用程序的标准输入流。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> stream has not been defined because <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" /> is set to false. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardOutput\">\r\n      <summary>获取用于读取应用程序文本输出的流。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IO.StreamReader\" />，可用于读取应用程序的标准输出流。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginOutputReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start\">\r\n      <summary>启动（或重用）此 <see cref=\"T:System.Diagnostics.Process\" /> 组件的 <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> 属性指定的进程资源，并将其与该组件关联。</summary>\r\n      <returns>如果启动了进程资源，则为 true；如果没有启动新的进程资源（例如，如果重用了现有进程），则为 false。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <see cref=\"T:System.Diagnostics.Process\" /> component's <see cref=\"P:System.Diagnostics.Process.StartInfo\" />.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> member of the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> property is true while <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is true. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)\">\r\n      <summary>启动由包含进程启动信息（例如，要启动的进程的文件名）的参数指定的进程资源，并将该资源与新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件关联。</summary>\r\n      <returns>一个与进程资源关联的新 <see cref=\"T:System.Diagnostics.Process\" />，如果未启动进程资源，则为 null。请注意，随着同一进程已在运行的实例启动的新进程将独立于其他进程。此外，启动可能返回一个 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 属性已设置为 true 的非 null 进程。在这种情况下，启动的进程可能已激活现有实例自身，然后退出。</returns>\r\n      <param name=\"startInfo\">\r\n        <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />，包含用于启动进程的信息（包括文件名和任何命令行参数）。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is also true.-or-The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UserName\" /> property is not null or empty or the <see cref=\"P:System.Diagnostics.ProcessStartInfo.Password\" /> property is not null.</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"startInfo\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The file specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property could not be found.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String)\">\r\n      <summary>通过指定文档或应用程序文件的名称来启动进程资源，并将资源与新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件关联。</summary>\r\n      <returns>一个与进程资源关联的新 <see cref=\"T:System.Diagnostics.Process\" />，如果未启动进程资源，则为 null。请注意，随着同一进程已在运行的实例启动的新进程将独立于其他进程。此外，启动可能返回一个 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 属性已设置为 true 的非 null 进程。在这种情况下，启动的进程可能已激活现有实例自身，然后退出。</returns>\r\n      <param name=\"fileName\">要在进程中运行的文档或应用程序文件的名称。</param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String)\">\r\n      <summary>通过指定应用程序的名称和一组命令行参数来启动一个进程资源，并将该资源与新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件相关联。</summary>\r\n      <returns>一个与进程资源关联的新 <see cref=\"T:System.Diagnostics.Process\" />，如果未启动进程资源，则为 null。请注意，随着同一进程已在运行的实例启动的新进程将独立于其他进程。此外，启动可能返回一个 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 属性已设置为 true 的非 null 进程。在这种情况下，启动的进程可能已激活现有实例自身，然后退出。</returns>\r\n      <param name=\"fileName\">要在进程中运行的应用程序文件的名称。</param>\r\n      <param name=\"arguments\">启动该进程时传递的命令行参数。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <paramref name=\"fileName\" /> or <paramref name=\"arguments\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>通过指定应用程序的名称、用户名、密码和域来启动一个进程资源，并将该资源与新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件关联起来。</summary>\r\n      <returns>一个与进程资源关联的新 <see cref=\"T:System.Diagnostics.Process\" />，如果未启动进程资源，则为 null。请注意，随着同一进程已在运行的实例启动的新进程将独立于其他进程。此外，启动可能返回一个 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 属性已设置为 true 的非 null 进程。在这种情况下，启动的进程可能已激活现有实例自身，然后退出。</returns>\r\n      <param name=\"fileName\">要在进程中运行的应用程序文件的名称。</param>\r\n      <param name=\"userName\">启动进程时使用的用户名。</param>\r\n      <param name=\"password\">一个 <see cref=\"T:System.Security.SecureString\" />，它包含启动进程时要使用的密码。</param>\r\n      <param name=\"domain\">启动进程时要使用的域。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>通过指定应用程序的名称、一组命令行参数、用户名、密码和域来启动一个进程资源，并将该资源与新的 <see cref=\"T:System.Diagnostics.Process\" /> 组件关联起来。</summary>\r\n      <returns>一个与进程资源关联的新 <see cref=\"T:System.Diagnostics.Process\" />，如果未启动进程资源，则为 null。请注意，随着同一进程已在运行的实例启动的新进程将独立于其他进程。此外，启动可能返回一个 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 属性已设置为 true 的非 null 进程。在这种情况下，启动的进程可能已激活现有实例自身，然后退出。</returns>\r\n      <param name=\"fileName\">要在进程中运行的应用程序文件的名称。</param>\r\n      <param name=\"arguments\">启动该进程时传递的命令行参数。</param>\r\n      <param name=\"userName\">启动进程时使用的用户名。</param>\r\n      <param name=\"password\">一个 <see cref=\"T:System.Security.SecureString\" />，它包含启动进程时要使用的密码。</param>\r\n      <param name=\"domain\">启动进程时要使用的域。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartInfo\">\r\n      <summary>获取或设置要传递给 <see cref=\"T:System.Diagnostics.Process\" /> 的 <see cref=\"M:System.Diagnostics.Process.Start\" /> 方法的属性。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />，它表示启动该进程时要使用的数据。这些参数包括用于启动该进程的可执行文件或文档的名称。</returns>\r\n      <exception cref=\"T:System.ArgumentNullException\">The value that specifies the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> is null. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartTime\">\r\n      <summary>获取关联进程启动的时间。</summary>\r\n      <returns>指示进程启动的时间的对象。如果进程未运行，将会引发异常。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.StartTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or-The process has not been started.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred in the call to the Windows function.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Threads\">\r\n      <summary>获取在关联进程中运行的一组线程。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> 类型的数组，它表示当前在关联进程中运行的操作系统线程。</returns>\r\n      <exception cref=\"T:System.SystemException\">The process does not have an <see cref=\"P:System.Diagnostics.Process.Id\" />, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" /> instance.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.TotalProcessorTime\">\r\n      <summary>获取此进程的总的处理器时间。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" />，它指示关联进程使用 CPU 的时间。此值是 <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> 和 <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> 的和。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.TotalProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.UserProcessorTime\">\r\n      <summary>获取此进程的用户处理器时间。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" />，它指示关联进程在该进程的应用程序部分内（而不是在操作系统内核中）运行代码所用的时间。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.VirtualMemorySize64\">\r\n      <summary>获取为关联进程分配的虚拟内存量。</summary>\r\n      <returns>为关联进程分配的虚拟内存量（以字节为单位）。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit\">\r\n      <summary>指示 <see cref=\"T:System.Diagnostics.Process\" /> 组件无限期地等待关联进程退出。</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\">\r\n      <summary>指示 <see cref=\"T:System.Diagnostics.Process\" /> 组件在指定的毫秒数内等待关联进程退出。</summary>\r\n      <returns>如果关联进程已退出，则为 true；否则为 false。</returns>\r\n      <param name=\"milliseconds\">等待关联进程退出的时间（以毫秒为单位）。最大值为 32 位整数的最大可能值，这对于操作系统而言表示无限大。</param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.WorkingSet64\">\r\n      <summary>获取为关联进程分配的物理内存量。</summary>\r\n      <returns>为关的进程分配的物理内存量（以字节为单位）。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModule\">\r\n      <summary>表示加载到特定进程中的 .dll 或 .exe 文件。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.BaseAddress\">\r\n      <summary>获取加载模块的内存地址。</summary>\r\n      <returns>模块的加载地址。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.EntryPointAddress\">\r\n      <summary>获取在系统加载和运行模块时运行的函数的内存地址。</summary>\r\n      <returns>模块的入口点。</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.FileName\">\r\n      <summary>获取模块的完整路径。</summary>\r\n      <returns>定义模块位置的完全限定路径。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleMemorySize\">\r\n      <summary>获取加载模块所需内存量。</summary>\r\n      <returns>模块占用的内存大小（以字节为单位）。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleName\">\r\n      <summary>获取进程模块的名称。</summary>\r\n      <returns>模块的名称。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModule.ToString\">\r\n      <summary>将模块的名称转换为字符串。</summary>\r\n      <returns>\r\n        <see cref=\"P:System.Diagnostics.ProcessModule.ModuleName\" /> 属性的值。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModuleCollection\">\r\n      <summary>提供 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 对象的强类型集合。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor\">\r\n      <summary>在没有关联的 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 实例的情况下，初始化 <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 类的新实例。</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])\">\r\n      <summary>使用指定的 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 实例数组来初始化 <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 类的新实例。</summary>\r\n      <param name=\"processModules\">用来初始化该 <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 实例的 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 实例的数组。</param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)\">\r\n      <summary>确定集合中是否存在指定的进程模块。</summary>\r\n      <returns>如果集合中存在该模块，则为 true；否则为 false。</returns>\r\n      <param name=\"module\">一个 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 实例，它指示要该集合中查找的模块。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)\">\r\n      <summary>将 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 实例的数组复制到集合的指定索引处。</summary>\r\n      <param name=\"array\">要添加到集合的 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 实例的数组。</param>\r\n      <param name=\"index\">要添加新实例的位置。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)\">\r\n      <summary>提供指定模块在集合中的位置。</summary>\r\n      <returns>从零开始的索引，它定义模块在 <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 中的位置。</returns>\r\n      <param name=\"module\">检索其索引的 <see cref=\"T:System.Diagnostics.ProcessModule\" />。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)\">\r\n      <summary>获取用于循环访问进程模块集的索引。</summary>\r\n      <returns>一个 <see cref=\"T:System.Diagnostics.ProcessModule\" />，它对集合中的模块进行索引</returns>\r\n      <param name=\"index\">集合中该模块的从零开始的索引值。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ProcessPriorityClass\">\r\n      <summary>指示系统将与进程关联的优先级。此值与进程的每个线程的优先级值一起来确定每个线程的基本优先级别。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.AboveNormal\">\r\n      <summary>指定进程的优先级在 Normal 之上，但在 <see cref=\"F:System.Diagnostics.ProcessPriorityClass.High\" /> 之下。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.BelowNormal\">\r\n      <summary>指定进程的优先级在 Idle 之上，但在 Normal 之下。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.High\">\r\n      <summary>指定进程执行必须立即执行的时间关键任务，如 Task List 对话框，不管操作系统的负荷如何，用户调用该对话框后均必须迅速响应。该进程的线程优先于普通或空闲优先级类进程的线程。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Idle\">\r\n      <summary>指定此进程的线程只能在系统空闲时运行，如屏幕保护程序。更高优先级类中运行的任何进程的线程都优先于此进程的线程。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Normal\">\r\n      <summary>指定进程没有特殊的安排需求。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.RealTime\">\r\n      <summary>指定进程拥有可能的最高优先级。</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessStartInfo\">\r\n      <summary>指定启动进程时使用的一组值。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor\">\r\n      <summary>初始化 <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> 类的新实例，而不指定启动进程时使用的文件名。</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)\">\r\n      <summary>初始化 <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> 类的新实例，并指定启动进程时使用的诸如应用程序或文档的文件名。</summary>\r\n      <param name=\"fileName\">启动进程时使用的应用程序或文档。</param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)\">\r\n      <summary>初始化 <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> 类的新实例，指定启动该进程时使用的应用程序文件名以及要传递给该应用程序的一组命令行参数。</summary>\r\n      <param name=\"fileName\">启动进程时使用的应用程序。</param>\r\n      <param name=\"arguments\">进程启动时要传递给应用程序的命令行参数。</param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Arguments\">\r\n      <summary>获取或设置启动应用程序时要使用的一组命令行参数。</summary>\r\n      <returns>单个字符串包含要传递给在 <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> 属性中指定的目标应用程序的参数。默认值为空字符串 (\"\")。在 Windows Vista 和早期的 Windows 操作系统上，添加至进程全径的长度的参数长度必须小于 2080。在 Windows 7 和更高版本，此长度必须小于 32699。参数由目标应用程序进行分析和解释，因此必须与该应用程序的预期保持一致。对于以下示例中所演示的 .NET 的应用程序，空格被解释为多个参数之间的分隔符。包含空格的单个参数必须用引号引起来，但这些引号不会传递到目标应用程序。在包括引号在内的最终已分析的参数中，每个标记均会进行三重转义。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.CreateNoWindow\">\r\n      <summary>获取或设置指示是否在新窗口中启动该进程的值。</summary>\r\n      <returns>如果应启动该进程而不创建包含它的新窗口，则为 true；否则为 false。默认值为 false。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Domain\">\r\n      <summary>获取或设置一个值，该值标识要在启动进程时使用的域。</summary>\r\n      <returns>要在启动进程时使用的 Active Directory 域。域属性主要与使用 Active Directory 的企业级环境内的用户相关。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Environment\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.FileName\">\r\n      <summary>获取或设置要启动的应用程序或文档。</summary>\r\n      <returns>要启动的应用程序的名称或某文件类型的文档的名称，该文件类型与应用程序关联并且拥有可用的默认打开操作。默认值为空字符串 (\"\")。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.LoadUserProfile\">\r\n      <summary>获取或设置一个值，该值指示是否从注册表加载 Windows 用户配置文件。</summary>\r\n      <returns>如果应加载 Windows 用户概况，则为 true；否则为 false。默认值为 false。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Password\">\r\n      <summary>获取或设置一个安全字符串，其中包含要在启动进程时使用的用户密码。</summary>\r\n      <returns>启动进程时使用的用户密码。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\">\r\n      <summary>获取或设置一个值，该值指示是否将应用程序的错误输出写入 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 流中。</summary>\r\n      <returns>如果错误输出应写入 <see cref=\"P:System.Diagnostics.Process.StandardError\" />，则为 true；否则为 false。默认值为 false。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\">\r\n      <summary>获取或设置一个值，该值指示应用程序的输入是否从 <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> 流中读取。</summary>\r\n      <returns>如果应从 <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> 读取输入，则为 true；否则为 false。默认值为 false。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\">\r\n      <summary>获取或设置一个值，该值指示是否将应用程序的输出写入 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 流中。</summary>\r\n      <returns>如果输出应写入 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />，则为 true；否则为 false。默认值为 false。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding\">\r\n      <summary>获取或设置错误输出的首选编码。</summary>\r\n      <returns>一个对象，表示错误输出的首选编码。默认值为 null。</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding\">\r\n      <summary>获取或设置标准输出的首选编码。</summary>\r\n      <returns>一个对象，表示标准输出的首选编码。默认值为 null。</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UserName\">\r\n      <summary>获取或设置在启动进程时使用的用户名。</summary>\r\n      <returns>启动进程时使用的用户名。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\">\r\n      <summary>获取或设置一个值，该值指示是否使用操作系统 shell 启动进程。</summary>\r\n      <returns>如果应在启动进程时使用 shell，则为 true；如果直接从可执行文件创建进程，则为 false。默认值为 true。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.WorkingDirectory\">\r\n      <summary>当 <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> 属性为 false 时，将获取或设置要启动的进程的工作目录。当 <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> 为 true 时，获取或设置包含要启动的进程的目录。</summary>\r\n      <returns>当 <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> 为 true 时，是包含要启动的进程的目录的完全限定名。当 <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> 属性为 false 时，则为要启动的进程的工作目录。默认值为空字符串 (\"\")。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThread\">\r\n      <summary>表示操作系统进程线程。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.BasePriority\">\r\n      <summary>获取线程的基本优先级。</summary>\r\n      <returns>线程的基本优先级，它由操作系统通过将进程优先级类与关联线程的优先级别相结合进行计算。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.CurrentPriority\">\r\n      <summary>获取线程的当前优先级。</summary>\r\n      <returns>线程的当前优先级，可根据操作系统如何安排该线程而偏离基本优先级。可为活动线程暂时提升优先级。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.Id\">\r\n      <summary>获取线程的唯一标识符。</summary>\r\n      <returns>与指定线程关联的唯一标识符。</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.IdealProcessor\">\r\n      <summary>设置让此线程在其上运行的首选处理器。</summary>\r\n      <returns>线程的首选处理器，用来在系统安排线程时确定在哪个处理器上运行线程。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">系统未能设置线程在指定的处理器上启动。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台为 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">进程在远程计算机上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityBoostEnabled\">\r\n      <summary>获取或设置一个值，该值指示每当关联线程的进程主窗口接收焦点时，操作系统是否暂时提升该线程的优先级。</summary>\r\n      <returns>若要在用户与进程的界面交互时提升线程的优先级，则为 true；否则为 false。默认值为 false。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">未能检索到优先级提升信息。- 或 -未能设置优先级提升信息。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台为 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">进程在远程计算机上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityLevel\">\r\n      <summary>获取或设置线程的优先级别。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ThreadPriorityLevel\" /> 值之一，它指定限制线程优先级的范围。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">未能检索到线程优先级别信息。- 或 -未能设置线程优先级别。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台为 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">进程在远程计算机上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime\">\r\n      <summary>获取线程在操作系统内核中运行代码所用的时间。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" />，它指示线程在操作系统内核中运行代码所用的时间。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">未能检索到线程时间。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台为 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">进程在远程计算机上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ProcessorAffinity\">\r\n      <summary>设置关联线程可以在其上运行的处理器。</summary>\r\n      <returns>指向一组位的 <see cref=\"T:System.IntPtr\" />，每个位表示该线程可在其上运行的一个处理器。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">未能设置处理器关联。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台为 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">进程在远程计算机上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThread.ResetIdealProcessor\">\r\n      <summary>重置此线程的理想处理器，以指示没有单个的理想处理器。换言之，任何处理器都是理想处理器。</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">未能重置理想处理器。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台为 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">进程在远程计算机上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartAddress\">\r\n      <summary>获取操作系统调用的、启动此线程的函数的内存地址。</summary>\r\n      <returns>线程的起始地址，它指向线程执行的应用程序定义的函数。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台为 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">进程在远程计算机上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartTime\">\r\n      <summary>获取操作系统启动该线程的时间。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.DateTime\" />，它表示操作系统启动该线程时系统上的时间。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">未能检索到线程时间。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台为 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">进程在远程计算机上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ThreadState\">\r\n      <summary>获取此线程的当前状态。</summary>\r\n      <returns>指示线程执行情况的 <see cref=\"T:System.Diagnostics.ThreadState\" />（例如运行、等待或终止）。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台为 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">进程在远程计算机上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.TotalProcessorTime\">\r\n      <summary>获取此线程使用处理器的时间总量。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" />，它指示线程控制处理器的时间。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">未能检索到线程时间。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台为 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">进程在远程计算机上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.UserProcessorTime\">\r\n      <summary>获取关联的线程在应用程序内运行代码所用的时间。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" />，它指示线程在应用程序内（相对于在操作系统内核中）运行代码所用的时间。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">未能检索到线程时间。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台为 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">进程在远程计算机上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.WaitReason\">\r\n      <summary>获取线程等待的原因。</summary>\r\n      <returns>一个 <see cref=\"T:System.Diagnostics.ThreadWaitReason\" />，表示线程处于等待状态的原因。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">线程不在等待状态。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台为 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">进程在远程计算机上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThreadCollection\">\r\n      <summary>提供 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 对象的强类型集合。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor\">\r\n      <summary>在没有关联的 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 实例的情况下，初始化 <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 类的新实例。</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])\">\r\n      <summary>使用指定的 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 实例数组来初始化 <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 类的新实例。</summary>\r\n      <param name=\"processThreads\">用来初始化该 <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 实例的 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 实例的数组。</param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)\">\r\n      <summary>将进程线程附加到集合。</summary>\r\n      <returns>集合中线程的从零开始的索引。</returns>\r\n      <param name=\"thread\">要添加到集合中的线程。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)\">\r\n      <summary>确定集合中是否存在指定的进程线程。</summary>\r\n      <returns>如果集合中存在该线程，则为 true；否则为 false。</returns>\r\n      <param name=\"thread\">一个 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 实例，它指示要在该集合中查找的线程。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)\">\r\n      <summary>将 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 实例的数组复制到集合的指定索引处。</summary>\r\n      <param name=\"array\">要添加到集合的 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 实例的数组。</param>\r\n      <param name=\"index\">要添加新实例的位置。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)\">\r\n      <summary>提供指定线程在集合中的位置。</summary>\r\n      <returns>从零开始的索引，它定义线程在 <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 中的位置。</returns>\r\n      <param name=\"thread\">检索其索引的 <see cref=\"T:System.Diagnostics.ProcessThread\" />。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)\">\r\n      <summary>在集合中的指定位置插入进程线程。</summary>\r\n      <param name=\"index\">从零开始的索引，指示插入线程的位置。</param>\r\n      <param name=\"thread\">要插入到集合中的线程。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)\">\r\n      <summary>获取用于循环访问进程线程集的索引。</summary>\r\n      <returns>一个 <see cref=\"T:System.Diagnostics.ProcessThread\" />，它对集合中的线程进行索引。</returns>\r\n      <param name=\"index\">集合中该值的从零开始的索引。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)\">\r\n      <summary>从集合中删除进程线程。</summary>\r\n      <param name=\"thread\">要从该集合中移除的线程。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ThreadPriorityLevel\">\r\n      <summary>指定线程的优先级别。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.AboveNormal\">\r\n      <summary>指定的优先级比关联的 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的普通优先级高一级。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.BelowNormal\">\r\n      <summary>指定的优先级比关联的 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的普通优先级低一级。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Highest\">\r\n      <summary>指定最高优先级。这比关联的 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的普通优先级高两级。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Idle\">\r\n      <summary>指定空闲优先级。它是所有线程的可能的最低优先级值，与关联的 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的值无关。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Lowest\">\r\n      <summary>指定最低优先级。这比关联的 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的普通优先级低两级。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Normal\">\r\n      <summary>指定关联的 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的普通优先级。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.TimeCritical\">\r\n      <summary>指定时间关键优先级。这是所有线程中的最高优先级，与关联的 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的值无关。</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadState\">\r\n      <summary>指定线程的当前执行状态。</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Initialized\">\r\n      <summary>此状态指示线程已初始化但尚未启动。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Ready\">\r\n      <summary>此状态指示线程因无可用的处理器而等待使用处理器。线程准备在下一个可用的处理器上运行。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Running\">\r\n      <summary>此状态指示线程当前正在使用处理器。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Standby\">\r\n      <summary>此状态指示线程将要使用处理器。一次只能有一个线程处于此状态。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Terminated\">\r\n      <summary>此状态指示线程已完成执行并已退出。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Transition\">\r\n      <summary>此状态指示线程在可以执行前等待处理器之外的资源。例如，它可能正在等待其执行堆栈从磁盘中分页。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Unknown\">\r\n      <summary>线程的状态未知。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Wait\">\r\n      <summary>此状态指示线程尚未准备好使用处理器，因为它正在等待外围操作完成或等待资源释放。当线程就绪后，将对其进行重排。</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadWaitReason\">\r\n      <summary>指定线程等待的原因。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairHigh\">\r\n      <summary>线程正在等待事件对高。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairLow\">\r\n      <summary>线程正在等待事件对低。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.ExecutionDelay\">\r\n      <summary>线程执行延迟。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Executive\">\r\n      <summary>线程正在等待计划程序。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.FreePage\">\r\n      <summary>线程正在等待可用的虚拟内存页。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReceive\">\r\n      <summary>线程正在等待本地过程调用到达。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReply\">\r\n      <summary>线程正在等待对本地过程调用的回复到达。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageIn\">\r\n      <summary>线程正在等待虚拟内存页到达内存。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageOut\">\r\n      <summary>线程正在等待虚拟内存页写入磁盘。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Suspended\">\r\n      <summary>线程执行暂停。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.SystemAllocation\">\r\n      <summary>线程正在等待系统分配。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Unknown\">\r\n      <summary>线程正在因未知原因而等待。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.UserRequest\">\r\n      <summary>线程正在等待用户请求。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.VirtualMemory\">\r\n      <summary>线程正在等待系统分配虚拟内存。</summary>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<doc>\r\n  <assembly>\r\n    <name>System.Diagnostics.Process</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\">\r\n      <summary>[安全性關鍵] 提供處理序控制代碼的 Managed 包裝函式。</summary>\r\n    </member>\r\n    <member name=\"M:Microsoft.Win32.SafeHandles.SafeProcessHandle.#ctor(System.IntPtr,System.Boolean)\">\r\n      <summary>[安全性關鍵] 初始化的新執行個體<see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" />從指定的控制代碼，指出是否要在完成階段期間釋放控制代碼的類別。</summary>\r\n      <param name=\"existingHandle\">要被包裝的控制代碼。</param>\r\n      <param name=\"ownsHandle\">true若要可靠地讓<see cref=\"T:Microsoft.Win32.SafeHandles.SafeProcessHandle\" />放開最終處理階段中，控點否則， false。</param>\r\n    </member>\r\n    <member name=\"P:Microsoft.Win32.SafeHandles.SafeProcessHandle.IsInvalid\"></member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventArgs\">\r\n      <summary>為 <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> 和 <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> 事件提供資料。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.DataReceivedEventArgs.Data\">\r\n      <summary>取得已寫入至重新導向 <see cref=\"T:System.Diagnostics.Process\" /> 輸出資料流的字元行。</summary>\r\n      <returns>由關聯的 <see cref=\"T:System.Diagnostics.Process\" /> 寫入至其重新導向的 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 或 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 資料流的字行。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.DataReceivedEventHandler\">\r\n      <summary>表示將處理 <see cref=\"T:System.Diagnostics.Process\" /> 的 <see cref=\"E:System.Diagnostics.Process.OutputDataReceived\" /> 事件或 <see cref=\"E:System.Diagnostics.Process.ErrorDataReceived\" /> 事件的方法。</summary>\r\n      <param name=\"sender\">事件的來源。</param>\r\n      <param name=\"e\">包含事件資料的 <see cref=\"T:System.Diagnostics.DataReceivedEventArgs\" />。 </param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.Process\">\r\n      <summary>提供對本機和遠端處理序的存取，並讓您能夠啟動和停止本機系統處理序。若要瀏覽此類型的 .NET Framework 原始程式碼，請參閱參考來源。</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.#ctor\">\r\n      <summary>初始化 <see cref=\"T:System.Diagnostics.Process\" /> 類別的新執行個體。</summary>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.BasePriority\">\r\n      <summary>取得相關處理序的基礎優先權 (Base Priority)。</summary>\r\n      <returns>基礎優先權，它是從相關聯處理序的 <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> 計算出來的。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or- The process has not started, so there is no process ID. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginErrorReadLine\">\r\n      <summary>在應用程式的重新導向 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 資料流上開始非同步讀取作業。</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.BeginOutputReadLine\">\r\n      <summary>在應用程式的重新導向 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 資料流上開始非同步讀取作業。</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> property is false.- or - An asynchronous read operation is already in progress on the <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been used by a synchronous read operation. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelErrorRead\">\r\n      <summary>在應用程式的重新導向 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 資料流上取消非同步讀取作業。</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.CancelOutputRead\">\r\n      <summary>在應用程式的重新導向 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 資料流上取消非同步讀取作業。</summary>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream is not enabled for asynchronous read operations. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose\"></member>\r\n    <member name=\"M:System.Diagnostics.Process.Dispose(System.Boolean)\">\r\n      <summary>釋放這個處理序使用的所有資源。</summary>\r\n      <param name=\"disposing\">true 表示釋放 Managed 和 Unmanaged 資源，false 則表示只釋放 Unmanaged 資源。</param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.EnableRaisingEvents\">\r\n      <summary>取得或設定是否應該在處理序終止時引發 <see cref=\"E:System.Diagnostics.Process.Exited\" /> 事件。</summary>\r\n      <returns>如果應該在相關聯處理序終止時引發 <see cref=\"E:System.Diagnostics.Process.Exited\" /> 事件 (經由結束或呼叫 <see cref=\"M:System.Diagnostics.Process.Kill\" />)，則為 true，否則為 false。預設為 false。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.EnterDebugMode\">\r\n      <summary>啟用目前執行緒上的原生屬性 SeDebugPrivilege，將 <see cref=\"T:System.Diagnostics.Process\" /> 元件置於某種狀態，以便與使用特殊模式執行的作業系統處理序互動。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.ErrorDataReceived\">\r\n      <summary>發生於應用程式寫入至其重新導向的 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 資料流時。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitCode\">\r\n      <summary>取得相關處理序終止時指定的值。</summary>\r\n      <returns>相關處理序終止時指定的程式碼。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has not exited.-or- The process <see cref=\"P:System.Diagnostics.Process.Handle\" /> is not valid. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitCode\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.Exited\">\r\n      <summary>發生於處理序結束時。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ExitTime\">\r\n      <summary>取得相關的處理序結束的時間。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.DateTime\" />，表示相關聯處理序何時終止。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.ExitTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetCurrentProcess\">\r\n      <summary>取得新的 <see cref=\"T:System.Diagnostics.Process\" /> 元件，並將其與目前現用處理序相關聯。</summary>\r\n      <returns>新的 <see cref=\"T:System.Diagnostics.Process\" /> 元件，與正在執行呼叫應用程式的處理序資源相關聯。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32)\">\r\n      <summary>傳回新的 <see cref=\"T:System.Diagnostics.Process\" /> 元件，需指定本機電腦上的處理序識別項。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 元件，與 <paramref name=\"processId\" /> 參數所識別的本機處理序資源相關聯。</returns>\r\n      <param name=\"processId\">處理序資源的系統唯一識別項。</param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessById(System.Int32,System.String)\">\r\n      <summary>傳回新的 <see cref=\"T:System.Diagnostics.Process\" /> 元件，需指定網路上電腦的處理序識別項和名稱。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 元件，與 <paramref name=\"processId\" /> 參數所識別的遠端處理序資源相關聯。</returns>\r\n      <param name=\"processId\">處理序資源的系統唯一識別項。</param>\r\n      <param name=\"machineName\">網路上的電腦名稱。</param>\r\n      <exception cref=\"T:System.ArgumentException\">The process specified by the <paramref name=\"processId\" /> parameter is not running.The identifier might be expired.-or- The <paramref name=\"machineName\" /> parameter syntax is invalid.The name might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process was not started by this object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses\">\r\n      <summary>為本機電腦上的每個處理序資源建立新的 <see cref=\"T:System.Diagnostics.Process\" /> 元件。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 類型的陣列，代表正在本機電腦上執行的所有處理序資源。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcesses(System.String)\">\r\n      <summary>為指定電腦上的每個處理序資源建立新的 <see cref=\"T:System.Diagnostics.Process\" /> 元件。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 類型的陣列，代表正在指定的電腦上執行的所有處理序資源。</returns>\r\n      <param name=\"machineName\">要讀取處理序清單的電腦。</param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String)\">\r\n      <summary>建立新 <see cref=\"T:System.Diagnostics.Process\" /> 元件的陣列，並將其與本機電腦上共用指定處理序名稱的所有處理序資源相關聯。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 類型的陣列，代表正在執行指定的應用程式或檔案的處理序資源。</returns>\r\n      <param name=\"processName\">處理序的易記名稱。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.GetProcessesByName(System.String,System.String)\">\r\n      <summary>建立新 <see cref=\"T:System.Diagnostics.Process\" /> 元件的陣列，並將其與遠端電腦上共用指定處理序名稱的所有處理序資源相關聯。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.Process\" /> 類型的陣列，代表正在執行指定的應用程式或檔案的處理序資源。</returns>\r\n      <param name=\"processName\">處理序的易記名稱。</param>\r\n      <param name=\"machineName\">網路上的電腦名稱。</param>\r\n      <exception cref=\"T:System.ArgumentException\">The <paramref name=\"machineName\" /> parameter syntax is invalid.It might have length zero (0).</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"machineName\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The operating system platform does not support this operation on remote computers. </exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There are problems accessing the performance counter API's used to get process information.This exception is specific to Windows NT, Windows 2000, and Windows XP.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A problem occurred accessing an underlying system API. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.HasExited\">\r\n      <summary>取得值，指出相關的處理序是否已經終止。</summary>\r\n      <returns>如果 <see cref=\"T:System.Diagnostics.Process\" /> 元件所參考的作業系統處理序已終止，則為 true，否則為 false。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with the object. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The exit code for the process could not be retrieved. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.HasExited\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Id\">\r\n      <summary>取得相關處理序的唯一識別項。</summary>\r\n      <returns>這個 <see cref=\"T:System.Diagnostics.Process\" /> 執行個體所參考的處理序之系統產生的唯一識別項。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process's <see cref=\"P:System.Diagnostics.Process.Id\" /> property has not been set.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Kill\">\r\n      <summary>立即停止相關的處理序。</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The associated process could not be terminated. -or-The process is terminating.-or- The associated process is a Win16 executable.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to call <see cref=\"M:System.Diagnostics.Process.Kill\" /> for a process that is running on a remote computer.The method is available only for processes running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has already exited. -or-There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.LeaveDebugMode\">\r\n      <summary>讓 <see cref=\"T:System.Diagnostics.Process\" /> 元件離開可與使用特殊模式執行的作業系統處理序互動的狀態。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MachineName\">\r\n      <summary>取得相關處理序正在執行的所在電腦的名稱。</summary>\r\n      <returns>相關處理序正在執行的所在電腦的名稱。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MainModule\">\r\n      <summary>取得相關處理序的主要模組。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" />，用來啟動處理序。</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MainModule\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">A 32-bit process is trying to access the modules of a 64-bit process.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MaxWorkingSet\">\r\n      <summary>取得或設定相關處理序的允許工作集 (Working Set) 大小的上限。</summary>\r\n      <returns>處理序所需記憶體中工作集大小的最大值，以位元組 (Byte) 為單位。</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The maximum working set size is invalid.It must be greater than or equal to the minimum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MaxWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.MinWorkingSet\">\r\n      <summary>取得或設定相關處理序的最小允許工作集大小。</summary>\r\n      <returns>處理序所需記憶體中工作集大小的最小值，以位元組 (Byte) 為單位。</returns>\r\n      <exception cref=\"T:System.ArgumentException\">The minimum working set size is invalid.It must be less than or equal to the maximum working set size.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Working set information cannot be retrieved from the associated process resource.-or- The process identifier or process handle is zero because the process has not been started. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are trying to access the <see cref=\"P:System.Diagnostics.Process.MinWorkingSet\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.-or- The process has exited.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Modules\">\r\n      <summary>取得相關的處理序所載入的模組。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> 類型的陣列，代表相關聯處理序所載入的模組。</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.Modules\" /> property for either the system process or the idle process.These processes do not have modules.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.NonpagedSystemMemorySize64\">\r\n      <summary>取得配置給關聯處理序的未分頁系統記憶體量。</summary>\r\n      <returns>配置給關聯處理序的系統記憶體量 (以位元組為單位)，不能寫入虛擬記憶體分頁檔案。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.OnExited\">\r\n      <summary>引發 <see cref=\"E:System.Diagnostics.Process.Exited\" /> 事件。</summary>\r\n    </member>\r\n    <member name=\"E:System.Diagnostics.Process.OutputDataReceived\">\r\n      <summary>發生於應用程式將某行寫入至其重新導向的 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 資料流時。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedMemorySize64\">\r\n      <summary>取得配置給關聯處理序的分頁記憶體量。</summary>\r\n      <returns>虛擬記憶體分頁檔案中，配置給關聯處理序的記憶體量 (以位元組為單位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PagedSystemMemorySize64\">\r\n      <summary>取得配置給關聯處理序的可分頁系統記憶體量。</summary>\r\n      <returns>配置給關聯處理序的系統記憶體量 (以位元組為單位)，可以寫入虛擬記憶體分頁檔案。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakPagedMemorySize64\">\r\n      <summary>取得關聯處理序所使用之虛擬記憶體分頁檔的最大記憶體量。</summary>\r\n      <returns>虛擬記憶體分頁檔案中，從啟動以來配置給關聯處理序的最大記憶體量 (以位元組為單位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakVirtualMemorySize64\">\r\n      <summary>取得關聯處理序所使用的最大虛擬記憶體量。</summary>\r\n      <returns>從啟動以來配置給關聯處理序的最大虛擬記憶體量 (以位元組為單位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PeakWorkingSet64\">\r\n      <summary>取得關聯處理序所使用最大實體記憶體量。</summary>\r\n      <returns>從啟動以來配置給關聯處理序的最大實體記憶體量 (以位元組為單位)。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityBoostEnabled\">\r\n      <summary>取得或設定值，指出作業系統是否應該在主視窗有焦點 (Focus) 時，暫時提高相關的處理序優先權。</summary>\r\n      <returns>當處理序離開等候狀態時，如果應動態提高處理序優先權，則為 true，否則為 false。預設為 false。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Priority boost information could not be retrieved from the associated process resource. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityBoostEnabled\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PriorityClass\">\r\n      <summary>取得或設定相關處理序的整體優先權分類。</summary>\r\n      <returns>相關聯處理序的優先權分類，處理序的 <see cref=\"P:System.Diagnostics.Process.BasePriority\" /> 由此計算出來。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">Process priority information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> is not available.</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">You have set the <see cref=\"P:System.Diagnostics.Process.PriorityClass\" /> to AboveNormal or BelowNormal when using Windows 98 or Windows Millennium Edition (Windows Me).These platforms do not support those values for the priority class.</exception>\r\n      <exception cref=\"T:System.ComponentModel.InvalidEnumArgumentException\">Priority class cannot be set because it does not use a valid value, as defined in the <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> enumeration.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivateMemorySize64\">\r\n      <summary>取得配置給關聯處理序的私用記憶體量。</summary>\r\n      <returns>配置給關聯處理序的記憶體量 (以位元組為單位)，不能與其他處理序共用。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\">\r\n      <summary>取得這個處理序使用處理器的授權時間。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" />，表示處理序在作業系統核心內執行程式碼所花費的時間。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessName\">\r\n      <summary>取得處理序的名稱。</summary>\r\n      <returns>名稱，系統用來向使用者識別處理序。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process does not have an identifier, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" />.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">The process is not on this computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.ProcessorAffinity\">\r\n      <summary>取得或設定處理器，這個處理序中的執行緒可以在其上排程執行。</summary>\r\n      <returns>位元遮罩，表示相關的處理序中的執行緒可以在其上執行的處理器。預設值取決於電腦上的處理器數目。預設值為 2 n -1，其中的 n 是處理器的數目。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> information could not be set or retrieved from the associated process resource.-or- The process identifier or process handle is zero.(The process has not been started.)</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.ProcessorAffinity\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process <see cref=\"P:System.Diagnostics.Process.Id\" /> was not available.-or- The process has exited. </exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Refresh\">\r\n      <summary>捨棄快取於處理序元件內之相關處理序的任何資訊。</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SafeHandle\">\r\n      <summary>取得這個處理序的原生控制代碼。</summary>\r\n      <returns>這個處理序的原生控制代碼。</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.SessionId\">\r\n      <summary>取得相關處理序的終端機服務工作階段識別項。</summary>\r\n      <returns>相關處理序的終端機服務工作階段識別項。</returns>\r\n      <exception cref=\"T:System.NullReferenceException\">There is no session associated with this process.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">There is no process associated with this session identifier.-or-The associated process is not on this machine. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The <see cref=\"P:System.Diagnostics.Process.SessionId\" /> property is not supported on Windows 98.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardError\">\r\n      <summary>取得用來讀取應用程式錯誤輸出的資料流。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IO.StreamReader\" />，可用來讀取應用程式的標準錯誤資料流。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardError\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginErrorReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardInput\">\r\n      <summary>取得用來寫入應用程式輸入的資料流。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IO.StreamWriter\" />，可用來寫入應用程式的標準輸入資料流。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> stream has not been defined because <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" /> is set to false. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StandardOutput\">\r\n      <summary>取得用來讀取應用程式文字輸出的資料流。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.IO.StreamReader\" />，可用來讀取應用程式的標準輸出資料流。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has not been defined for redirection; ensure <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" /> is set to true and <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> is set to false.- or - The <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> stream has been opened for asynchronous read operations with <see cref=\"M:System.Diagnostics.Process.BeginOutputReadLine\" />. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start\">\r\n      <summary>啟動 (或重複使用) 這個 <see cref=\"T:System.Diagnostics.Process\" /> 元件的 <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> 屬性指定的處理序資源，並將其與元件相關聯。</summary>\r\n      <returns>如果啟動處理序資源，則為 true；如果沒有啟動任何新的處理序資源 (例如，如果重複使用現有的處理序)，則為 false。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <see cref=\"T:System.Diagnostics.Process\" /> component's <see cref=\"P:System.Diagnostics.Process.StartInfo\" />.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> member of the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> property is true while <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> is true. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.Diagnostics.ProcessStartInfo)\">\r\n      <summary>啟動含有處理序啟動資訊 (例如，要啟動之處理序的檔名) 的參數所指定的處理序資源，並將該資源與新的 <see cref=\"T:System.Diagnostics.Process\" /> 元件相關聯。</summary>\r\n      <returns>與處理程序資源關聯的新 <see cref=\"T:System.Diagnostics.Process\" />，或者是 null (若未啟動任何處理程序資源)。請注意，隨著已在執行中之相同處理程序啟動的新處理程序將獨立於其他處理程序之外。此外，啟動可能會傳回非空值處理程序，且其 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 屬性會設定為 true。在此案例中，已啟動的處理程序可能已啟用本身的現有執行個體並結束。</returns>\r\n      <param name=\"startInfo\">\r\n        <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />，包含用來啟動處理序的資訊，包括檔名和任何命令列引數。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property.-or- The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\" />, <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\" />, or <see cref=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\" /> property is also true.-or-The <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> property of the <paramref name=\"startInfo\" /> parameter is true and the <see cref=\"P:System.Diagnostics.ProcessStartInfo.UserName\" /> property is not null or empty or the <see cref=\"P:System.Diagnostics.ProcessStartInfo.Password\" /> property is not null.</exception>\r\n      <exception cref=\"T:System.ArgumentNullException\">The <paramref name=\"startInfo\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The file specified in the <paramref name=\"startInfo\" /> parameter's <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> property could not be found.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String)\">\r\n      <summary>藉由指定文件或應用程式檔案的名稱啟動處理序資源，並將該資源與新的 <see cref=\"T:System.Diagnostics.Process\" /> 元件相關聯。</summary>\r\n      <returns>與處理程序資源關聯的新 <see cref=\"T:System.Diagnostics.Process\" />，或者是 null (若未啟動任何處理程序資源)。請注意，隨著已在執行中之相同處理程序啟動的新處理程序將獨立於其他處理程序之外。此外，啟動可能會傳回非空值處理程序，且其 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 屬性會設定為 true。在此案例中，已啟動的處理程序可能已啟用本身的現有執行個體並結束。</returns>\r\n      <param name=\"fileName\">要在處理序中執行之文件或應用程式檔案的名稱。</param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String)\">\r\n      <summary>藉由指定應用程式的名稱和一組命令列引數來啟動處理序資源，並將該資源與新的 <see cref=\"T:System.Diagnostics.Process\" /> 元件相關聯。</summary>\r\n      <returns>與處理程序資源關聯的新 <see cref=\"T:System.Diagnostics.Process\" />，或者是 null (若未啟動任何處理程序資源)。請注意，隨著已在執行中之相同處理程序啟動的新處理程序將獨立於其他處理程序之外。此外，啟動可能會傳回非空值處理程序，且其 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 屬性會設定為 true。在此案例中，已啟動的處理程序可能已啟用本身的現有執行個體並結束。</returns>\r\n      <param name=\"fileName\">要在處理序中執行之應用程式檔案的名稱。</param>\r\n      <param name=\"arguments\">啟動處理程序時要傳遞的命令列引數。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">The <paramref name=\"fileName\" /> or <paramref name=\"arguments\" /> parameter is null. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the process exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <exception cref=\"T:System.IO.FileNotFoundException\">The PATH environment variable has a string containing quotes.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>藉由指定應用程式的名稱、使用者名稱、密碼和網域來啟動處理序資源，並將該資源與新的 <see cref=\"T:System.Diagnostics.Process\" /> 元件相關聯。</summary>\r\n      <returns>與處理程序資源關聯的新 <see cref=\"T:System.Diagnostics.Process\" />，或者是 null (若未啟動任何處理程序資源)。請注意，隨著已在執行中之相同處理程序啟動的新處理程序將獨立於其他處理程序之外。此外，啟動可能會傳回非空值處理程序，且其 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 屬性會設定為 true。在此案例中，已啟動的處理程序可能已啟用本身的現有執行個體並結束。</returns>\r\n      <param name=\"fileName\">要在處理序中執行之應用程式檔案的名稱。</param>\r\n      <param name=\"userName\">要在啟動處理序時使用的使用者名稱。</param>\r\n      <param name=\"password\">\r\n        <see cref=\"T:System.Security.SecureString\" />，包含啟動處理序時要使用的密碼。</param>\r\n      <param name=\"domain\">要在啟動處理序時使用的網域。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified. </exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">There was an error in opening the associated file. </exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.Start(System.String,System.String,System.String,System.Security.SecureString,System.String)\">\r\n      <summary>藉由指定應用程式的名稱、一組命令列引數、使用者名稱、密碼和網域來啟動處理序資源，並將該資源與新的 <see cref=\"T:System.Diagnostics.Process\" /> 元件相關聯。</summary>\r\n      <returns>與處理程序資源關聯的新 <see cref=\"T:System.Diagnostics.Process\" />，或者是 null (若未啟動任何處理程序資源)。請注意，隨著已在執行中之相同處理程序啟動的新處理程序將獨立於其他處理程序之外。此外，啟動可能會傳回非空值處理程序，且其 <see cref=\"T:System.Diagnostics.ProcessHasExited\" /> 屬性會設定為 true。在此案例中，已啟動的處理程序可能已啟用本身的現有執行個體並結束。</returns>\r\n      <param name=\"fileName\">要在處理序中執行之應用程式檔案的名稱。</param>\r\n      <param name=\"arguments\">啟動處理程序時要傳遞的命令列引數。</param>\r\n      <param name=\"userName\">要在啟動處理序時使用的使用者名稱。</param>\r\n      <param name=\"password\">\r\n        <see cref=\"T:System.Security.SecureString\" />，包含啟動處理序時要使用的密碼。</param>\r\n      <param name=\"domain\">要在啟動處理序時使用的網域。</param>\r\n      <exception cref=\"T:System.InvalidOperationException\">No file name was specified.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">\r\n        <paramref name=\"fileName\" /> is not an executable (.exe) file.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred when opening the associated file. -or-The sum of the length of the arguments and the length of the full path to the associated file exceeds 2080.The error message associated with this exception can be one of the following: \"The data area passed to a system call is too small.\" or \"Access is denied.\"</exception>\r\n      <exception cref=\"T:System.ObjectDisposedException\">The process object has already been disposed. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartInfo\">\r\n      <summary>取得或設定要傳遞給 <see cref=\"T:System.Diagnostics.Process\" /> 之 <see cref=\"M:System.Diagnostics.Process.Start\" /> 方法的屬性。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessStartInfo\" />，代表用來啟動處理序的資料。這些引數包括用來啟動處理序的可執行檔或文件的名稱。</returns>\r\n      <exception cref=\"T:System.ArgumentNullException\">The value that specifies the <see cref=\"P:System.Diagnostics.Process.StartInfo\" /> is null. </exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.StartTime\">\r\n      <summary>取得相關的處理序啟動的時間。</summary>\r\n      <returns>物件，指出處理序何時啟動。如果處理序並未執行，則會擲回例外狀況。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.StartTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <exception cref=\"T:System.InvalidOperationException\">The process has exited.-or-The process has not been started.</exception>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">An error occurred in the call to the Windows function.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.Threads\">\r\n      <summary>取得正在相關的處理序中執行的執行緒集。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> 類型的陣列，代表目前正在相關聯處理序中執行的作業系統執行緒。</returns>\r\n      <exception cref=\"T:System.SystemException\">The process does not have an <see cref=\"P:System.Diagnostics.Process.Id\" />, or no process is associated with the <see cref=\"T:System.Diagnostics.Process\" /> instance.-or- The associated process has exited. </exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me); set <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> to false to access this property on Windows 98 and Windows Me.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.TotalProcessorTime\">\r\n      <summary>取得這個處理序的總處理器時間。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" />，表示相關聯處理序花在使用 CPU 的時間。這個值是 <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> 和 <see cref=\"P:System.Diagnostics.Process.PrivilegedProcessorTime\" /> 的總和。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.TotalProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.UserProcessorTime\">\r\n      <summary>取得這個處理序的使用者處理器時間。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" />，表示相關聯處理序花在處理序的應用程式部分內 (而不是在作業系統核心內) 執行程式碼的時間。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property. </exception>\r\n      <exception cref=\"T:System.NotSupportedException\">You are attempting to access the <see cref=\"P:System.Diagnostics.Process.UserProcessorTime\" /> property for a process that is running on a remote computer.This property is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.VirtualMemorySize64\">\r\n      <summary>取得配置給關聯處理序的虛擬記憶體量。</summary>\r\n      <returns>配置給關聯處理序的虛擬記憶體量，以位元組為單位。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit\">\r\n      <summary>指示 <see cref=\"T:System.Diagnostics.Process\" /> 元件無限期等候相關聯處理序結束。</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\">\r\n      <summary>指示 <see cref=\"T:System.Diagnostics.Process\" /> 元件等候相關聯處理序結束的指定毫秒數。</summary>\r\n      <returns>如果相關聯處理序已結束，則為 true，否則為 false。</returns>\r\n      <param name=\"milliseconds\">等候相關的處理序結束的時間量，以毫秒計算。最大值是 32 位元整數的最大可能值，對作業系統來說，這表示無限。</param>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">The wait setting could not be accessed. </exception>\r\n      <exception cref=\"T:System.SystemException\">No process <see cref=\"P:System.Diagnostics.Process.Id\" /> has been set, and a <see cref=\"P:System.Diagnostics.Process.Handle\" /> from which the <see cref=\"P:System.Diagnostics.Process.Id\" /> property can be determined does not exist.-or- There is no process associated with this <see cref=\"T:System.Diagnostics.Process\" /> object.-or- You are attempting to call <see cref=\"M:System.Diagnostics.Process.WaitForExit(System.Int32)\" /> for a process that is running on a remote computer.This method is available only for processes that are running on the local computer.</exception>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.Process.WorkingSet64\">\r\n      <summary>取得配置給關聯處理序的實體記憶體量。</summary>\r\n      <returns>配置給關聯處理序的實體記憶體量，以位元組為單位。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">The platform is Windows 98 or Windows Millennium Edition (Windows Me), which does not support this property.</exception>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModule\">\r\n      <summary>表示載入至特定處理序的 .dll 或 .exe 檔。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.BaseAddress\">\r\n      <summary>取得模組載入的記憶體位址。</summary>\r\n      <returns>模組的載入位址。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.EntryPointAddress\">\r\n      <summary>取得系統載入和執行模組時所執行的函式記憶體位址。</summary>\r\n      <returns>模組的進入點 (Entry Point)。</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.FileName\">\r\n      <summary>取得通往模組的完整路徑。</summary>\r\n      <returns>完整路徑，定義模組的位置。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleMemorySize\">\r\n      <summary>取得載入模組所需的記憶體數量。</summary>\r\n      <returns>模組所佔有的記憶體大小 (以位元組為單位)。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModule.ModuleName\">\r\n      <summary>取得處理序模組的名稱。</summary>\r\n      <returns>模組名稱。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModule.ToString\">\r\n      <summary>將模組名稱轉換為字串。</summary>\r\n      <returns>\r\n        <see cref=\"P:System.Diagnostics.ProcessModule.ModuleName\" /> 屬性的值。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessModuleCollection\">\r\n      <summary>提供 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 物件的強型別 (Strongly Typed) 集合。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor\">\r\n      <summary>不使用相關的 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 執行個體，初始化 <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 類別的新執行個體。</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.#ctor(System.Diagnostics.ProcessModule[])\">\r\n      <summary>使用 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 執行個體指定的陣列，初始化 <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 類別的新執行個體。</summary>\r\n      <param name=\"processModules\">\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> 執行個體的陣列，用來初始化這個 <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 執行個體。</param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.Contains(System.Diagnostics.ProcessModule)\">\r\n      <summary>判斷指定的處理序模組是否在集合中。</summary>\r\n      <returns>如果模組在集合中，則為 true，否則為 false。</returns>\r\n      <param name=\"module\">\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" /> 執行個體，表示要在這個集合中搜尋的模組。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.CopyTo(System.Diagnostics.ProcessModule[],System.Int32)\">\r\n      <summary>將 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 執行個體的陣列複製至集合的指定索引位置。</summary>\r\n      <param name=\"array\">要加入至集合的 <see cref=\"T:System.Diagnostics.ProcessModule\" /> 執行個體的陣列。</param>\r\n      <param name=\"index\">要加入新執行個體的所在位置。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.IndexOf(System.Diagnostics.ProcessModule)\">\r\n      <summary>提供指定模組在集合中的位置。</summary>\r\n      <returns>以零起始的索引，定義模組在 <see cref=\"T:System.Diagnostics.ProcessModuleCollection\" /> 中的位置。</returns>\r\n      <param name=\"module\">\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" />，其索引已擷取。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.Item(System.Int32)\">\r\n      <summary>取得逐一查看處理序 (Process) 模組集的索引。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessModule\" />，建立集合的模組索引。</returns>\r\n      <param name=\"index\">集合中模組的以零起始的索引值。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessModuleCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ProcessPriorityClass\">\r\n      <summary>表示系統與處理序 (Process) 關聯的優先權。這個值與處理序每個執行緒的優先權值會判斷每個執行緒的基礎優先權層級。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.AboveNormal\">\r\n      <summary>指定處理序具有高於 Normal 但低於 <see cref=\"F:System.Diagnostics.ProcessPriorityClass.High\" /> 的優先權。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.BelowNormal\">\r\n      <summary>指定處理序具有高於 Idle 但低於 Normal 的優先權。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.High\">\r\n      <summary>指定處理序執行必須立即執行的時間緊急工作，例如 Task List 對話方塊，而這項工作必須在使用者呼叫時迅速回應，而不管作業系統上的載入。該處理序的執行緒會優先於正常或閒置優先權類別處理序的執行緒。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Idle\">\r\n      <summary>指定這個處理序的執行緒只於系統閒置時執行，例如螢幕保護程式。該處理序之執行緒會由任何具有較高優先權類別的處理序之執行緒優先佔用。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.Normal\">\r\n      <summary>指定處理序不需特別的排程。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ProcessPriorityClass.RealTime\">\r\n      <summary>指定處理序具有最高的可能優先權。</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessStartInfo\">\r\n      <summary>指定一組啟動處理序時所使用的值。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor\">\r\n      <summary>不指定用來啟動處理序的檔案名稱，初始化 <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> 類別的新執行個體。</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String)\">\r\n      <summary>初始化 <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> 類別的新執行個體，並指定用來啟動處理序的檔案名稱 (例如應用程式或文件)。</summary>\r\n      <param name=\"fileName\">用來啟動處理序的應用程式或文件。</param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessStartInfo.#ctor(System.String,System.String)\">\r\n      <summary>初始化 <see cref=\"T:System.Diagnostics.ProcessStartInfo\" /> 類別的新執行個體，並指定用來啟動處理序的應用程式檔案名稱，以及指定要傳遞至應用程式的命令列引數集。</summary>\r\n      <param name=\"fileName\">用來啟動處理序的應用程式。</param>\r\n      <param name=\"arguments\">要在處理序啟動時傳遞至應用程式的命令列引數。</param>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Arguments\">\r\n      <summary>取得或設定啟動應用程式時要使用的命令列引數集。</summary>\r\n      <returns>單一字串，包含要傳遞至 <see cref=\"P:System.Diagnostics.ProcessStartInfo.FileName\" /> 屬性中所指定之目標應用程式的引數。預設為空字串 (\"\")。在 Windows Vista 及較早版本的 Windows 作業系統上，加入處理序之完整路徑長度的引數長度必須小於 2080。在 Windows 7 及更新版本中，長度必須小於 32699。引數會由目標應用程式剖析及解譯，因此必須配合該應用程式的期望。針對下列範例所示的 .NET 應用程式，空格會解譯為多個引數之間的分隔符號。您必須以引號括住含有空格的單一引數，但這些引號不會傳送至目標應用程式。在最後剖析之引數所包含的引號中，三重逸出 (Triple-Escape) 每個標記。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.CreateNoWindow\">\r\n      <summary>取得或設定值，表示是否要在新視窗中啟動處理序。</summary>\r\n      <returns>如果應該啟動處理序而不建立要包含處理序的新視窗，則為 true，否則為 false。預設為 false。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Domain\">\r\n      <summary>取得或設定值，識別在啟動處理序時要使用的網域。</summary>\r\n      <returns>啟動處理序時要使用的 Active Directory 網域。網域屬性主要是對使用 Active Directory 之企業環境內的使用者有利。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Environment\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.FileName\">\r\n      <summary>取得或設定要啟動的應用程式或文件。</summary>\r\n      <returns>要啟動的應用程式名稱，或是與應用程式相關聯且具有可用預設開啟動作之檔案類型的文件名稱。預設為空字串 (\"\")。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.LoadUserProfile\">\r\n      <summary>取得或設定值，表示是否要從登錄載入 Windows 使用者設定檔。</summary>\r\n      <returns>如果應該載入 Windows 使用者設定檔，則為 true，否則為 false。預設為 false。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.Password\">\r\n      <summary>取得或設定安全字串，其中包含啟動處理序時要使用的使用者密碼。</summary>\r\n      <returns>要在啟動處理序時使用的使用者密碼。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardError\">\r\n      <summary>取得或設定值，表示應用程式的錯誤輸出是否寫入至 <see cref=\"P:System.Diagnostics.Process.StandardError\" /> 資料流。</summary>\r\n      <returns>如果錯誤輸出應該寫入至 <see cref=\"P:System.Diagnostics.Process.StandardError\" />，則為 true，否則為 false。預設為 false。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardInput\">\r\n      <summary>取得或設定值，表示應用程式的輸入是否從 <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> 資料流讀取。</summary>\r\n      <returns>如果應該從 <see cref=\"P:System.Diagnostics.Process.StandardInput\" /> 讀取輸入，則為 true，否則為false。預設為 false。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.RedirectStandardOutput\">\r\n      <summary>取得或設定值，表示應用程式的文字輸出是否寫入至 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" /> 資料流。</summary>\r\n      <returns>如果輸出應該寫入至 <see cref=\"P:System.Diagnostics.Process.StandardOutput\" />，則為 true，否則為 false。預設為 false。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardErrorEncoding\">\r\n      <summary>取得或設定錯誤輸出的慣用編碼。</summary>\r\n      <returns>物件，代表錯誤輸出的慣用編碼。預設為 null。</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.StandardOutputEncoding\">\r\n      <summary>取得或設定標準輸出的慣用編碼。</summary>\r\n      <returns>物件，代表標準輸出的慣用編碼。預設為 null。</returns>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UserName\">\r\n      <summary>取得或設定要在啟動處理序時使用的使用者名稱。</summary>\r\n      <returns>要在啟動處理序時使用的使用者名稱。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\">\r\n      <summary>取得或設定值，表示是否要使用作業系統 Shell 來啟動處理序。</summary>\r\n      <returns>如果在啟動處理序時使用 Shell，則為 true；如果處理序應直接從可執行檔建立，則為 false。預設為 true。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessStartInfo.WorkingDirectory\">\r\n      <summary>當 <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> 屬性為 false 時，取得或設定要啟動之處理序的工作目錄。當 <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> 為 true 時，取得或設定包含要啟動之處理序的目錄。</summary>\r\n      <returns>如果 <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> 為 true，則為包含要啟動之處理序的目錄完整名稱。當 <see cref=\"P:System.Diagnostics.ProcessStartInfo.UseShellExecute\" /> 屬性為 false 時，則為要啟動之處理序的工作目錄。預設為空字串 (\"\")。</returns>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThread\">\r\n      <summary>表示作業系統處理序 (Process) 執行緒。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.BasePriority\">\r\n      <summary>取得執行緒的基礎優先權 (Base Priority)。</summary>\r\n      <returns>執行緒的基礎優先權，由作業系統結合處理序的優先權類別和相關執行緒的優先權層級計算所得。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.CurrentPriority\">\r\n      <summary>取得執行緒的目前優先權。</summary>\r\n      <returns>執行緒目前的優先權，可能與基礎優先權 (根據作業系統如何排程執行緒) 不符合。針對作用中的執行緒，可能暫時提高優先權。</returns>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.Id\">\r\n      <summary>取得執行緒的唯一識別項。</summary>\r\n      <returns>與特定執行緒相關的唯一識別項。</returns>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.IdealProcessor\">\r\n      <summary>設定執行這個執行緒的慣用處理器。</summary>\r\n      <returns>執行緒的慣用處理器，用於系統排程執行緒時，以判斷執行執行緒所在的處理器。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">系統無法設定在指定的處理器上啟動執行緒。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台為 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">處理序位於遠端電腦上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityBoostEnabled\">\r\n      <summary>取得或設定數值，表示每當執行緒的處理序之主視窗接收到焦點 (Focus) 時，作業系統是否應該暫時提高相關執行緒的優先權。</summary>\r\n      <returns>若要在使用者與處理序的介面互動時，提高執行緒的優先權，則為 true，否則為 false。預設為 false。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">無法擷取優先權提高資訊。-或-無法設定優先權提高資訊。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台為 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">處理序位於遠端電腦上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PriorityLevel\">\r\n      <summary>取得或設定執行緒的優先權層級。</summary>\r\n      <returns>其中一個 <see cref=\"T:System.Diagnostics.ThreadPriorityLevel\" /> 值，指定限定執行緒優先權的範圍。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">無法擷取執行緒優先權層級資訊。-或-無法設定執行緒優先權層級。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台為 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">處理序位於遠端電腦上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.PrivilegedProcessorTime\">\r\n      <summary>取得執行緒在作業系統核心中執行程式碼所耗用的時間量。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" />，表示執行緒在作業系統核心中執行程式碼所耗用的時間量。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">無法擷取執行緒時間。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台為 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">處理序位於遠端電腦上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ProcessorAffinity\">\r\n      <summary>設定可以執行相關執行緒的處理器。</summary>\r\n      <returns>指向一組位元的 <see cref=\"T:System.IntPtr\" />，其中每個位元表示執行緒可以在其上執行的處理器。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">處理序相似性不能被設定。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台為 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">處理序位於遠端電腦上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThread.ResetIdealProcessor\">\r\n      <summary>重設這個執行緒的理想處理器，以指示沒有一個的理想處理器。換句話說，沒有任何處理器是理想的。</summary>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">無法重設理想處理器。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台為 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">處理序位於遠端電腦上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartAddress\">\r\n      <summary>取得作業系統啟動這個執行緒所呼叫之函式的記憶體位址。</summary>\r\n      <returns>執行緒的起始位址，指向執行緒執行之應用程式定義的函式。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台為 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">處理序位於遠端電腦上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.StartTime\">\r\n      <summary>取得作業系統啟動執行緒的時間。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.DateTime\" />，表示當作業系統啟動執行緒時的系統時間。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">無法擷取執行緒時間。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台為 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">處理序位於遠端電腦上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.ThreadState\">\r\n      <summary>取得這個執行緒目前的狀態。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ThreadState\" />，表示執行緒的執行，例如，執行中、等候中或終止。</returns>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台為 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">處理序位於遠端電腦上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.TotalProcessorTime\">\r\n      <summary>取得這個執行緒使用處理器所耗用的總時間量。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" />，表示執行緒已控制處理器的時間量。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">無法擷取執行緒時間。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台為 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">處理序位於遠端電腦上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.UserProcessorTime\">\r\n      <summary>取得相關執行緒在應用程式內部執行程式碼所耗用的時間量。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.TimeSpan\" />，表示執行緒在應用程式內部 (相對於在作業系統核心中) 執行程式碼所耗用的時間量。</returns>\r\n      <exception cref=\"T:System.ComponentModel.Win32Exception\">無法擷取執行緒時間。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台為 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">處理序位於遠端電腦上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThread.WaitReason\">\r\n      <summary>取得執行緒正在等候的原因。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ThreadWaitReason\" />，表示執行緒在等候狀態的原因。</returns>\r\n      <exception cref=\"T:System.InvalidOperationException\">執行緒不在等候狀態。</exception>\r\n      <exception cref=\"T:System.PlatformNotSupportedException\">平台為 Windows 98 或 Windows Millennium Edition。</exception>\r\n      <exception cref=\"T:System.NotSupportedException\">處理序位於遠端電腦上。</exception>\r\n      <filterpriority>2</filterpriority>\r\n      <PermissionSet>\r\n        <IPermission class=\"System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089\" version=\"1\" Flags=\"UnmanagedCode, ControlEvidence\" />\r\n      </PermissionSet>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ProcessThreadCollection\">\r\n      <summary>提供 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 物件的強型別 (Strongly Typed) 集合。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor\">\r\n      <summary>不使用相關的 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 執行個體，初始化 <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 類別的新執行個體。</summary>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.#ctor(System.Diagnostics.ProcessThread[])\">\r\n      <summary>使用 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 執行個體指定的陣列，初始化 <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 類別的新執行個體。</summary>\r\n      <param name=\"processThreads\">\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> 執行個體的陣列，用來初始化這個 <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 執行個體。</param>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Add(System.Diagnostics.ProcessThread)\">\r\n      <summary>將處理序執行緒附加至集合。</summary>\r\n      <returns>集合中執行緒之以零起始的索引。</returns>\r\n      <param name=\"thread\">要加入至集合的執行緒。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Contains(System.Diagnostics.ProcessThread)\">\r\n      <summary>判斷指定的處理序執行緒是否在集合中。</summary>\r\n      <returns>如果執行緒在集合中，則為 true，否則為 false。</returns>\r\n      <param name=\"thread\">\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" /> 執行個體，表示要在這個集合中搜尋的執行緒。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.CopyTo(System.Diagnostics.ProcessThread[],System.Int32)\">\r\n      <summary>將 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 執行個體的陣列複製至集合的指定索引位置。</summary>\r\n      <param name=\"array\">要加入至集合的 <see cref=\"T:System.Diagnostics.ProcessThread\" /> 執行個體的陣列。</param>\r\n      <param name=\"index\">要加入新執行個體的所在位置。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Count\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.GetEnumerator\"></member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.IndexOf(System.Diagnostics.ProcessThread)\">\r\n      <summary>提供指定執行緒在集合中的位置。</summary>\r\n      <returns>以零起始的索引，定義執行緒在 <see cref=\"T:System.Diagnostics.ProcessThreadCollection\" /> 中的位置。</returns>\r\n      <param name=\"thread\">\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" />，其索引已擷取。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Insert(System.Int32,System.Diagnostics.ProcessThread)\">\r\n      <summary>將處理序執行緒插入於集合中的指定位置。</summary>\r\n      <param name=\"index\">以零起始的索引，表示要插入執行緒的所在位置。</param>\r\n      <param name=\"thread\">要插入至集合的執行緒。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.Item(System.Int32)\">\r\n      <summary>取得逐一查看處理序 (Process) 執行緒集的索引。</summary>\r\n      <returns>\r\n        <see cref=\"T:System.Diagnostics.ProcessThread\" />，建立集合的執行緒索引。</returns>\r\n      <param name=\"index\">集合中執行緒的以零起始的索引值。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.Remove(System.Diagnostics.ProcessThread)\">\r\n      <summary>從集合刪除處理序執行緒。</summary>\r\n      <param name=\"thread\">要從集合移除的執行緒。</param>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"M:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#IsSynchronized\"></member>\r\n    <member name=\"P:System.Diagnostics.ProcessThreadCollection.System#Collections#ICollection#SyncRoot\"></member>\r\n    <member name=\"T:System.Diagnostics.ThreadPriorityLevel\">\r\n      <summary>指定執行緒的優先權層級。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.AboveNormal\">\r\n      <summary>指定相關 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的高於一般優先權一級的優先權。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.BelowNormal\">\r\n      <summary>指定相關 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的低於一般優先權一級的優先權。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Highest\">\r\n      <summary>指定最高優先權。這是相關 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的高於一般優先權兩級的優先權。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Idle\">\r\n      <summary>指定閒置優先權。這是所有執行緒的最低可能優先權值，與相關 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的值無關。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Lowest\">\r\n      <summary>指定最低優先權。這是相關 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的低於一般優先權兩級的優先權。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.Normal\">\r\n      <summary>指定相關 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的一般優先權。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadPriorityLevel.TimeCritical\">\r\n      <summary>指定時間關鍵 (Time Critical) 優先權。這是所有執行緒的最高優先權，與相關 <see cref=\"T:System.Diagnostics.ProcessPriorityClass\" /> 的值無關。</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadState\">\r\n      <summary>指定執行緒的目前執行狀態。</summary>\r\n      <filterpriority>1</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Initialized\">\r\n      <summary>指示執行緒已經初始化，但尚未啟動的狀態。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Ready\">\r\n      <summary>該狀態指示沒有可用的處理器，所以執行緒正在等待以使用處理器。執行緒準備在下一個可用的處理器上執行。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Running\">\r\n      <summary>該狀態指示執行緒目前正在使用處理器。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Standby\">\r\n      <summary>該狀態指示執行緒正要使用處理器。一次只能有一個執行緒可以處於這個狀態。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Terminated\">\r\n      <summary>該狀態指示執行緒已經執行完成並離開。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Transition\">\r\n      <summary>該狀態指示執行緒在可以執行之前正在等待資源，而不是等待處理器。例如，它可能正在等待其執行堆疊從磁碟分頁進來。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Unknown\">\r\n      <summary>執行緒的狀態不明。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadState.Wait\">\r\n      <summary>該狀態指示執行緒尚未準備使用處理器，因為它正在等待要完成的週邊作業或可以使用的資源。執行緒會在備妥時重新排程。</summary>\r\n    </member>\r\n    <member name=\"T:System.Diagnostics.ThreadWaitReason\">\r\n      <summary>指定執行緒正在等待的原因。</summary>\r\n      <filterpriority>2</filterpriority>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairHigh\">\r\n      <summary>執行緒正在等待 Event Pair High。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.EventPairLow\">\r\n      <summary>執行緒正在等待 Event Pair Low。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.ExecutionDelay\">\r\n      <summary>執行緒的執行受延遲。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Executive\">\r\n      <summary>執行緒正在等待排程器。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.FreePage\">\r\n      <summary>執行緒正在等待可用的虛擬記憶體分頁。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReceive\">\r\n      <summary>執行緒正在等待本機程序呼叫到達。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.LpcReply\">\r\n      <summary>執行緒正在等待對本機程序呼叫的回應到達。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageIn\">\r\n      <summary>執行緒正在等待虛擬記憶體分頁到達記憶體。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.PageOut\">\r\n      <summary>執行緒正在等待虛擬記憶體分頁寫入至磁碟。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Suspended\">\r\n      <summary>執行緒的執行受暫止。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.SystemAllocation\">\r\n      <summary>執行緒正在等待系統配置。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.Unknown\">\r\n      <summary>執行緒正在等待不明原因。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.UserRequest\">\r\n      <summary>執行緒正在等待使用者要求。</summary>\r\n    </member>\r\n    <member name=\"F:System.Diagnostics.ThreadWaitReason.VirtualMemory\">\r\n      <summary>執行緒正在等待系統配置虛擬記憶體。</summary>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/xamarinios10/_._",
    "content": ""
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/xamarinmac20/_._",
    "content": ""
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/xamarintvos10/_._",
    "content": ""
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/ref/xamarinwatchos10/_._",
    "content": ""
  },
  {
    "path": "packages/System.Diagnostics.Process.4.3.0/runtimes/win7/lib/netcore50/_._",
    "content": ""
  },
  {
    "path": "packages/System.Memory.4.5.5/LICENSE.TXT",
    "content": "The MIT License (MIT)\r\n\r\nCopyright (c) .NET Foundation and Contributors\r\n\r\nAll rights reserved.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n"
  },
  {
    "path": "packages/System.Memory.4.5.5/THIRD-PARTY-NOTICES.TXT",
    "content": ".NET Core uses third-party libraries or other resources that may be\r\ndistributed under licenses different than the .NET Core software.\r\n\r\nIn the event that we accidentally failed to list a required notice, please\r\nbring it to our attention. Post an issue or email us:\r\n\r\n           dotnet@microsoft.com\r\n\r\nThe attached notices are provided for information only.\r\n\r\nLicense notice for Slicing-by-8 \r\n-------------------------------\r\n\r\nhttp://sourceforge.net/projects/slicing-by-8/\r\n\r\nCopyright (c) 2004-2006 Intel Corporation - All Rights Reserved\r\n\r\n\r\nThis software program is licensed subject to the BSD License,  available at\r\nhttp://www.opensource.org/licenses/bsd-license.html.\r\n\r\n\r\nLicense notice for Unicode data\r\n-------------------------------\r\n\r\nhttp://www.unicode.org/copyright.html#License\r\n\r\nCopyright © 1991-2017 Unicode, Inc. All rights reserved.\r\nDistributed under the Terms of Use in http://www.unicode.org/copyright.html.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining\r\na copy of the Unicode data files and any associated documentation\r\n(the \"Data Files\") or Unicode software and any associated documentation\r\n(the \"Software\") to deal in the Data Files or Software\r\nwithout restriction, including without limitation the rights to use,\r\ncopy, modify, merge, publish, distribute, and/or sell copies of\r\nthe Data Files or Software, and to permit persons to whom the Data Files\r\nor Software are furnished to do so, provided that either\r\n(a) this copyright and permission notice appear with all copies\r\nof the Data Files or Software, or\r\n(b) this copyright and permission notice appear in associated\r\nDocumentation.\r\n\r\nTHE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY OF\r\nANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\r\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r\nNONINFRINGEMENT OF THIRD PARTY RIGHTS.\r\nIN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS\r\nNOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL\r\nDAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,\r\nDATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\r\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THE DATA FILES OR SOFTWARE.\r\n\r\nExcept as contained in this notice, the name of a copyright holder\r\nshall not be used in advertising or otherwise to promote the sale,\r\nuse or other dealings in these Data Files or Software without prior\r\nwritten authorization of the copyright holder.\r\n\r\nLicense notice for Zlib \r\n-----------------------\r\n\r\nhttps://github.com/madler/zlib\r\nhttp://zlib.net/zlib_license.html\r\n\r\n/* zlib.h -- interface of the 'zlib' general purpose compression library\r\n  version 1.2.11, January 15th, 2017\r\n\r\n  Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler\r\n\r\n  This software is provided 'as-is', without any express or implied\r\n  warranty.  In no event will the authors be held liable for any damages\r\n  arising from the use of this software.\r\n\r\n  Permission is granted to anyone to use this software for any purpose,\r\n  including commercial applications, and to alter it and redistribute it\r\n  freely, subject to the following restrictions:\r\n\r\n  1. The origin of this software must not be misrepresented; you must not\r\n     claim that you wrote the original software. If you use this software\r\n     in a product, an acknowledgment in the product documentation would be\r\n     appreciated but is not required.\r\n  2. Altered source versions must be plainly marked as such, and must not be\r\n     misrepresented as being the original software.\r\n  3. This notice may not be removed or altered from any source distribution.\r\n\r\n  Jean-loup Gailly        Mark Adler\r\n  jloup@gzip.org          madler@alumni.caltech.edu\r\n\r\n*/\r\n\r\nLicense notice for Mono\r\n-------------------------------\r\n\r\nhttp://www.mono-project.com/docs/about-mono/\r\n\r\nCopyright (c) .NET Foundation Contributors\r\n\r\nMIT License\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software  and associated documentation files (the Software), to deal\r\nin the Software without restriction,  including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense,  and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so,  subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF \r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND \r\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE \r\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION \r\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION \r\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n\r\nLicense notice for International Organization for Standardization\r\n-----------------------------------------------------------------\r\n\r\nPortions (C) International Organization for Standardization 1986:\r\n     Permission to copy in any form is granted for use with\r\n     conforming SGML systems and applications as defined in\r\n     ISO 8879, provided this notice is included in all copies.\r\n\r\nLicense notice for Intel\r\n------------------------\r\n\r\n\"Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are met:\r\n\r\n1. Redistributions of source code must retain the above copyright notice, this\r\nlist of conditions and the following disclaimer.\r\n\r\n2. Redistributions in binary form must reproduce the above copyright notice,\r\nthis list of conditions and the following disclaimer in the documentation\r\nand/or other materials provided with the distribution.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\r\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\r\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\r\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\r\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\r\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\r\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\r\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r\n\r\nLicense notice for Xamarin and Novell\r\n-------------------------------------\r\n\r\nCopyright (c) 2015 Xamarin, Inc (http://www.xamarin.com)\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n\r\nCopyright (c) 2011 Novell, Inc (http://www.novell.com)\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n\r\nThird party notice for W3C\r\n--------------------------\r\n\r\n\"W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE\r\nStatus: This license takes effect 13 May, 2015.\r\nThis work is being provided by the copyright holders under the following license.\r\nLicense\r\nBy obtaining and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions.\r\nPermission to copy, modify, and distribute this work, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the work or portions thereof, including modifications:\r\nThe full text of this NOTICE in a location viewable to users of the redistributed or derivative work.\r\nAny pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software and Document Short Notice should be included.\r\nNotice of any changes or modifications, through a copyright statement on the new code or document such as \"This software or document includes material copied from or derived from [title and URI of the W3C document]. Copyright © [YEAR] W3C® (MIT, ERCIM, Keio, Beihang).\"\r\nDisclaimers\r\nTHIS WORK IS PROVIDED \"AS IS,\" AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.\r\nCOPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT.\r\nThe name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders.\"\r\n\r\nLicense notice for Bit Twiddling Hacks\r\n--------------------------------------\r\n\r\nBit Twiddling Hacks\r\n\r\nBy Sean Eron Anderson\r\nseander@cs.stanford.edu\r\n\r\nIndividually, the code snippets here are in the public domain (unless otherwise\r\nnoted) — feel free to use them however you please. The aggregate collection and\r\ndescriptions are © 1997-2005 Sean Eron Anderson. The code and descriptions are\r\ndistributed in the hope that they will be useful, but WITHOUT ANY WARRANTY and\r\nwithout even the implied warranty of merchantability or fitness for a particular\r\npurpose. \r\n\r\nLicense notice for Brotli\r\n--------------------------------------\r\n\r\nCopyright (c) 2009, 2010, 2013-2016 by the Brotli Authors.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n\r\ncompress_fragment.c:\r\nCopyright (c) 2011, Google Inc.\r\nAll rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are\r\nmet:\r\n\r\n    * Redistributions of source code must retain the above copyright\r\nnotice, this list of conditions and the following disclaimer.\r\n    * Redistributions in binary form must reproduce the above\r\ncopyright notice, this list of conditions and the following disclaimer\r\nin the documentation and/or other materials provided with the\r\ndistribution.\r\n    * Neither the name of Google Inc. nor the names of its\r\ncontributors may be used to endorse or promote products derived from\r\nthis software without specific prior written permission.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\r\n\"\"AS IS\"\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\r\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\r\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\r\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r\n\r\ndecode_fuzzer.c:\r\nCopyright (c) 2015 The Chromium Authors. All rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are\r\nmet:\r\n\r\n   * Redistributions of source code must retain the above copyright\r\nnotice, this list of conditions and the following disclaimer.\r\n   * Redistributions in binary form must reproduce the above\r\ncopyright notice, this list of conditions and the following disclaimer\r\nin the documentation and/or other materials provided with the\r\ndistribution.\r\n   * Neither the name of Google Inc. nor the names of its\r\ncontributors may be used to endorse or promote products derived from\r\nthis software without specific prior written permission.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\r\n\"\"AS IS\"\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\r\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\r\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\r\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\"\r\n\r\n"
  },
  {
    "path": "packages/System.Memory.4.5.5/lib/net461/System.Memory.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?><doc>\r\n  <assembly>\r\n    <name>System.Memory</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:System.Span`1\">\r\n      <typeparam name=\"T\"></typeparam>\r\n    </member>\r\n    <member name=\"M:System.Span`1.#ctor(`0[])\">\r\n      <param name=\"array\"></param>\r\n    </member>\r\n    <member name=\"M:System.Span`1.#ctor(System.Void*,System.Int32)\">\r\n      <param name=\"pointer\"></param>\r\n      <param name=\"length\"></param>\r\n    </member>\r\n    <member name=\"M:System.Span`1.#ctor(`0[],System.Int32)\">\r\n      <param name=\"array\"></param>\r\n      <param name=\"start\"></param>\r\n    </member>\r\n    <member name=\"M:System.Span`1.#ctor(`0[],System.Int32,System.Int32)\">\r\n      <param name=\"array\"></param>\r\n      <param name=\"start\"></param>\r\n      <param name=\"length\"></param>\r\n    </member>\r\n    <member name=\"M:System.Span`1.Clear\">\r\n      \r\n    </member>\r\n    <member name=\"M:System.Span`1.CopyTo(System.Span{`0})\">\r\n      <param name=\"destination\"></param>\r\n    </member>\r\n    <member name=\"M:System.Span`1.DangerousCreate(System.Object,`0@,System.Int32)\">\r\n      <param name=\"obj\"></param>\r\n      <param name=\"objectData\"></param>\r\n      <param name=\"length\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.DangerousGetPinnableReference\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Span`1.Empty\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.Equals(System.Object)\">\r\n      <param name=\"obj\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.Fill(`0)\">\r\n      <param name=\"value\"></param>\r\n    </member>\r\n    <member name=\"M:System.Span`1.GetHashCode\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Span`1.IsEmpty\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Span`1.Item(System.Int32)\">\r\n      <param name=\"index\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Span`1.Length\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.op_Equality(System.Span{`0},System.Span{`0})\">\r\n      <param name=\"left\"></param>\r\n      <param name=\"right\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.op_Implicit(System.ArraySegment{T})~System.Span{T}\">\r\n      <param name=\"arraySegment\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.op_Implicit(System.Span{T})~System.ReadOnlySpan{T}\">\r\n      <param name=\"span\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.op_Implicit(T[])~System.Span{T}\">\r\n      <param name=\"array\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.op_Inequality(System.Span{`0},System.Span{`0})\">\r\n      <param name=\"left\"></param>\r\n      <param name=\"right\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.Slice(System.Int32)\">\r\n      <param name=\"start\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.Slice(System.Int32,System.Int32)\">\r\n      <param name=\"start\"></param>\r\n      <param name=\"length\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.ToArray\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.TryCopyTo(System.Span{`0})\">\r\n      <param name=\"destination\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"T:System.SpanExtensions\">\r\n      \r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.AsBytes``1(System.ReadOnlySpan{``0})\">\r\n      <param name=\"source\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.AsBytes``1(System.Span{``0})\">\r\n      <param name=\"source\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.AsSpan(System.String)\">\r\n      <param name=\"text\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.AsSpan``1(System.ArraySegment{``0})\">\r\n      <param name=\"arraySegment\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.AsSpan``1(``0[])\">\r\n      <param name=\"array\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.CopyTo``1(``0[],System.Span{``0})\">\r\n      <param name=\"array\"></param>\r\n      <param name=\"destination\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf(System.Span{System.Byte},System.Byte)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf(System.ReadOnlySpan{System.Byte},System.Byte)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf``1(System.ReadOnlySpan{``0},``0)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf``1(System.Span{``0},System.ReadOnlySpan{``0})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf``1(System.Span{``0},``0)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.Byte,System.Byte,System.Byte)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value0\"></param>\r\n      <param name=\"value1\"></param>\r\n      <param name=\"value2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.Byte,System.Byte,System.Byte)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value0\"></param>\r\n      <param name=\"value1\"></param>\r\n      <param name=\"value2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.Byte,System.Byte)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value0\"></param>\r\n      <param name=\"value1\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"values\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"values\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.Byte,System.Byte)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value0\"></param>\r\n      <param name=\"value1\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.NonPortableCast``2(System.ReadOnlySpan{``0})\">\r\n      <param name=\"source\"></param>\r\n      <typeparam name=\"TFrom\"></typeparam>\r\n      <typeparam name=\"TTo\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.NonPortableCast``2(System.Span{``0})\">\r\n      <param name=\"source\"></param>\r\n      <typeparam name=\"TFrom\"></typeparam>\r\n      <typeparam name=\"TTo\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.SequenceEqual(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"first\"></param>\r\n      <param name=\"second\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.SequenceEqual(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"first\"></param>\r\n      <param name=\"second\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.SequenceEqual``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})\">\r\n      <param name=\"first\"></param>\r\n      <param name=\"second\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.SequenceEqual``1(System.Span{``0},System.ReadOnlySpan{``0})\">\r\n      <param name=\"first\"></param>\r\n      <param name=\"second\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.StartsWith(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.StartsWith(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.StartsWith``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.StartsWith``1(System.Span{``0},System.ReadOnlySpan{``0})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"T:System.ReadOnlySpan`1\">\r\n      <typeparam name=\"T\"></typeparam>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.#ctor(`0[])\">\r\n      <param name=\"array\"></param>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.#ctor(System.Void*,System.Int32)\">\r\n      <param name=\"pointer\"></param>\r\n      <param name=\"length\"></param>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.#ctor(`0[],System.Int32)\">\r\n      <param name=\"array\"></param>\r\n      <param name=\"start\"></param>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.#ctor(`0[],System.Int32,System.Int32)\">\r\n      <param name=\"array\"></param>\r\n      <param name=\"start\"></param>\r\n      <param name=\"length\"></param>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.CopyTo(System.Span{`0})\">\r\n      <param name=\"destination\"></param>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.DangerousCreate(System.Object,`0@,System.Int32)\">\r\n      <param name=\"obj\"></param>\r\n      <param name=\"objectData\"></param>\r\n      <param name=\"length\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.DangerousGetPinnableReference\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.ReadOnlySpan`1.Empty\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.Equals(System.Object)\">\r\n      <param name=\"obj\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.GetHashCode\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.ReadOnlySpan`1.IsEmpty\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.ReadOnlySpan`1.Item(System.Int32)\">\r\n      <param name=\"index\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.ReadOnlySpan`1.Length\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.op_Equality(System.ReadOnlySpan{`0},System.ReadOnlySpan{`0})\">\r\n      <param name=\"left\"></param>\r\n      <param name=\"right\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.op_Implicit(System.ArraySegment{T})~System.ReadOnlySpan{T}\">\r\n      <param name=\"arraySegment\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.op_Implicit(T[])~System.ReadOnlySpan{T}\">\r\n      <param name=\"array\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.op_Inequality(System.ReadOnlySpan{`0},System.ReadOnlySpan{`0})\">\r\n      <param name=\"left\"></param>\r\n      <param name=\"right\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.Slice(System.Int32)\">\r\n      <param name=\"start\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.Slice(System.Int32,System.Int32)\">\r\n      <param name=\"start\"></param>\r\n      <param name=\"length\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.ToArray\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.TryCopyTo(System.Span{`0})\">\r\n      <param name=\"destination\"></param>\r\n      <returns></returns>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Memory.4.5.5/lib/netcoreapp2.1/_._",
    "content": ""
  },
  {
    "path": "packages/System.Memory.4.5.5/lib/netstandard1.1/System.Memory.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?><doc>\r\n  <assembly>\r\n    <name>System.Memory</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:System.Span`1\">\r\n      <typeparam name=\"T\"></typeparam>\r\n    </member>\r\n    <member name=\"M:System.Span`1.#ctor(`0[])\">\r\n      <param name=\"array\"></param>\r\n    </member>\r\n    <member name=\"M:System.Span`1.#ctor(System.Void*,System.Int32)\">\r\n      <param name=\"pointer\"></param>\r\n      <param name=\"length\"></param>\r\n    </member>\r\n    <member name=\"M:System.Span`1.#ctor(`0[],System.Int32)\">\r\n      <param name=\"array\"></param>\r\n      <param name=\"start\"></param>\r\n    </member>\r\n    <member name=\"M:System.Span`1.#ctor(`0[],System.Int32,System.Int32)\">\r\n      <param name=\"array\"></param>\r\n      <param name=\"start\"></param>\r\n      <param name=\"length\"></param>\r\n    </member>\r\n    <member name=\"M:System.Span`1.Clear\">\r\n      \r\n    </member>\r\n    <member name=\"M:System.Span`1.CopyTo(System.Span{`0})\">\r\n      <param name=\"destination\"></param>\r\n    </member>\r\n    <member name=\"M:System.Span`1.DangerousCreate(System.Object,`0@,System.Int32)\">\r\n      <param name=\"obj\"></param>\r\n      <param name=\"objectData\"></param>\r\n      <param name=\"length\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.DangerousGetPinnableReference\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Span`1.Empty\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.Equals(System.Object)\">\r\n      <param name=\"obj\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.Fill(`0)\">\r\n      <param name=\"value\"></param>\r\n    </member>\r\n    <member name=\"M:System.Span`1.GetHashCode\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Span`1.IsEmpty\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Span`1.Item(System.Int32)\">\r\n      <param name=\"index\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Span`1.Length\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.op_Equality(System.Span{`0},System.Span{`0})\">\r\n      <param name=\"left\"></param>\r\n      <param name=\"right\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.op_Implicit(System.ArraySegment{T})~System.Span{T}\">\r\n      <param name=\"arraySegment\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.op_Implicit(System.Span{T})~System.ReadOnlySpan{T}\">\r\n      <param name=\"span\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.op_Implicit(T[])~System.Span{T}\">\r\n      <param name=\"array\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.op_Inequality(System.Span{`0},System.Span{`0})\">\r\n      <param name=\"left\"></param>\r\n      <param name=\"right\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.Slice(System.Int32)\">\r\n      <param name=\"start\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.Slice(System.Int32,System.Int32)\">\r\n      <param name=\"start\"></param>\r\n      <param name=\"length\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.ToArray\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.TryCopyTo(System.Span{`0})\">\r\n      <param name=\"destination\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"T:System.SpanExtensions\">\r\n      \r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.AsBytes``1(System.ReadOnlySpan{``0})\">\r\n      <param name=\"source\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.AsBytes``1(System.Span{``0})\">\r\n      <param name=\"source\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.AsSpan(System.String)\">\r\n      <param name=\"text\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.AsSpan``1(System.ArraySegment{``0})\">\r\n      <param name=\"arraySegment\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.AsSpan``1(``0[])\">\r\n      <param name=\"array\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.CopyTo``1(``0[],System.Span{``0})\">\r\n      <param name=\"array\"></param>\r\n      <param name=\"destination\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf(System.Span{System.Byte},System.Byte)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf(System.ReadOnlySpan{System.Byte},System.Byte)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf``1(System.ReadOnlySpan{``0},``0)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf``1(System.Span{``0},System.ReadOnlySpan{``0})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf``1(System.Span{``0},``0)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.Byte,System.Byte,System.Byte)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value0\"></param>\r\n      <param name=\"value1\"></param>\r\n      <param name=\"value2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.Byte,System.Byte,System.Byte)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value0\"></param>\r\n      <param name=\"value1\"></param>\r\n      <param name=\"value2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.Byte,System.Byte)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value0\"></param>\r\n      <param name=\"value1\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"values\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"values\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.Byte,System.Byte)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value0\"></param>\r\n      <param name=\"value1\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.NonPortableCast``2(System.ReadOnlySpan{``0})\">\r\n      <param name=\"source\"></param>\r\n      <typeparam name=\"TFrom\"></typeparam>\r\n      <typeparam name=\"TTo\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.NonPortableCast``2(System.Span{``0})\">\r\n      <param name=\"source\"></param>\r\n      <typeparam name=\"TFrom\"></typeparam>\r\n      <typeparam name=\"TTo\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.SequenceEqual(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"first\"></param>\r\n      <param name=\"second\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.SequenceEqual(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"first\"></param>\r\n      <param name=\"second\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.SequenceEqual``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})\">\r\n      <param name=\"first\"></param>\r\n      <param name=\"second\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.SequenceEqual``1(System.Span{``0},System.ReadOnlySpan{``0})\">\r\n      <param name=\"first\"></param>\r\n      <param name=\"second\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.StartsWith(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.StartsWith(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.StartsWith``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.StartsWith``1(System.Span{``0},System.ReadOnlySpan{``0})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"T:System.ReadOnlySpan`1\">\r\n      <typeparam name=\"T\"></typeparam>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.#ctor(`0[])\">\r\n      <param name=\"array\"></param>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.#ctor(System.Void*,System.Int32)\">\r\n      <param name=\"pointer\"></param>\r\n      <param name=\"length\"></param>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.#ctor(`0[],System.Int32)\">\r\n      <param name=\"array\"></param>\r\n      <param name=\"start\"></param>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.#ctor(`0[],System.Int32,System.Int32)\">\r\n      <param name=\"array\"></param>\r\n      <param name=\"start\"></param>\r\n      <param name=\"length\"></param>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.CopyTo(System.Span{`0})\">\r\n      <param name=\"destination\"></param>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.DangerousCreate(System.Object,`0@,System.Int32)\">\r\n      <param name=\"obj\"></param>\r\n      <param name=\"objectData\"></param>\r\n      <param name=\"length\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.DangerousGetPinnableReference\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.ReadOnlySpan`1.Empty\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.Equals(System.Object)\">\r\n      <param name=\"obj\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.GetHashCode\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.ReadOnlySpan`1.IsEmpty\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.ReadOnlySpan`1.Item(System.Int32)\">\r\n      <param name=\"index\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.ReadOnlySpan`1.Length\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.op_Equality(System.ReadOnlySpan{`0},System.ReadOnlySpan{`0})\">\r\n      <param name=\"left\"></param>\r\n      <param name=\"right\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.op_Implicit(System.ArraySegment{T})~System.ReadOnlySpan{T}\">\r\n      <param name=\"arraySegment\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.op_Implicit(T[])~System.ReadOnlySpan{T}\">\r\n      <param name=\"array\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.op_Inequality(System.ReadOnlySpan{`0},System.ReadOnlySpan{`0})\">\r\n      <param name=\"left\"></param>\r\n      <param name=\"right\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.Slice(System.Int32)\">\r\n      <param name=\"start\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.Slice(System.Int32,System.Int32)\">\r\n      <param name=\"start\"></param>\r\n      <param name=\"length\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.ToArray\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.TryCopyTo(System.Span{`0})\">\r\n      <param name=\"destination\"></param>\r\n      <returns></returns>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Memory.4.5.5/lib/netstandard2.0/System.Memory.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?><doc>\r\n  <assembly>\r\n    <name>System.Memory</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:System.Span`1\">\r\n      <typeparam name=\"T\"></typeparam>\r\n    </member>\r\n    <member name=\"M:System.Span`1.#ctor(`0[])\">\r\n      <param name=\"array\"></param>\r\n    </member>\r\n    <member name=\"M:System.Span`1.#ctor(System.Void*,System.Int32)\">\r\n      <param name=\"pointer\"></param>\r\n      <param name=\"length\"></param>\r\n    </member>\r\n    <member name=\"M:System.Span`1.#ctor(`0[],System.Int32)\">\r\n      <param name=\"array\"></param>\r\n      <param name=\"start\"></param>\r\n    </member>\r\n    <member name=\"M:System.Span`1.#ctor(`0[],System.Int32,System.Int32)\">\r\n      <param name=\"array\"></param>\r\n      <param name=\"start\"></param>\r\n      <param name=\"length\"></param>\r\n    </member>\r\n    <member name=\"M:System.Span`1.Clear\">\r\n      \r\n    </member>\r\n    <member name=\"M:System.Span`1.CopyTo(System.Span{`0})\">\r\n      <param name=\"destination\"></param>\r\n    </member>\r\n    <member name=\"M:System.Span`1.DangerousCreate(System.Object,`0@,System.Int32)\">\r\n      <param name=\"obj\"></param>\r\n      <param name=\"objectData\"></param>\r\n      <param name=\"length\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.DangerousGetPinnableReference\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Span`1.Empty\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.Equals(System.Object)\">\r\n      <param name=\"obj\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.Fill(`0)\">\r\n      <param name=\"value\"></param>\r\n    </member>\r\n    <member name=\"M:System.Span`1.GetHashCode\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Span`1.IsEmpty\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Span`1.Item(System.Int32)\">\r\n      <param name=\"index\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Span`1.Length\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.op_Equality(System.Span{`0},System.Span{`0})\">\r\n      <param name=\"left\"></param>\r\n      <param name=\"right\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.op_Implicit(System.ArraySegment{T})~System.Span{T}\">\r\n      <param name=\"arraySegment\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.op_Implicit(System.Span{T})~System.ReadOnlySpan{T}\">\r\n      <param name=\"span\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.op_Implicit(T[])~System.Span{T}\">\r\n      <param name=\"array\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.op_Inequality(System.Span{`0},System.Span{`0})\">\r\n      <param name=\"left\"></param>\r\n      <param name=\"right\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.Slice(System.Int32)\">\r\n      <param name=\"start\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.Slice(System.Int32,System.Int32)\">\r\n      <param name=\"start\"></param>\r\n      <param name=\"length\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.ToArray\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Span`1.TryCopyTo(System.Span{`0})\">\r\n      <param name=\"destination\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"T:System.SpanExtensions\">\r\n      \r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.AsBytes``1(System.ReadOnlySpan{``0})\">\r\n      <param name=\"source\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.AsBytes``1(System.Span{``0})\">\r\n      <param name=\"source\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.AsSpan(System.String)\">\r\n      <param name=\"text\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.AsSpan``1(System.ArraySegment{``0})\">\r\n      <param name=\"arraySegment\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.AsSpan``1(``0[])\">\r\n      <param name=\"array\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.CopyTo``1(``0[],System.Span{``0})\">\r\n      <param name=\"array\"></param>\r\n      <param name=\"destination\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf(System.Span{System.Byte},System.Byte)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf(System.ReadOnlySpan{System.Byte},System.Byte)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf``1(System.ReadOnlySpan{``0},``0)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf``1(System.Span{``0},System.ReadOnlySpan{``0})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOf``1(System.Span{``0},``0)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.Byte,System.Byte,System.Byte)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value0\"></param>\r\n      <param name=\"value1\"></param>\r\n      <param name=\"value2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.Byte,System.Byte,System.Byte)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value0\"></param>\r\n      <param name=\"value1\"></param>\r\n      <param name=\"value2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.Byte,System.Byte)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value0\"></param>\r\n      <param name=\"value1\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"values\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"values\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.Byte,System.Byte)\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value0\"></param>\r\n      <param name=\"value1\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.NonPortableCast``2(System.ReadOnlySpan{``0})\">\r\n      <param name=\"source\"></param>\r\n      <typeparam name=\"TFrom\"></typeparam>\r\n      <typeparam name=\"TTo\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.NonPortableCast``2(System.Span{``0})\">\r\n      <param name=\"source\"></param>\r\n      <typeparam name=\"TFrom\"></typeparam>\r\n      <typeparam name=\"TTo\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.SequenceEqual(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"first\"></param>\r\n      <param name=\"second\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.SequenceEqual(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"first\"></param>\r\n      <param name=\"second\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.SequenceEqual``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})\">\r\n      <param name=\"first\"></param>\r\n      <param name=\"second\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.SequenceEqual``1(System.Span{``0},System.ReadOnlySpan{``0})\">\r\n      <param name=\"first\"></param>\r\n      <param name=\"second\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.StartsWith(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.StartsWith(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.StartsWith``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.SpanExtensions.StartsWith``1(System.Span{``0},System.ReadOnlySpan{``0})\">\r\n      <param name=\"span\"></param>\r\n      <param name=\"value\"></param>\r\n      <typeparam name=\"T\"></typeparam>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"T:System.ReadOnlySpan`1\">\r\n      <typeparam name=\"T\"></typeparam>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.#ctor(`0[])\">\r\n      <param name=\"array\"></param>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.#ctor(System.Void*,System.Int32)\">\r\n      <param name=\"pointer\"></param>\r\n      <param name=\"length\"></param>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.#ctor(`0[],System.Int32)\">\r\n      <param name=\"array\"></param>\r\n      <param name=\"start\"></param>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.#ctor(`0[],System.Int32,System.Int32)\">\r\n      <param name=\"array\"></param>\r\n      <param name=\"start\"></param>\r\n      <param name=\"length\"></param>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.CopyTo(System.Span{`0})\">\r\n      <param name=\"destination\"></param>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.DangerousCreate(System.Object,`0@,System.Int32)\">\r\n      <param name=\"obj\"></param>\r\n      <param name=\"objectData\"></param>\r\n      <param name=\"length\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.DangerousGetPinnableReference\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.ReadOnlySpan`1.Empty\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.Equals(System.Object)\">\r\n      <param name=\"obj\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.GetHashCode\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.ReadOnlySpan`1.IsEmpty\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.ReadOnlySpan`1.Item(System.Int32)\">\r\n      <param name=\"index\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.ReadOnlySpan`1.Length\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.op_Equality(System.ReadOnlySpan{`0},System.ReadOnlySpan{`0})\">\r\n      <param name=\"left\"></param>\r\n      <param name=\"right\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.op_Implicit(System.ArraySegment{T})~System.ReadOnlySpan{T}\">\r\n      <param name=\"arraySegment\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.op_Implicit(T[])~System.ReadOnlySpan{T}\">\r\n      <param name=\"array\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.op_Inequality(System.ReadOnlySpan{`0},System.ReadOnlySpan{`0})\">\r\n      <param name=\"left\"></param>\r\n      <param name=\"right\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.Slice(System.Int32)\">\r\n      <param name=\"start\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.Slice(System.Int32,System.Int32)\">\r\n      <param name=\"start\"></param>\r\n      <param name=\"length\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.ToArray\">\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.ReadOnlySpan`1.TryCopyTo(System.Span{`0})\">\r\n      <param name=\"destination\"></param>\r\n      <returns></returns>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Memory.4.5.5/ref/netcoreapp2.1/_._",
    "content": ""
  },
  {
    "path": "packages/System.Memory.4.5.5/useSharedDesignerContext.txt",
    "content": ""
  },
  {
    "path": "packages/System.Memory.4.5.5/version.txt",
    "content": "32b491939fbd125f304031c35038b1e14b4e3958\r\n"
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/LICENSE.TXT",
    "content": "The MIT License (MIT)\r\n\r\nCopyright (c) .NET Foundation and Contributors\r\n\r\nAll rights reserved.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n"
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/THIRD-PARTY-NOTICES.TXT",
    "content": ".NET Core uses third-party libraries or other resources that may be\r\ndistributed under licenses different than the .NET Core software.\r\n\r\nIn the event that we accidentally failed to list a required notice, please\r\nbring it to our attention. Post an issue or email us:\r\n\r\n           dotnet@microsoft.com\r\n\r\nThe attached notices are provided for information only.\r\n\r\nLicense notice for Slicing-by-8 \r\n-------------------------------\r\n\r\nhttp://sourceforge.net/projects/slicing-by-8/\r\n\r\nCopyright (c) 2004-2006 Intel Corporation - All Rights Reserved\r\n\r\n\r\nThis software program is licensed subject to the BSD License,  available at\r\nhttp://www.opensource.org/licenses/bsd-license.html.\r\n\r\n\r\nLicense notice for Unicode data\r\n-------------------------------\r\n\r\nhttp://www.unicode.org/copyright.html#License\r\n\r\nCopyright © 1991-2017 Unicode, Inc. All rights reserved.\r\nDistributed under the Terms of Use in http://www.unicode.org/copyright.html.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining\r\na copy of the Unicode data files and any associated documentation\r\n(the \"Data Files\") or Unicode software and any associated documentation\r\n(the \"Software\") to deal in the Data Files or Software\r\nwithout restriction, including without limitation the rights to use,\r\ncopy, modify, merge, publish, distribute, and/or sell copies of\r\nthe Data Files or Software, and to permit persons to whom the Data Files\r\nor Software are furnished to do so, provided that either\r\n(a) this copyright and permission notice appear with all copies\r\nof the Data Files or Software, or\r\n(b) this copyright and permission notice appear in associated\r\nDocumentation.\r\n\r\nTHE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY OF\r\nANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\r\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r\nNONINFRINGEMENT OF THIRD PARTY RIGHTS.\r\nIN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS\r\nNOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL\r\nDAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,\r\nDATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\r\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THE DATA FILES OR SOFTWARE.\r\n\r\nExcept as contained in this notice, the name of a copyright holder\r\nshall not be used in advertising or otherwise to promote the sale,\r\nuse or other dealings in these Data Files or Software without prior\r\nwritten authorization of the copyright holder.\r\n\r\nLicense notice for Zlib \r\n-----------------------\r\n\r\nhttps://github.com/madler/zlib\r\nhttp://zlib.net/zlib_license.html\r\n\r\n/* zlib.h -- interface of the 'zlib' general purpose compression library\r\n  version 1.2.11, January 15th, 2017\r\n\r\n  Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler\r\n\r\n  This software is provided 'as-is', without any express or implied\r\n  warranty.  In no event will the authors be held liable for any damages\r\n  arising from the use of this software.\r\n\r\n  Permission is granted to anyone to use this software for any purpose,\r\n  including commercial applications, and to alter it and redistribute it\r\n  freely, subject to the following restrictions:\r\n\r\n  1. The origin of this software must not be misrepresented; you must not\r\n     claim that you wrote the original software. If you use this software\r\n     in a product, an acknowledgment in the product documentation would be\r\n     appreciated but is not required.\r\n  2. Altered source versions must be plainly marked as such, and must not be\r\n     misrepresented as being the original software.\r\n  3. This notice may not be removed or altered from any source distribution.\r\n\r\n  Jean-loup Gailly        Mark Adler\r\n  jloup@gzip.org          madler@alumni.caltech.edu\r\n\r\n*/\r\n\r\nLicense notice for Mono\r\n-------------------------------\r\n\r\nhttp://www.mono-project.com/docs/about-mono/\r\n\r\nCopyright (c) .NET Foundation Contributors\r\n\r\nMIT License\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software  and associated documentation files (the Software), to deal\r\nin the Software without restriction,  including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense,  and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so,  subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, \r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF \r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND \r\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE \r\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION \r\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION \r\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n\r\nLicense notice for International Organization for Standardization\r\n-----------------------------------------------------------------\r\n\r\nPortions (C) International Organization for Standardization 1986:\r\n     Permission to copy in any form is granted for use with\r\n     conforming SGML systems and applications as defined in\r\n     ISO 8879, provided this notice is included in all copies.\r\n\r\nLicense notice for Intel\r\n------------------------\r\n\r\n\"Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are met:\r\n\r\n1. Redistributions of source code must retain the above copyright notice, this\r\nlist of conditions and the following disclaimer.\r\n\r\n2. Redistributions in binary form must reproduce the above copyright notice,\r\nthis list of conditions and the following disclaimer in the documentation\r\nand/or other materials provided with the distribution.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\r\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\r\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\r\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\r\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\r\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\r\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\r\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r\n\r\nLicense notice for Xamarin and Novell\r\n-------------------------------------\r\n\r\nCopyright (c) 2015 Xamarin, Inc (http://www.xamarin.com)\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n\r\nCopyright (c) 2011 Novell, Inc (http://www.novell.com)\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n\r\nThird party notice for W3C\r\n--------------------------\r\n\r\n\"W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE\r\nStatus: This license takes effect 13 May, 2015.\r\nThis work is being provided by the copyright holders under the following license.\r\nLicense\r\nBy obtaining and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions.\r\nPermission to copy, modify, and distribute this work, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the work or portions thereof, including modifications:\r\nThe full text of this NOTICE in a location viewable to users of the redistributed or derivative work.\r\nAny pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software and Document Short Notice should be included.\r\nNotice of any changes or modifications, through a copyright statement on the new code or document such as \"This software or document includes material copied from or derived from [title and URI of the W3C document]. Copyright © [YEAR] W3C® (MIT, ERCIM, Keio, Beihang).\"\r\nDisclaimers\r\nTHIS WORK IS PROVIDED \"AS IS,\" AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.\r\nCOPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT.\r\nThe name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders.\"\r\n\r\nLicense notice for Bit Twiddling Hacks\r\n--------------------------------------\r\n\r\nBit Twiddling Hacks\r\n\r\nBy Sean Eron Anderson\r\nseander@cs.stanford.edu\r\n\r\nIndividually, the code snippets here are in the public domain (unless otherwise\r\nnoted) — feel free to use them however you please. The aggregate collection and\r\ndescriptions are © 1997-2005 Sean Eron Anderson. The code and descriptions are\r\ndistributed in the hope that they will be useful, but WITHOUT ANY WARRANTY and\r\nwithout even the implied warranty of merchantability or fitness for a particular\r\npurpose. \r\n\r\nLicense notice for Brotli\r\n--------------------------------------\r\n\r\nCopyright (c) 2009, 2010, 2013-2016 by the Brotli Authors.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n\r\ncompress_fragment.c:\r\nCopyright (c) 2011, Google Inc.\r\nAll rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are\r\nmet:\r\n\r\n    * Redistributions of source code must retain the above copyright\r\nnotice, this list of conditions and the following disclaimer.\r\n    * Redistributions in binary form must reproduce the above\r\ncopyright notice, this list of conditions and the following disclaimer\r\nin the documentation and/or other materials provided with the\r\ndistribution.\r\n    * Neither the name of Google Inc. nor the names of its\r\ncontributors may be used to endorse or promote products derived from\r\nthis software without specific prior written permission.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\r\n\"\"AS IS\"\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\r\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\r\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\r\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r\n\r\ndecode_fuzzer.c:\r\nCopyright (c) 2015 The Chromium Authors. All rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are\r\nmet:\r\n\r\n   * Redistributions of source code must retain the above copyright\r\nnotice, this list of conditions and the following disclaimer.\r\n   * Redistributions in binary form must reproduce the above\r\ncopyright notice, this list of conditions and the following disclaimer\r\nin the documentation and/or other materials provided with the\r\ndistribution.\r\n   * Neither the name of Google Inc. nor the names of its\r\ncontributors may be used to endorse or promote products derived from\r\nthis software without specific prior written permission.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\r\n\"\"AS IS\"\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\r\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\r\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\r\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\"\r\n\r\n"
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/lib/MonoAndroid10/_._",
    "content": ""
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/lib/MonoTouch10/_._",
    "content": ""
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/lib/net46/System.Numerics.Vectors.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?><doc>\r\n  <assembly>\r\n    <name>System.Numerics.Vectors</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:System.Numerics.Matrix3x2\">\r\n      <summary>Represents a 3x2 matrix.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a 3x2 matrix from the specified components.</summary>\r\n      <param name=\"m11\">The value to assign to the first element in the first row.</param>\r\n      <param name=\"m12\">The value to assign to the second element in the first row.</param>\r\n      <param name=\"m21\">The value to assign to the first element in the second row.</param>\r\n      <param name=\"m22\">The value to assign to the second element in the second row.</param>\r\n      <param name=\"m31\">The value to assign to the first element in the third row.</param>\r\n      <param name=\"m32\">The value to assign to the second element in the third row.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Add(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateRotation(System.Single)\">\r\n      <summary>Creates a rotation matrix using the given rotation in radians.</summary>\r\n      <param name=\"radians\">The amount of rotation, in radians.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateRotation(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a rotation matrix using the specified rotation in radians and a center point.</summary>\r\n      <param name=\"radians\">The amount of rotation, in radians.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Single)\">\r\n      <summary>Creates a scaling matrix from the specified X and Y components.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix that scales uniformly with the specified scale with an offset from the specified center.</summary>\r\n      <param name=\"scale\">The uniform scale to use.</param>\r\n      <param name=\"centerPoint\">The center offset.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix that is offset by a given center point.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single)\">\r\n      <summary>Creates a scaling matrix that scales uniformly with the given scale.</summary>\r\n      <param name=\"scale\">The uniform scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale with an offset from the specified center point.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <param name=\"centerPoint\">The center offset.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateSkew(System.Single,System.Single)\">\r\n      <summary>Creates a skew matrix from the specified angles in radians.</summary>\r\n      <param name=\"radiansX\">The X angle, in radians.</param>\r\n      <param name=\"radiansY\">The Y angle, in radians.</param>\r\n      <returns>The skew matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateSkew(System.Single,System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a skew matrix from the specified angles in radians and a center point.</summary>\r\n      <param name=\"radiansX\">The X angle, in radians.</param>\r\n      <param name=\"radiansY\">The Y angle, in radians.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The skew matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateTranslation(System.Numerics.Vector2)\">\r\n      <summary>Creates a translation matrix from the specified 2-dimensional vector.</summary>\r\n      <param name=\"position\">The translation position.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateTranslation(System.Single,System.Single)\">\r\n      <summary>Creates a translation matrix from the specified X and Y components.</summary>\r\n      <param name=\"xPosition\">The X position.</param>\r\n      <param name=\"yPosition\">The Y position.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Equals(System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether this instance and another 3x2 matrix are equal.</summary>\r\n      <param name=\"other\">The other matrix.</param>\r\n      <returns>true if the two matrices are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.GetDeterminant\">\r\n      <summary>Calculates the determinant for this matrix.</summary>\r\n      <returns>The determinant.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.Identity\">\r\n      <summary>Gets the multiplicative identity matrix.</summary>\r\n      <returns>The multiplicative identify matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Invert(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2@)\">\r\n      <summary>Inverts the specified matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The matrix to invert.</param>\r\n      <param name=\"result\">When this method returns, contains the inverted matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was converted successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.IsIdentity\">\r\n      <summary>Indicates whether the current matrix is the identity matrix.</summary>\r\n      <returns>true if the current matrix is the identity matrix; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Lerp(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Performs a linear interpolation from one matrix to a second matrix based on a value that specifies the weighting of the second matrix.</summary>\r\n      <param name=\"matrix1\">The first matrix.</param>\r\n      <param name=\"matrix2\">The second matrix.</param>\r\n      <param name=\"amount\">The relative weighting of matrix2.</param>\r\n      <returns>The interpolated matrix.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M11\">\r\n      <summary>The first element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M12\">\r\n      <summary>The second element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M21\">\r\n      <summary>The first element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M22\">\r\n      <summary>The second element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M31\">\r\n      <summary>The first element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M32\">\r\n      <summary>The second element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Multiply(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Multiply(System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Negate(System.Numerics.Matrix3x2)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Addition(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Equality(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Inequality(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are not equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Multiply(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Multiply(System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Subtraction(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_UnaryNegation(System.Numerics.Matrix3x2)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Subtract(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.ToString\">\r\n      <summary>Returns a string that represents this matrix.</summary>\r\n      <returns>The string representation of this matrix.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.Translation\">\r\n      <summary>Gets or sets the translation component of this matrix.</summary>\r\n      <returns>The translation component of the current instance.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Matrix4x4\">\r\n      <summary>Represents a 4x4 matrix.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.#ctor(System.Numerics.Matrix3x2)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Matrix4x4\"></see> object from a specified <see cref=\"T:System.Numerics.Matrix3x2\"></see> object.</summary>\r\n      <param name=\"value\">A 3x2 matrix.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a 4x4 matrix from the specified components.</summary>\r\n      <param name=\"m11\">The value to assign to the first element in the first row.</param>\r\n      <param name=\"m12\">The value to assign to the second element in the first row.</param>\r\n      <param name=\"m13\">The value to assign to the third element in the first row.</param>\r\n      <param name=\"m14\">The value to assign to the fourth element in the first row.</param>\r\n      <param name=\"m21\">The value to assign to the first element in the second row.</param>\r\n      <param name=\"m22\">The value to assign to the second element in the second row.</param>\r\n      <param name=\"m23\">The value to assign to the third element in the second row.</param>\r\n      <param name=\"m24\">The value to assign to the third element in the second row.</param>\r\n      <param name=\"m31\">The value to assign to the first element in the third row.</param>\r\n      <param name=\"m32\">The value to assign to the second element in the third row.</param>\r\n      <param name=\"m33\">The value to assign to the third element in the third row.</param>\r\n      <param name=\"m34\">The value to assign to the fourth element in the third row.</param>\r\n      <param name=\"m41\">The value to assign to the first element in the fourth row.</param>\r\n      <param name=\"m42\">The value to assign to the second element in the fourth row.</param>\r\n      <param name=\"m43\">The value to assign to the third element in the fourth row.</param>\r\n      <param name=\"m44\">The value to assign to the fourth element in the fourth row.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Add(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateBillboard(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a spherical billboard that rotates around a specified object position.</summary>\r\n      <param name=\"objectPosition\">The position of the object that the billboard will rotate around.</param>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"cameraUpVector\">The up vector of the camera.</param>\r\n      <param name=\"cameraForwardVector\">The forward vector of the camera.</param>\r\n      <returns>The created billboard.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateConstrainedBillboard(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a cylindrical billboard that rotates around a specified axis.</summary>\r\n      <param name=\"objectPosition\">The position of the object that the billboard will rotate around.</param>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"rotateAxis\">The axis to rotate the billboard around.</param>\r\n      <param name=\"cameraForwardVector\">The forward vector of the camera.</param>\r\n      <param name=\"objectForwardVector\">The forward vector of the object.</param>\r\n      <returns>The billboard matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromAxisAngle(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a matrix that rotates around an arbitrary vector.</summary>\r\n      <param name=\"axis\">The axis to rotate around.</param>\r\n      <param name=\"angle\">The angle to rotate around axis, in radians.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromQuaternion(System.Numerics.Quaternion)\">\r\n      <summary>Creates a rotation matrix from the specified Quaternion rotation value.</summary>\r\n      <param name=\"quaternion\">The source Quaternion.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromYawPitchRoll(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a rotation matrix from the specified yaw, pitch, and roll.</summary>\r\n      <param name=\"yaw\">The angle of rotation, in radians, around the Y axis.</param>\r\n      <param name=\"pitch\">The angle of rotation, in radians, around the X axis.</param>\r\n      <param name=\"roll\">The angle of rotation, in radians, around the Z axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateLookAt(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a view matrix.</summary>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"cameraTarget\">The target towards which the camera is pointing.</param>\r\n      <param name=\"cameraUpVector\">The direction that is &amp;quot;up&amp;quot; from the camera&amp;#39;s point of view.</param>\r\n      <returns>The view matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateOrthographic(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates an orthographic perspective matrix from the given view volume dimensions.</summary>\r\n      <param name=\"width\">The width of the view volume.</param>\r\n      <param name=\"height\">The height of the view volume.</param>\r\n      <param name=\"zNearPlane\">The minimum Z-value of the view volume.</param>\r\n      <param name=\"zFarPlane\">The maximum Z-value of the view volume.</param>\r\n      <returns>The orthographic projection matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateOrthographicOffCenter(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a customized orthographic projection matrix.</summary>\r\n      <param name=\"left\">The minimum X-value of the view volume.</param>\r\n      <param name=\"right\">The maximum X-value of the view volume.</param>\r\n      <param name=\"bottom\">The minimum Y-value of the view volume.</param>\r\n      <param name=\"top\">The maximum Y-value of the view volume.</param>\r\n      <param name=\"zNearPlane\">The minimum Z-value of the view volume.</param>\r\n      <param name=\"zFarPlane\">The maximum Z-value of the view volume.</param>\r\n      <returns>The orthographic projection matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspective(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a perspective projection matrix from the given view volume dimensions.</summary>\r\n      <param name=\"width\">The width of the view volume at the near view plane.</param>\r\n      <param name=\"height\">The height of the view volume at the near view plane.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspectiveFieldOfView(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a perspective projection matrix based on a field of view, aspect ratio, and near and far view plane distances.</summary>\r\n      <param name=\"fieldOfView\">The field of view in the y direction, in radians.</param>\r\n      <param name=\"aspectRatio\">The aspect ratio, defined as view space width divided by height.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"fieldOfView\">fieldOfView</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"fieldOfView\">fieldOfView</paramref> is greater than or equal to <see cref=\"System.Math.PI\"></see>.  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspectiveOffCenter(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a customized perspective projection matrix.</summary>\r\n      <param name=\"left\">The minimum x-value of the view volume at the near view plane.</param>\r\n      <param name=\"right\">The maximum x-value of the view volume at the near view plane.</param>\r\n      <param name=\"bottom\">The minimum y-value of the view volume at the near view plane.</param>\r\n      <param name=\"top\">The maximum y-value of the view volume at the near view plane.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateReflection(System.Numerics.Plane)\">\r\n      <summary>Creates a matrix that reflects the coordinate system about a specified plane.</summary>\r\n      <param name=\"value\">The plane about which to create a reflection.</param>\r\n      <returns>A new matrix expressing the reflection.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationX(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the X axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the X axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationX(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a matrix for rotating points around the X axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the X axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationY(System.Single,System.Numerics.Vector3)\">\r\n      <summary>The amount, in radians, by which to rotate around the Y axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Y-axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationY(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the Y axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Y-axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationZ(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the Z axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Z-axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationZ(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a matrix for rotating points around the Z axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Z-axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single)\">\r\n      <summary>Creates a uniform scaling matrix that scale equally on each axis.</summary>\r\n      <param name=\"scale\">The uniform scaling factor.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix with a center point.</summary>\r\n      <param name=\"scales\">The vector that contains the amount to scale on each axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a uniform scaling matrix that scales equally on each axis with a center point.</summary>\r\n      <param name=\"scale\">The uniform scaling factor.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a scaling matrix from the specified X, Y, and Z components.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"zScale\">The value to scale by on the Z axis.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Single,System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix that is offset by a given center point.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"zScale\">The value to scale by on the Z axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateShadow(System.Numerics.Vector3,System.Numerics.Plane)\">\r\n      <summary>Creates a matrix that flattens geometry into a specified plane as if casting a shadow from a specified light source.</summary>\r\n      <param name=\"lightDirection\">The direction from which the light that will cast the shadow is coming.</param>\r\n      <param name=\"plane\">The plane onto which the new matrix should flatten geometry so as to cast a shadow.</param>\r\n      <returns>A new matrix that can be used to flatten geometry onto the specified plane from the specified direction.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateTranslation(System.Numerics.Vector3)\">\r\n      <summary>Creates a translation matrix from the specified 3-dimensional vector.</summary>\r\n      <param name=\"position\">The amount to translate in each axis.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateTranslation(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a translation matrix from the specified X, Y, and Z components.</summary>\r\n      <param name=\"xPosition\">The amount to translate on the X axis.</param>\r\n      <param name=\"yPosition\">The amount to translate on the Y axis.</param>\r\n      <param name=\"zPosition\">The amount to translate on the Z axis.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateWorld(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a world matrix with the specified parameters.</summary>\r\n      <param name=\"position\">The position of the object.</param>\r\n      <param name=\"forward\">The forward direction of the object.</param>\r\n      <param name=\"up\">The upward direction of the object. Its value is usually [0, 1, 0].</param>\r\n      <returns>The world matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Decompose(System.Numerics.Matrix4x4,System.Numerics.Vector3@,System.Numerics.Quaternion@,System.Numerics.Vector3@)\">\r\n      <summary>Attempts to extract the scale, translation, and rotation components from the given scale, rotation, or translation matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The source matrix.</param>\r\n      <param name=\"scale\">When this method returns, contains the scaling component of the transformation matrix if the operation succeeded.</param>\r\n      <param name=\"rotation\">When this method returns, contains the rotation component of the transformation matrix if the operation succeeded.</param>\r\n      <param name=\"translation\">When the method returns, contains the translation component of the transformation matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was decomposed successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Equals(System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether this instance and another 4x4 matrix are equal.</summary>\r\n      <param name=\"other\">The other matrix.</param>\r\n      <returns>true if the two matrices are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.GetDeterminant\">\r\n      <summary>Calculates the determinant of the current 4x4 matrix.</summary>\r\n      <returns>The determinant.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.Identity\">\r\n      <summary>Gets the multiplicative identity matrix.</summary>\r\n      <returns>Gets the multiplicative identity matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Invert(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4@)\">\r\n      <summary>Inverts the specified matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The matrix to invert.</param>\r\n      <param name=\"result\">When this method returns, contains the inverted matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was converted successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.IsIdentity\">\r\n      <summary>Indicates whether the current matrix is the identity matrix.</summary>\r\n      <returns>true if the current matrix is the identity matrix; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Lerp(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Performs a linear interpolation from one matrix to a second matrix based on a value that specifies the weighting of the second matrix.</summary>\r\n      <param name=\"matrix1\">The first matrix.</param>\r\n      <param name=\"matrix2\">The second matrix.</param>\r\n      <param name=\"amount\">The relative weighting of matrix2.</param>\r\n      <returns>The interpolated matrix.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M11\">\r\n      <summary>The first element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M12\">\r\n      <summary>The second element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M13\">\r\n      <summary>The third element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M14\">\r\n      <summary>The fourth element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M21\">\r\n      <summary>The first element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M22\">\r\n      <summary>The second element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M23\">\r\n      <summary>The third element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M24\">\r\n      <summary>The fourth element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M31\">\r\n      <summary>The first element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M32\">\r\n      <summary>The second element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M33\">\r\n      <summary>The third element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M34\">\r\n      <summary>The fourth element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M41\">\r\n      <summary>The first element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M42\">\r\n      <summary>The second element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M43\">\r\n      <summary>The third element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M44\">\r\n      <summary>The fourth element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Multiply(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Multiply(System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Negate(System.Numerics.Matrix4x4)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Addition(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Equality(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to care</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Inequality(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are not equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Multiply(System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Multiply(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Subtraction(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_UnaryNegation(System.Numerics.Matrix4x4)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Subtract(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.ToString\">\r\n      <summary>Returns a string that represents this matrix.</summary>\r\n      <returns>The string representation of this matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Transform(System.Numerics.Matrix4x4,System.Numerics.Quaternion)\">\r\n      <summary>Transforms the specified matrix by applying the specified Quaternion rotation.</summary>\r\n      <param name=\"value\">The matrix to transform.</param>\r\n      <param name=\"rotation\">The rotation t apply.</param>\r\n      <returns>The transformed matrix.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.Translation\">\r\n      <summary>Gets or sets the translation component of this matrix.</summary>\r\n      <returns>The translation component of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Transpose(System.Numerics.Matrix4x4)\">\r\n      <summary>Transposes the rows and columns of a matrix.</summary>\r\n      <param name=\"matrix\">The matrix to transpose.</param>\r\n      <returns>The transposed matrix.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Plane\">\r\n      <summary>Represents a three-dimensional plane.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Numerics.Vector4)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from a specified four-dimensional vector.</summary>\r\n      <param name=\"value\">A vector whose first three elements describe the normal vector, and whose <see cref=\"F:System.Numerics.Vector4.W\"></see> defines the distance along that normal from the origin.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from a specified normal and the distance along the normal from the origin.</summary>\r\n      <param name=\"normal\">The plane&amp;#39;s normal vector.</param>\r\n      <param name=\"d\">The plane&amp;#39;s distance from the origin along its normal vector.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from the X, Y, and Z components of its normal, and its distance from the origin on that normal.</summary>\r\n      <param name=\"x\">The X component of the normal.</param>\r\n      <param name=\"y\">The Y component of the normal.</param>\r\n      <param name=\"z\">The Z component of the normal.</param>\r\n      <param name=\"d\">The distance of the plane along its normal from the origin.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.CreateFromVertices(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object that contains three specified points.</summary>\r\n      <param name=\"point1\">The first point defining the plane.</param>\r\n      <param name=\"point2\">The second point defining the plane.</param>\r\n      <param name=\"point3\">The third point defining the plane.</param>\r\n      <returns>The plane containing the three points.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Plane.D\">\r\n      <summary>The distance of the plane along its normal from the origin.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Dot(System.Numerics.Plane,System.Numerics.Vector4)\">\r\n      <summary>Calculates the dot product of a plane and a 4-dimensional vector.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The four-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.DotCoordinate(System.Numerics.Plane,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of a specified three-dimensional vector and the normal vector of this plane plus the distance (<see cref=\"F:System.Numerics.Plane.D\"></see>) value of the plane.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The 3-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.DotNormal(System.Numerics.Plane,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of a specified three-dimensional vector and the <see cref=\"F:System.Numerics.Plane.Normal\"></see> vector of this plane.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The three-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Equals(System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether this instance and another plane object are equal.</summary>\r\n      <param name=\"other\">The other plane.</param>\r\n      <returns>true if the two planes are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Plane.Normal\">\r\n      <summary>The normal vector of the plane.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Normalize(System.Numerics.Plane)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Plane\"></see> object whose normal vector is the source plane&amp;#39;s normal vector normalized.</summary>\r\n      <param name=\"value\">The source plane.</param>\r\n      <returns>The normalized plane.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.op_Equality(System.Numerics.Plane,System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether two planes are equal.</summary>\r\n      <param name=\"value1\">The first plane to compare.</param>\r\n      <param name=\"value2\">The second plane to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.op_Inequality(System.Numerics.Plane,System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether two planes are not equal.</summary>\r\n      <param name=\"value1\">The first plane to compare.</param>\r\n      <param name=\"value2\">The second plane to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.ToString\">\r\n      <summary>Returns the string representation of this plane object.</summary>\r\n      <returns>A string that represents this <see cref=\"System.Numerics.Plane\"></see> object.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Transform(System.Numerics.Plane,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a normalized plane by a 4x4 matrix.</summary>\r\n      <param name=\"plane\">The normalized plane to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix to apply to plane.</param>\r\n      <returns>The transformed plane.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Transform(System.Numerics.Plane,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a normalized plane by a Quaternion rotation.</summary>\r\n      <param name=\"plane\">The normalized plane to transform.</param>\r\n      <param name=\"rotation\">The Quaternion rotation to apply to the plane.</param>\r\n      <returns>A new plane that results from applying the Quaternion rotation.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Quaternion\">\r\n      <summary>Represents a vector that is used to encode three-dimensional physical rotations.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a quaternion from the specified vector and rotation parts.</summary>\r\n      <param name=\"vectorPart\">The vector part of the quaternion.</param>\r\n      <param name=\"scalarPart\">The rotation part of the quaternion.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Constructs a quaternion from the specified components.</summary>\r\n      <param name=\"x\">The value to assign to the X component of the quaternion.</param>\r\n      <param name=\"y\">The value to assign to the Y component of the quaternion.</param>\r\n      <param name=\"z\">The value to assign to the Z component of the quaternion.</param>\r\n      <param name=\"w\">The value to assign to the W component of the quaternion.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Add(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Adds each element in one quaternion with its corresponding element in a second quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Concatenate(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Concatenates two quaternions.</summary>\r\n      <param name=\"value1\">The first quaternion rotation in the series.</param>\r\n      <param name=\"value2\">The second quaternion rotation in the series.</param>\r\n      <returns>A new quaternion representing the concatenation of the <paramref name=\"value1\">value1</paramref> rotation followed by the <paramref name=\"value2\">value2</paramref> rotation.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Conjugate(System.Numerics.Quaternion)\">\r\n      <summary>Returns the conjugate of a specified quaternion.</summary>\r\n      <param name=\"value\">The quaternion.</param>\r\n      <returns>A new quaternion that is the conjugate of value.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromAxisAngle(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a quaternion from a vector and an angle to rotate about the vector.</summary>\r\n      <param name=\"axis\">The vector to rotate around.</param>\r\n      <param name=\"angle\">The angle, in radians, to rotate around the vector.</param>\r\n      <returns>The newly created quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromRotationMatrix(System.Numerics.Matrix4x4)\">\r\n      <summary>Creates a quaternion from the specified rotation matrix.</summary>\r\n      <param name=\"matrix\">The rotation matrix.</param>\r\n      <returns>The newly created quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromYawPitchRoll(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a new quaternion from the given yaw, pitch, and roll.</summary>\r\n      <param name=\"yaw\">The yaw angle, in radians, around the Y axis.</param>\r\n      <param name=\"pitch\">The pitch angle, in radians, around the X axis.</param>\r\n      <param name=\"roll\">The roll angle, in radians, around the Z axis.</param>\r\n      <returns>The resulting quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Divide(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Divides one quaternion by a second quaternion.</summary>\r\n      <param name=\"value1\">The dividend.</param>\r\n      <param name=\"value2\">The divisor.</param>\r\n      <returns>The quaternion that results from dividing <paramref name=\"value1\">value1</paramref> by <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Dot(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Calculates the dot product of two quaternions.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Equals(System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether this instance and another quaternion are equal.</summary>\r\n      <param name=\"other\">The other quaternion.</param>\r\n      <returns>true if the two quaternions are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Quaternion.Identity\">\r\n      <summary>Gets a quaternion that represents no rotation.</summary>\r\n      <returns>A quaternion whose values are (0, 0, 0, 1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Inverse(System.Numerics.Quaternion)\">\r\n      <summary>Returns the inverse of a quaternion.</summary>\r\n      <param name=\"value\">The quaternion.</param>\r\n      <returns>The inverted quaternion.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Quaternion.IsIdentity\">\r\n      <summary>Gets a value that indicates whether the current instance is the identity quaternion.</summary>\r\n      <returns>true if the current instance is the identity quaternion; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Length\">\r\n      <summary>Calculates the length of the quaternion.</summary>\r\n      <returns>The computed length of the quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.LengthSquared\">\r\n      <summary>Calculates the squared length of the quaternion.</summary>\r\n      <returns>The length squared of the quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Lerp(System.Numerics.Quaternion,System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Performs a linear interpolation between two quaternions based on a value that specifies the weighting of the second quaternion.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <param name=\"amount\">The relative weight of quaternion2 in the interpolation.</param>\r\n      <returns>The interpolated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Multiply(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns the quaternion that results from multiplying two quaternions together.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The product quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Multiply(System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Returns the quaternion that results from scaling all the components of a specified quaternion by a scalar factor.</summary>\r\n      <param name=\"value1\">The source quaternion.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The scaled quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Negate(System.Numerics.Quaternion)\">\r\n      <summary>Reverses the sign of each component of the quaternion.</summary>\r\n      <param name=\"value\">The quaternion to negate.</param>\r\n      <returns>The negated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Normalize(System.Numerics.Quaternion)\">\r\n      <summary>Divides each component of a specified <see cref=\"T:System.Numerics.Quaternion\"></see> by its length.</summary>\r\n      <param name=\"value\">The quaternion to normalize.</param>\r\n      <returns>The normalized quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Addition(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Adds each element in one quaternion with its corresponding element in a second quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Division(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Divides one quaternion by a second quaternion.</summary>\r\n      <param name=\"value1\">The dividend.</param>\r\n      <param name=\"value2\">The divisor.</param>\r\n      <returns>The quaternion that results from dividing <paramref name=\"value1\">value1</paramref> by <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Equality(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether two quaternions are equal.</summary>\r\n      <param name=\"value1\">The first quaternion to compare.</param>\r\n      <param name=\"value2\">The second quaternion to compare.</param>\r\n      <returns>true if the two quaternions are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Inequality(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether two quaternions are not equal.</summary>\r\n      <param name=\"value1\">The first quaternion to compare.</param>\r\n      <param name=\"value2\">The second quaternion to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Multiply(System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Returns the quaternion that results from scaling all the components of a specified quaternion by a scalar factor.</summary>\r\n      <param name=\"value1\">The source quaternion.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The scaled quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Multiply(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns the quaternion that results from multiplying two quaternions together.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The product quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Subtraction(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Subtracts each element in a second quaternion from its corresponding element in a first quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_UnaryNegation(System.Numerics.Quaternion)\">\r\n      <summary>Reverses the sign of each component of the quaternion.</summary>\r\n      <param name=\"value\">The quaternion to negate.</param>\r\n      <returns>The negated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Slerp(System.Numerics.Quaternion,System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Interpolates between two quaternions, using spherical linear interpolation.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <param name=\"amount\">The relative weight of the second quaternion in the interpolation.</param>\r\n      <returns>The interpolated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Subtract(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Subtracts each element in a second quaternion from its corresponding element in a first quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.ToString\">\r\n      <summary>Returns a string that represents this quaternion.</summary>\r\n      <returns>The string representation of this quaternion.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.W\">\r\n      <summary>The rotation component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.X\">\r\n      <summary>The X value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.Y\">\r\n      <summary>The Y value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.Z\">\r\n      <summary>The Z value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector`1\">\r\n      <summary>Represents a single vector of a specified numeric type that is suitable for low-level optimization of parallel algorithms.</summary>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0)\">\r\n      <summary>Creates a vector whose components are of a specified type.</summary>\r\n      <param name=\"value\">The numeric type that defines the type of the components in the vector.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0[])\">\r\n      <summary>Creates a vector from a specified array.</summary>\r\n      <param name=\"values\">A numeric array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"values\">values</paramref> is null.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0[],System.Int32)\">\r\n      <summary>Creates a vector from a specified array starting at a specified index position.</summary>\r\n      <param name=\"values\">A numeric array.</param>\r\n      <param name=\"index\">The starting index position from which to create the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"values\">values</paramref> is null.</exception>\r\n      <exception cref=\"T:System.IndexOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n The length of <paramref name=\"values\">values</paramref> minus <paramref name=\"index\">index</paramref> is less than <see cref=\"System.Numerics.Vector`1.Count\"></see>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.CopyTo(`0[])\">\r\n      <summary>Copies the vector instance to a specified destination array.</summary>\r\n      <param name=\"destination\">The array to receive a copy of the vector values.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"destination\">destination</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current vector is greater than the number of elements available in the <paramref name=\"destination\">destination</paramref> array.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.CopyTo(`0[],System.Int32)\">\r\n      <summary>Copies the vector instance to a specified destination array starting at a specified index position.</summary>\r\n      <param name=\"destination\">The array to receive a copy of the vector values.</param>\r\n      <param name=\"startIndex\">The starting index in destination at which to begin the copy operation.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"destination\">destination</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than the number of elements available from <paramref name=\"startIndex\">startIndex</paramref> to the end of the <paramref name=\"destination\">destination</paramref> array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero or greater than the last index in <paramref name=\"destination\">destination</paramref>.</exception>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Count\">\r\n      <summary>Returns the number of elements stored in the vector.</summary>\r\n      <returns>The number of elements stored in the vector.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">Access to the property getter via reflection is not supported.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.Equals(System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether this instance is equal to a specified vector.</summary>\r\n      <param name=\"other\">The vector to compare with this instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"other\">other</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance is equal to a specified object.</summary>\r\n      <param name=\"obj\">The object to compare with this instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. The method returns false if <paramref name=\"obj\">obj</paramref> is null, or if <paramref name=\"obj\">obj</paramref> is a vector of a different type than the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Item(System.Int32)\">\r\n      <summary>Gets the element at a specified index.</summary>\r\n      <param name=\"index\">The index of the element to return.</param>\r\n      <returns>The element at index <paramref name=\"index\">index</paramref>.</returns>\r\n      <exception cref=\"T:System.IndexOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to <see cref=\"System.Numerics.Vector`1.Count\"></see>.</exception>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.One\">\r\n      <summary>Returns a vector containing all ones.</summary>\r\n      <returns>A vector containing all ones.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Addition(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_BitwiseAnd(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise And operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise And of <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_BitwiseOr(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise Or operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise Or of the elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Division(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Equality(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_ExclusiveOr(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise XOr operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise XOr of the elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt64}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt64\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt32}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt32\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt16}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt16\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Single}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Single\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.SByte}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.SByte\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Double}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Double\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int32}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int32\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int16}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int16\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Byte}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Byte\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int64}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int64\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Inequality(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether any single pair of elements in the specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if any element pairs in left and right are equal. false if no element pairs are equal.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(System.Numerics.Vector{`0},`0)\">\r\n      <summary>Multiplies a vector by a specified scalar value.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <param name=\"factor\">A scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(`0,System.Numerics.Vector{`0})\">\r\n      <summary>Multiplies a vector by the given scalar.</summary>\r\n      <param name=\"factor\">The scalar value.</param>\r\n      <param name=\"value\">The source vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_OnesComplement(System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector whose elements are obtained by taking the one&amp;#39;s complement of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <returns>The one&amp;#39;s complement vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Subtraction(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_UnaryNegation(System.Numerics.Vector{`0})\">\r\n      <summary>Negates a given vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of this vector using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString\">\r\n      <summary>Returns the string representation of this vector using default formatting.</summary>\r\n      <returns>The string representation of this vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString(System.String)\">\r\n      <summary>Returns the string representation of this vector using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Zero\">\r\n      <summary>Returns a vector containing all zeroes.</summary>\r\n      <returns>A vector containing all zeroes.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector\">\r\n      <summary>Provides a collection of static convenience methods for creating, manipulating, combining, and converting generic vectors.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Abs``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the absolute values of the given vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Add``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the sum of each pair of elements from two given vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AndNot``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise And Not operation on each pair of corresponding elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorByte``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned bytes.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorDouble``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a double-precision floating-point vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt16``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of 16-bit integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt32``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt64``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of long integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorSByte``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of signed bytes.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorSingle``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a single-precision floating-point vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt16``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned 16-bit integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt32``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt64``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned long integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.BitwiseAnd``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise And operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.BitwiseOr``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise Or operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Creates a new single-precision vector with elements selected between two specified single-precision source vectors based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Creates a new double-precision vector with elements selected between two specified double-precision source vectors based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Creates a new vector of a specified type with elements selected between two specified source vectors of the same type based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToDouble(System.Numerics.Vector{System.Int64})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToDouble(System.Numerics.Vector{System.UInt64})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToInt32(System.Numerics.Vector{System.Single})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToInt64(System.Numerics.Vector{System.Double})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToSingle(System.Numerics.Vector{System.Int32})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToSingle(System.Numerics.Vector{System.UInt32})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToUInt32(System.Numerics.Vector{System.Single})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToUInt64(System.Numerics.Vector{System.Double})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Divide``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the result of dividing the first vector&amp;#39;s elements by the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The divided vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Dot``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified double-precision vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified integral vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in two specified long integer vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified single-precision vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector of a specified type whose elements signal whether the elements in two specified vectors of the same type are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.EqualsAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether each pair of elements in the given vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.EqualsAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any single pair of elements in the given vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element pair in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> is equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are greater than their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are greater than their corresponding elements in a second single-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than their corresponding elements in the second vector of the same time.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are greater than the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> are greater than the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is greater than the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is greater than the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one vector are greater than or equal to their corresponding elements in the single-precision floating-point second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than or equal to their corresponding elements in the second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than or equal to their corresponding elements in the second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one vector are greater than or equal to their corresponding elements in the second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than or equal to their corresponding elements in the second vector of the same type.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqualAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are greater than or equal to all the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> are greater than or equal to the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqualAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is greater than or equal to the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is greater than or equal to the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector.IsHardwareAccelerated\">\r\n      <summary>Gets a value that indicates whether vector operations are subject to hardware acceleration through JIT intrinsic support.</summary>\r\n      <returns>true if vector operations are subject to hardware acceleration; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are less than their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are less than their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are less than their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision vector are less than their corresponding elements in a second single-precision vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector of a specified type whose elements signal whether the elements in one vector are less than their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all of the elements in the first vector are less than their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all of the elements in <paramref name=\"left\">left</paramref> are less than the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is less than the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is less than the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are less than or equal to their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are less than or equal to their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are less or equal to their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are less than or equal to their corresponding elements in a second single-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector are less than or equal to their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqualAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are less than or equal to their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all of the elements in <paramref name=\"left\">left</paramref> are less than or equal to the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqualAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is less than or equal to the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is less than or equal to the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Max``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the maximum of each pair of elements in the two given vectors.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The maximum vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Min``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the minimum of each pair of elements in the two given vectors.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The minimum vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(``0,System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are a scalar value multiplied by each of the values of a specified vector.</summary>\r\n      <param name=\"left\">The scalar value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the product of each pair of elements in two specified vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(System.Numerics.Vector{``0},``0)\">\r\n      <summary>Returns a new vector whose values are the values of a specified vector each multiplied by a scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int16},System.Numerics.Vector{System.Int16})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt16},System.Numerics.Vector{System.UInt16})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt32},System.Numerics.Vector{System.UInt32})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt64},System.Numerics.Vector{System.UInt64})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Negate``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the negation of the corresponding element in the specified vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.OnesComplement``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are obtained by taking the one&amp;#39;s complement of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.SquareRoot``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the square roots of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Subtract``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the difference between the elements in the second vector and their corresponding elements in the first vector.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.UInt16},System.Numerics.Vector{System.UInt32}@,System.Numerics.Vector{System.UInt32}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Double}@,System.Numerics.Vector{System.Double}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.SByte},System.Numerics.Vector{System.Int16}@,System.Numerics.Vector{System.Int16}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.UInt32},System.Numerics.Vector{System.UInt64}@,System.Numerics.Vector{System.UInt64}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Int16},System.Numerics.Vector{System.Int32}@,System.Numerics.Vector{System.Int32}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Byte},System.Numerics.Vector{System.UInt16}@,System.Numerics.Vector{System.UInt16}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int64}@,System.Numerics.Vector{System.Int64}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Xor``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise exclusive Or (XOr) operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector2\">\r\n      <summary>Represents a vector with two single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector2\"></see> object whose two elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to both elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.#ctor(System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector2.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector2.Y\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Abs(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Add(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Clamp(System.Numerics.Vector2,System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Distance(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.DistanceSquared(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Divide(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Divide(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Dot(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Equals(System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Length\">\r\n      <summary>Returns the length of the vector.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Lerp(System.Numerics.Vector2,System.Numerics.Vector2,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Max(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Min(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Negate(System.Numerics.Vector2)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Normalize(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"value\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.One\">\r\n      <summary>Gets a vector whose 2 elements are equal to one.</summary>\r\n      <returns>A vector whose two elements are equal to one (that is, it returns the vector (1,1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Addition(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Division(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Division(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Equality(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Inequality(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Subtraction(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_UnaryNegation(System.Numerics.Vector2)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Reflect(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the reflection of a vector off a surface that has the specified normal.</summary>\r\n      <param name=\"vector\">The source vector.</param>\r\n      <param name=\"normal\">The normal of the surface being reflected off.</param>\r\n      <returns>The reflected vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.SquareRoot(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Subtract(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Matrix3x2)\">\r\n      <summary>Transforms a vector by a specified 3x2 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.TransformNormal(System.Numerics.Vector2,System.Numerics.Matrix3x2)\">\r\n      <summary>Transforms a vector normal by the given 3x2 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.TransformNormal(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector normal by the given 4x4 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.UnitX\">\r\n      <summary>Gets the vector (1,0).</summary>\r\n      <returns>The vector (1,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.UnitY\">\r\n      <summary>Gets the vector (0,1).</summary>\r\n      <returns>The vector (0,1).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector2.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector2.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.Zero\">\r\n      <summary>Returns a vector whose 2 elements are equal to zero.</summary>\r\n      <returns>A vector whose two elements are equal to zero (that is, it returns the vector (0,0).</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector3\">\r\n      <summary>Represents a vector with three  single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector3\"></see> object whose three elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to all three elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Creates a   new <see cref=\"T:System.Numerics.Vector3\"></see> object from the specified <see cref=\"T:System.Numerics.Vector2\"></see> object and the specified value.</summary>\r\n      <param name=\"value\">The vector with two elements.</param>\r\n      <param name=\"z\">The additional value to assign to the <see cref=\"F:System.Numerics.Vector3.Z\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.Y\"></see> field.</param>\r\n      <param name=\"z\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.Z\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Abs(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Add(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Clamp(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Cross(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Computes the cross product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The cross product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Distance(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.DistanceSquared(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Divide(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Divide(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Dot(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Equals(System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Length\">\r\n      <summary>Returns the length of this vector object.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Lerp(System.Numerics.Vector3,System.Numerics.Vector3,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Max(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Min(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Negate(System.Numerics.Vector3)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Normalize(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"value\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.One\">\r\n      <summary>Gets a vector whose 3 elements are equal to one.</summary>\r\n      <returns>A vector whose three elements are equal to one (that is, it returns the vector (1,1,1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Addition(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Division(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Division(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Equality(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Inequality(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Subtraction(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_UnaryNegation(System.Numerics.Vector3)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Reflect(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the reflection of a vector off a surface that has the specified normal.</summary>\r\n      <param name=\"vector\">The source vector.</param>\r\n      <param name=\"normal\">The normal of the surface being reflected off.</param>\r\n      <returns>The reflected vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.SquareRoot(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Subtract(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Transform(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Transform(System.Numerics.Vector3,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.TransformNormal(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector normal by the given 4x4 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitX\">\r\n      <summary>Gets the vector (1,0,0).</summary>\r\n      <returns>The vector (1,0,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitY\">\r\n      <summary>Gets the vector (0,1,0).</summary>\r\n      <returns>The vector (0,1,0)..</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitZ\">\r\n      <summary>Gets the vector (0,0,1).</summary>\r\n      <returns>The vector (0,0,1).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.Z\">\r\n      <summary>The Z component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.Zero\">\r\n      <summary>Gets a vector whose 3 elements are equal to zero.</summary>\r\n      <returns>A vector whose three elements are equal to zero (that is, it returns the vector (0,0,0).</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector4\">\r\n      <summary>Represents a vector with four single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector4\"></see> object whose four elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to all four elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Constructs a new <see cref=\"T:System.Numerics.Vector4\"></see> object from the specified <see cref=\"T:System.Numerics.Vector3\"></see> object and a W component.</summary>\r\n      <param name=\"value\">The vector to use for the X, Y, and Z components.</param>\r\n      <param name=\"w\">The W component.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Numerics.Vector2,System.Single,System.Single)\">\r\n      <summary>Creates a   new <see cref=\"T:System.Numerics.Vector4\"></see> object from the specified <see cref=\"T:System.Numerics.Vector2\"></see> object and a Z and a W component.</summary>\r\n      <param name=\"value\">The vector to use for the X and Y components.</param>\r\n      <param name=\"z\">The Z component.</param>\r\n      <param name=\"w\">The W component.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.Y\"></see> field.</param>\r\n      <param name=\"z\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.Z\"></see> field.</param>\r\n      <param name=\"w\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.W\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Abs(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Add(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Clamp(System.Numerics.Vector4,System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Distance(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.DistanceSquared(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Divide(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Divide(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Dot(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Equals(System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Length\">\r\n      <summary>Returns the length of this vector object.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Lerp(System.Numerics.Vector4,System.Numerics.Vector4,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Max(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Min(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Single,System.Numerics.Vector4)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Negate(System.Numerics.Vector4)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Normalize(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"vector\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.One\">\r\n      <summary>Gets a vector whose 4 elements are equal to one.</summary>\r\n      <returns>Returns <see cref=\"System.Numerics.Vector4\"></see>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Addition(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Division(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Division(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Equality(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Inequality(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Single,System.Numerics.Vector4)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Subtraction(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_UnaryNegation(System.Numerics.Vector4)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.SquareRoot(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Subtract(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector4,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a four-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector4,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a four-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"vector\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector3,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a three-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a two-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector2,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a two-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a three-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitW\">\r\n      <summary>Gets the vector (0,0,0,1).</summary>\r\n      <returns>The vector (0,0,0,1).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitX\">\r\n      <summary>Gets the vector (1,0,0,0).</summary>\r\n      <returns>The vector (1,0,0,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitY\">\r\n      <summary>Gets the vector (0,1,0,0).</summary>\r\n      <returns>The vector (0,1,0,0)..</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitZ\">\r\n      <summary>Gets a vector whose 4 elements are equal to zero.</summary>\r\n      <returns>The vector (0,0,1,0).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.W\">\r\n      <summary>The W component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.Z\">\r\n      <summary>The Z component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.Zero\">\r\n      <summary>Gets a vector whose 4 elements are equal to zero.</summary>\r\n      <returns>A vector whose four elements are equal to zero (that is, it returns the vector (0,0,0,0).</returns>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/lib/netcoreapp2.0/_._",
    "content": ""
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/lib/netstandard1.0/System.Numerics.Vectors.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?><doc>\r\n  <assembly>\r\n    <name>System.Numerics.Vectors</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:System.Numerics.Matrix3x2\">\r\n      <summary>Represents a 3x2 matrix.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a 3x2 matrix from the specified components.</summary>\r\n      <param name=\"m11\">The value to assign to the first element in the first row.</param>\r\n      <param name=\"m12\">The value to assign to the second element in the first row.</param>\r\n      <param name=\"m21\">The value to assign to the first element in the second row.</param>\r\n      <param name=\"m22\">The value to assign to the second element in the second row.</param>\r\n      <param name=\"m31\">The value to assign to the first element in the third row.</param>\r\n      <param name=\"m32\">The value to assign to the second element in the third row.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Add(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateRotation(System.Single)\">\r\n      <summary>Creates a rotation matrix using the given rotation in radians.</summary>\r\n      <param name=\"radians\">The amount of rotation, in radians.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateRotation(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a rotation matrix using the specified rotation in radians and a center point.</summary>\r\n      <param name=\"radians\">The amount of rotation, in radians.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Single)\">\r\n      <summary>Creates a scaling matrix from the specified X and Y components.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix that scales uniformly with the specified scale with an offset from the specified center.</summary>\r\n      <param name=\"scale\">The uniform scale to use.</param>\r\n      <param name=\"centerPoint\">The center offset.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix that is offset by a given center point.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single)\">\r\n      <summary>Creates a scaling matrix that scales uniformly with the given scale.</summary>\r\n      <param name=\"scale\">The uniform scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale with an offset from the specified center point.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <param name=\"centerPoint\">The center offset.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateSkew(System.Single,System.Single)\">\r\n      <summary>Creates a skew matrix from the specified angles in radians.</summary>\r\n      <param name=\"radiansX\">The X angle, in radians.</param>\r\n      <param name=\"radiansY\">The Y angle, in radians.</param>\r\n      <returns>The skew matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateSkew(System.Single,System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a skew matrix from the specified angles in radians and a center point.</summary>\r\n      <param name=\"radiansX\">The X angle, in radians.</param>\r\n      <param name=\"radiansY\">The Y angle, in radians.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The skew matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateTranslation(System.Numerics.Vector2)\">\r\n      <summary>Creates a translation matrix from the specified 2-dimensional vector.</summary>\r\n      <param name=\"position\">The translation position.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateTranslation(System.Single,System.Single)\">\r\n      <summary>Creates a translation matrix from the specified X and Y components.</summary>\r\n      <param name=\"xPosition\">The X position.</param>\r\n      <param name=\"yPosition\">The Y position.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Equals(System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether this instance and another 3x2 matrix are equal.</summary>\r\n      <param name=\"other\">The other matrix.</param>\r\n      <returns>true if the two matrices are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.GetDeterminant\">\r\n      <summary>Calculates the determinant for this matrix.</summary>\r\n      <returns>The determinant.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.Identity\">\r\n      <summary>Gets the multiplicative identity matrix.</summary>\r\n      <returns>The multiplicative identify matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Invert(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2@)\">\r\n      <summary>Inverts the specified matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The matrix to invert.</param>\r\n      <param name=\"result\">When this method returns, contains the inverted matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was converted successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.IsIdentity\">\r\n      <summary>Indicates whether the current matrix is the identity matrix.</summary>\r\n      <returns>true if the current matrix is the identity matrix; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Lerp(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Performs a linear interpolation from one matrix to a second matrix based on a value that specifies the weighting of the second matrix.</summary>\r\n      <param name=\"matrix1\">The first matrix.</param>\r\n      <param name=\"matrix2\">The second matrix.</param>\r\n      <param name=\"amount\">The relative weighting of matrix2.</param>\r\n      <returns>The interpolated matrix.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M11\">\r\n      <summary>The first element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M12\">\r\n      <summary>The second element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M21\">\r\n      <summary>The first element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M22\">\r\n      <summary>The second element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M31\">\r\n      <summary>The first element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M32\">\r\n      <summary>The second element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Multiply(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Multiply(System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Negate(System.Numerics.Matrix3x2)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Addition(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Equality(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Inequality(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are not equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Multiply(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Multiply(System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Subtraction(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_UnaryNegation(System.Numerics.Matrix3x2)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Subtract(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.ToString\">\r\n      <summary>Returns a string that represents this matrix.</summary>\r\n      <returns>The string representation of this matrix.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.Translation\">\r\n      <summary>Gets or sets the translation component of this matrix.</summary>\r\n      <returns>The translation component of the current instance.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Matrix4x4\">\r\n      <summary>Represents a 4x4 matrix.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.#ctor(System.Numerics.Matrix3x2)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Matrix4x4\"></see> object from a specified <see cref=\"T:System.Numerics.Matrix3x2\"></see> object.</summary>\r\n      <param name=\"value\">A 3x2 matrix.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a 4x4 matrix from the specified components.</summary>\r\n      <param name=\"m11\">The value to assign to the first element in the first row.</param>\r\n      <param name=\"m12\">The value to assign to the second element in the first row.</param>\r\n      <param name=\"m13\">The value to assign to the third element in the first row.</param>\r\n      <param name=\"m14\">The value to assign to the fourth element in the first row.</param>\r\n      <param name=\"m21\">The value to assign to the first element in the second row.</param>\r\n      <param name=\"m22\">The value to assign to the second element in the second row.</param>\r\n      <param name=\"m23\">The value to assign to the third element in the second row.</param>\r\n      <param name=\"m24\">The value to assign to the third element in the second row.</param>\r\n      <param name=\"m31\">The value to assign to the first element in the third row.</param>\r\n      <param name=\"m32\">The value to assign to the second element in the third row.</param>\r\n      <param name=\"m33\">The value to assign to the third element in the third row.</param>\r\n      <param name=\"m34\">The value to assign to the fourth element in the third row.</param>\r\n      <param name=\"m41\">The value to assign to the first element in the fourth row.</param>\r\n      <param name=\"m42\">The value to assign to the second element in the fourth row.</param>\r\n      <param name=\"m43\">The value to assign to the third element in the fourth row.</param>\r\n      <param name=\"m44\">The value to assign to the fourth element in the fourth row.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Add(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateBillboard(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a spherical billboard that rotates around a specified object position.</summary>\r\n      <param name=\"objectPosition\">The position of the object that the billboard will rotate around.</param>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"cameraUpVector\">The up vector of the camera.</param>\r\n      <param name=\"cameraForwardVector\">The forward vector of the camera.</param>\r\n      <returns>The created billboard.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateConstrainedBillboard(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a cylindrical billboard that rotates around a specified axis.</summary>\r\n      <param name=\"objectPosition\">The position of the object that the billboard will rotate around.</param>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"rotateAxis\">The axis to rotate the billboard around.</param>\r\n      <param name=\"cameraForwardVector\">The forward vector of the camera.</param>\r\n      <param name=\"objectForwardVector\">The forward vector of the object.</param>\r\n      <returns>The billboard matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromAxisAngle(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a matrix that rotates around an arbitrary vector.</summary>\r\n      <param name=\"axis\">The axis to rotate around.</param>\r\n      <param name=\"angle\">The angle to rotate around axis, in radians.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromQuaternion(System.Numerics.Quaternion)\">\r\n      <summary>Creates a rotation matrix from the specified Quaternion rotation value.</summary>\r\n      <param name=\"quaternion\">The source Quaternion.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromYawPitchRoll(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a rotation matrix from the specified yaw, pitch, and roll.</summary>\r\n      <param name=\"yaw\">The angle of rotation, in radians, around the Y axis.</param>\r\n      <param name=\"pitch\">The angle of rotation, in radians, around the X axis.</param>\r\n      <param name=\"roll\">The angle of rotation, in radians, around the Z axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateLookAt(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a view matrix.</summary>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"cameraTarget\">The target towards which the camera is pointing.</param>\r\n      <param name=\"cameraUpVector\">The direction that is &amp;quot;up&amp;quot; from the camera&amp;#39;s point of view.</param>\r\n      <returns>The view matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateOrthographic(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates an orthographic perspective matrix from the given view volume dimensions.</summary>\r\n      <param name=\"width\">The width of the view volume.</param>\r\n      <param name=\"height\">The height of the view volume.</param>\r\n      <param name=\"zNearPlane\">The minimum Z-value of the view volume.</param>\r\n      <param name=\"zFarPlane\">The maximum Z-value of the view volume.</param>\r\n      <returns>The orthographic projection matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateOrthographicOffCenter(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a customized orthographic projection matrix.</summary>\r\n      <param name=\"left\">The minimum X-value of the view volume.</param>\r\n      <param name=\"right\">The maximum X-value of the view volume.</param>\r\n      <param name=\"bottom\">The minimum Y-value of the view volume.</param>\r\n      <param name=\"top\">The maximum Y-value of the view volume.</param>\r\n      <param name=\"zNearPlane\">The minimum Z-value of the view volume.</param>\r\n      <param name=\"zFarPlane\">The maximum Z-value of the view volume.</param>\r\n      <returns>The orthographic projection matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspective(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a perspective projection matrix from the given view volume dimensions.</summary>\r\n      <param name=\"width\">The width of the view volume at the near view plane.</param>\r\n      <param name=\"height\">The height of the view volume at the near view plane.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspectiveFieldOfView(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a perspective projection matrix based on a field of view, aspect ratio, and near and far view plane distances.</summary>\r\n      <param name=\"fieldOfView\">The field of view in the y direction, in radians.</param>\r\n      <param name=\"aspectRatio\">The aspect ratio, defined as view space width divided by height.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"fieldOfView\">fieldOfView</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"fieldOfView\">fieldOfView</paramref> is greater than or equal to <see cref=\"System.Math.PI\"></see>.  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspectiveOffCenter(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a customized perspective projection matrix.</summary>\r\n      <param name=\"left\">The minimum x-value of the view volume at the near view plane.</param>\r\n      <param name=\"right\">The maximum x-value of the view volume at the near view plane.</param>\r\n      <param name=\"bottom\">The minimum y-value of the view volume at the near view plane.</param>\r\n      <param name=\"top\">The maximum y-value of the view volume at the near view plane.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateReflection(System.Numerics.Plane)\">\r\n      <summary>Creates a matrix that reflects the coordinate system about a specified plane.</summary>\r\n      <param name=\"value\">The plane about which to create a reflection.</param>\r\n      <returns>A new matrix expressing the reflection.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationX(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the X axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the X axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationX(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a matrix for rotating points around the X axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the X axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationY(System.Single,System.Numerics.Vector3)\">\r\n      <summary>The amount, in radians, by which to rotate around the Y axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Y-axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationY(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the Y axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Y-axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationZ(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the Z axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Z-axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationZ(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a matrix for rotating points around the Z axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Z-axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single)\">\r\n      <summary>Creates a uniform scaling matrix that scale equally on each axis.</summary>\r\n      <param name=\"scale\">The uniform scaling factor.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix with a center point.</summary>\r\n      <param name=\"scales\">The vector that contains the amount to scale on each axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a uniform scaling matrix that scales equally on each axis with a center point.</summary>\r\n      <param name=\"scale\">The uniform scaling factor.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a scaling matrix from the specified X, Y, and Z components.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"zScale\">The value to scale by on the Z axis.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Single,System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix that is offset by a given center point.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"zScale\">The value to scale by on the Z axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateShadow(System.Numerics.Vector3,System.Numerics.Plane)\">\r\n      <summary>Creates a matrix that flattens geometry into a specified plane as if casting a shadow from a specified light source.</summary>\r\n      <param name=\"lightDirection\">The direction from which the light that will cast the shadow is coming.</param>\r\n      <param name=\"plane\">The plane onto which the new matrix should flatten geometry so as to cast a shadow.</param>\r\n      <returns>A new matrix that can be used to flatten geometry onto the specified plane from the specified direction.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateTranslation(System.Numerics.Vector3)\">\r\n      <summary>Creates a translation matrix from the specified 3-dimensional vector.</summary>\r\n      <param name=\"position\">The amount to translate in each axis.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateTranslation(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a translation matrix from the specified X, Y, and Z components.</summary>\r\n      <param name=\"xPosition\">The amount to translate on the X axis.</param>\r\n      <param name=\"yPosition\">The amount to translate on the Y axis.</param>\r\n      <param name=\"zPosition\">The amount to translate on the Z axis.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateWorld(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a world matrix with the specified parameters.</summary>\r\n      <param name=\"position\">The position of the object.</param>\r\n      <param name=\"forward\">The forward direction of the object.</param>\r\n      <param name=\"up\">The upward direction of the object. Its value is usually [0, 1, 0].</param>\r\n      <returns>The world matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Decompose(System.Numerics.Matrix4x4,System.Numerics.Vector3@,System.Numerics.Quaternion@,System.Numerics.Vector3@)\">\r\n      <summary>Attempts to extract the scale, translation, and rotation components from the given scale, rotation, or translation matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The source matrix.</param>\r\n      <param name=\"scale\">When this method returns, contains the scaling component of the transformation matrix if the operation succeeded.</param>\r\n      <param name=\"rotation\">When this method returns, contains the rotation component of the transformation matrix if the operation succeeded.</param>\r\n      <param name=\"translation\">When the method returns, contains the translation component of the transformation matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was decomposed successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Equals(System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether this instance and another 4x4 matrix are equal.</summary>\r\n      <param name=\"other\">The other matrix.</param>\r\n      <returns>true if the two matrices are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.GetDeterminant\">\r\n      <summary>Calculates the determinant of the current 4x4 matrix.</summary>\r\n      <returns>The determinant.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.Identity\">\r\n      <summary>Gets the multiplicative identity matrix.</summary>\r\n      <returns>Gets the multiplicative identity matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Invert(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4@)\">\r\n      <summary>Inverts the specified matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The matrix to invert.</param>\r\n      <param name=\"result\">When this method returns, contains the inverted matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was converted successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.IsIdentity\">\r\n      <summary>Indicates whether the current matrix is the identity matrix.</summary>\r\n      <returns>true if the current matrix is the identity matrix; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Lerp(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Performs a linear interpolation from one matrix to a second matrix based on a value that specifies the weighting of the second matrix.</summary>\r\n      <param name=\"matrix1\">The first matrix.</param>\r\n      <param name=\"matrix2\">The second matrix.</param>\r\n      <param name=\"amount\">The relative weighting of matrix2.</param>\r\n      <returns>The interpolated matrix.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M11\">\r\n      <summary>The first element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M12\">\r\n      <summary>The second element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M13\">\r\n      <summary>The third element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M14\">\r\n      <summary>The fourth element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M21\">\r\n      <summary>The first element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M22\">\r\n      <summary>The second element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M23\">\r\n      <summary>The third element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M24\">\r\n      <summary>The fourth element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M31\">\r\n      <summary>The first element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M32\">\r\n      <summary>The second element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M33\">\r\n      <summary>The third element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M34\">\r\n      <summary>The fourth element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M41\">\r\n      <summary>The first element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M42\">\r\n      <summary>The second element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M43\">\r\n      <summary>The third element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M44\">\r\n      <summary>The fourth element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Multiply(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Multiply(System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Negate(System.Numerics.Matrix4x4)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Addition(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Equality(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to care</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Inequality(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are not equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Multiply(System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Multiply(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Subtraction(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_UnaryNegation(System.Numerics.Matrix4x4)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Subtract(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.ToString\">\r\n      <summary>Returns a string that represents this matrix.</summary>\r\n      <returns>The string representation of this matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Transform(System.Numerics.Matrix4x4,System.Numerics.Quaternion)\">\r\n      <summary>Transforms the specified matrix by applying the specified Quaternion rotation.</summary>\r\n      <param name=\"value\">The matrix to transform.</param>\r\n      <param name=\"rotation\">The rotation t apply.</param>\r\n      <returns>The transformed matrix.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.Translation\">\r\n      <summary>Gets or sets the translation component of this matrix.</summary>\r\n      <returns>The translation component of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Transpose(System.Numerics.Matrix4x4)\">\r\n      <summary>Transposes the rows and columns of a matrix.</summary>\r\n      <param name=\"matrix\">The matrix to transpose.</param>\r\n      <returns>The transposed matrix.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Plane\">\r\n      <summary>Represents a three-dimensional plane.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Numerics.Vector4)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from a specified four-dimensional vector.</summary>\r\n      <param name=\"value\">A vector whose first three elements describe the normal vector, and whose <see cref=\"F:System.Numerics.Vector4.W\"></see> defines the distance along that normal from the origin.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from a specified normal and the distance along the normal from the origin.</summary>\r\n      <param name=\"normal\">The plane&amp;#39;s normal vector.</param>\r\n      <param name=\"d\">The plane&amp;#39;s distance from the origin along its normal vector.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from the X, Y, and Z components of its normal, and its distance from the origin on that normal.</summary>\r\n      <param name=\"x\">The X component of the normal.</param>\r\n      <param name=\"y\">The Y component of the normal.</param>\r\n      <param name=\"z\">The Z component of the normal.</param>\r\n      <param name=\"d\">The distance of the plane along its normal from the origin.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.CreateFromVertices(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object that contains three specified points.</summary>\r\n      <param name=\"point1\">The first point defining the plane.</param>\r\n      <param name=\"point2\">The second point defining the plane.</param>\r\n      <param name=\"point3\">The third point defining the plane.</param>\r\n      <returns>The plane containing the three points.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Plane.D\">\r\n      <summary>The distance of the plane along its normal from the origin.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Dot(System.Numerics.Plane,System.Numerics.Vector4)\">\r\n      <summary>Calculates the dot product of a plane and a 4-dimensional vector.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The four-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.DotCoordinate(System.Numerics.Plane,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of a specified three-dimensional vector and the normal vector of this plane plus the distance (<see cref=\"F:System.Numerics.Plane.D\"></see>) value of the plane.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The 3-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.DotNormal(System.Numerics.Plane,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of a specified three-dimensional vector and the <see cref=\"F:System.Numerics.Plane.Normal\"></see> vector of this plane.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The three-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Equals(System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether this instance and another plane object are equal.</summary>\r\n      <param name=\"other\">The other plane.</param>\r\n      <returns>true if the two planes are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Plane.Normal\">\r\n      <summary>The normal vector of the plane.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Normalize(System.Numerics.Plane)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Plane\"></see> object whose normal vector is the source plane&amp;#39;s normal vector normalized.</summary>\r\n      <param name=\"value\">The source plane.</param>\r\n      <returns>The normalized plane.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.op_Equality(System.Numerics.Plane,System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether two planes are equal.</summary>\r\n      <param name=\"value1\">The first plane to compare.</param>\r\n      <param name=\"value2\">The second plane to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.op_Inequality(System.Numerics.Plane,System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether two planes are not equal.</summary>\r\n      <param name=\"value1\">The first plane to compare.</param>\r\n      <param name=\"value2\">The second plane to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.ToString\">\r\n      <summary>Returns the string representation of this plane object.</summary>\r\n      <returns>A string that represents this <see cref=\"System.Numerics.Plane\"></see> object.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Transform(System.Numerics.Plane,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a normalized plane by a 4x4 matrix.</summary>\r\n      <param name=\"plane\">The normalized plane to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix to apply to plane.</param>\r\n      <returns>The transformed plane.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Transform(System.Numerics.Plane,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a normalized plane by a Quaternion rotation.</summary>\r\n      <param name=\"plane\">The normalized plane to transform.</param>\r\n      <param name=\"rotation\">The Quaternion rotation to apply to the plane.</param>\r\n      <returns>A new plane that results from applying the Quaternion rotation.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Quaternion\">\r\n      <summary>Represents a vector that is used to encode three-dimensional physical rotations.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a quaternion from the specified vector and rotation parts.</summary>\r\n      <param name=\"vectorPart\">The vector part of the quaternion.</param>\r\n      <param name=\"scalarPart\">The rotation part of the quaternion.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Constructs a quaternion from the specified components.</summary>\r\n      <param name=\"x\">The value to assign to the X component of the quaternion.</param>\r\n      <param name=\"y\">The value to assign to the Y component of the quaternion.</param>\r\n      <param name=\"z\">The value to assign to the Z component of the quaternion.</param>\r\n      <param name=\"w\">The value to assign to the W component of the quaternion.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Add(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Adds each element in one quaternion with its corresponding element in a second quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Concatenate(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Concatenates two quaternions.</summary>\r\n      <param name=\"value1\">The first quaternion rotation in the series.</param>\r\n      <param name=\"value2\">The second quaternion rotation in the series.</param>\r\n      <returns>A new quaternion representing the concatenation of the <paramref name=\"value1\">value1</paramref> rotation followed by the <paramref name=\"value2\">value2</paramref> rotation.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Conjugate(System.Numerics.Quaternion)\">\r\n      <summary>Returns the conjugate of a specified quaternion.</summary>\r\n      <param name=\"value\">The quaternion.</param>\r\n      <returns>A new quaternion that is the conjugate of value.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromAxisAngle(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a quaternion from a vector and an angle to rotate about the vector.</summary>\r\n      <param name=\"axis\">The vector to rotate around.</param>\r\n      <param name=\"angle\">The angle, in radians, to rotate around the vector.</param>\r\n      <returns>The newly created quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromRotationMatrix(System.Numerics.Matrix4x4)\">\r\n      <summary>Creates a quaternion from the specified rotation matrix.</summary>\r\n      <param name=\"matrix\">The rotation matrix.</param>\r\n      <returns>The newly created quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromYawPitchRoll(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a new quaternion from the given yaw, pitch, and roll.</summary>\r\n      <param name=\"yaw\">The yaw angle, in radians, around the Y axis.</param>\r\n      <param name=\"pitch\">The pitch angle, in radians, around the X axis.</param>\r\n      <param name=\"roll\">The roll angle, in radians, around the Z axis.</param>\r\n      <returns>The resulting quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Divide(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Divides one quaternion by a second quaternion.</summary>\r\n      <param name=\"value1\">The dividend.</param>\r\n      <param name=\"value2\">The divisor.</param>\r\n      <returns>The quaternion that results from dividing <paramref name=\"value1\">value1</paramref> by <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Dot(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Calculates the dot product of two quaternions.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Equals(System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether this instance and another quaternion are equal.</summary>\r\n      <param name=\"other\">The other quaternion.</param>\r\n      <returns>true if the two quaternions are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Quaternion.Identity\">\r\n      <summary>Gets a quaternion that represents no rotation.</summary>\r\n      <returns>A quaternion whose values are (0, 0, 0, 1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Inverse(System.Numerics.Quaternion)\">\r\n      <summary>Returns the inverse of a quaternion.</summary>\r\n      <param name=\"value\">The quaternion.</param>\r\n      <returns>The inverted quaternion.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Quaternion.IsIdentity\">\r\n      <summary>Gets a value that indicates whether the current instance is the identity quaternion.</summary>\r\n      <returns>true if the current instance is the identity quaternion; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Length\">\r\n      <summary>Calculates the length of the quaternion.</summary>\r\n      <returns>The computed length of the quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.LengthSquared\">\r\n      <summary>Calculates the squared length of the quaternion.</summary>\r\n      <returns>The length squared of the quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Lerp(System.Numerics.Quaternion,System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Performs a linear interpolation between two quaternions based on a value that specifies the weighting of the second quaternion.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <param name=\"amount\">The relative weight of quaternion2 in the interpolation.</param>\r\n      <returns>The interpolated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Multiply(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns the quaternion that results from multiplying two quaternions together.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The product quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Multiply(System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Returns the quaternion that results from scaling all the components of a specified quaternion by a scalar factor.</summary>\r\n      <param name=\"value1\">The source quaternion.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The scaled quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Negate(System.Numerics.Quaternion)\">\r\n      <summary>Reverses the sign of each component of the quaternion.</summary>\r\n      <param name=\"value\">The quaternion to negate.</param>\r\n      <returns>The negated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Normalize(System.Numerics.Quaternion)\">\r\n      <summary>Divides each component of a specified <see cref=\"T:System.Numerics.Quaternion\"></see> by its length.</summary>\r\n      <param name=\"value\">The quaternion to normalize.</param>\r\n      <returns>The normalized quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Addition(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Adds each element in one quaternion with its corresponding element in a second quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Division(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Divides one quaternion by a second quaternion.</summary>\r\n      <param name=\"value1\">The dividend.</param>\r\n      <param name=\"value2\">The divisor.</param>\r\n      <returns>The quaternion that results from dividing <paramref name=\"value1\">value1</paramref> by <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Equality(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether two quaternions are equal.</summary>\r\n      <param name=\"value1\">The first quaternion to compare.</param>\r\n      <param name=\"value2\">The second quaternion to compare.</param>\r\n      <returns>true if the two quaternions are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Inequality(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether two quaternions are not equal.</summary>\r\n      <param name=\"value1\">The first quaternion to compare.</param>\r\n      <param name=\"value2\">The second quaternion to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Multiply(System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Returns the quaternion that results from scaling all the components of a specified quaternion by a scalar factor.</summary>\r\n      <param name=\"value1\">The source quaternion.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The scaled quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Multiply(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns the quaternion that results from multiplying two quaternions together.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The product quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Subtraction(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Subtracts each element in a second quaternion from its corresponding element in a first quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_UnaryNegation(System.Numerics.Quaternion)\">\r\n      <summary>Reverses the sign of each component of the quaternion.</summary>\r\n      <param name=\"value\">The quaternion to negate.</param>\r\n      <returns>The negated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Slerp(System.Numerics.Quaternion,System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Interpolates between two quaternions, using spherical linear interpolation.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <param name=\"amount\">The relative weight of the second quaternion in the interpolation.</param>\r\n      <returns>The interpolated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Subtract(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Subtracts each element in a second quaternion from its corresponding element in a first quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.ToString\">\r\n      <summary>Returns a string that represents this quaternion.</summary>\r\n      <returns>The string representation of this quaternion.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.W\">\r\n      <summary>The rotation component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.X\">\r\n      <summary>The X value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.Y\">\r\n      <summary>The Y value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.Z\">\r\n      <summary>The Z value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector`1\">\r\n      <summary>Represents a single vector of a specified numeric type that is suitable for low-level optimization of parallel algorithms.</summary>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0)\">\r\n      <summary>Creates a vector whose components are of a specified type.</summary>\r\n      <param name=\"value\">The numeric type that defines the type of the components in the vector.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0[])\">\r\n      <summary>Creates a vector from a specified array.</summary>\r\n      <param name=\"values\">A numeric array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"values\">values</paramref> is null.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0[],System.Int32)\">\r\n      <summary>Creates a vector from a specified array starting at a specified index position.</summary>\r\n      <param name=\"values\">A numeric array.</param>\r\n      <param name=\"index\">The starting index position from which to create the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"values\">values</paramref> is null.</exception>\r\n      <exception cref=\"T:System.IndexOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n The length of <paramref name=\"values\">values</paramref> minus <paramref name=\"index\">index</paramref> is less than <see cref=\"System.Numerics.Vector`1.Count\"></see>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.CopyTo(`0[])\">\r\n      <summary>Copies the vector instance to a specified destination array.</summary>\r\n      <param name=\"destination\">The array to receive a copy of the vector values.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"destination\">destination</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current vector is greater than the number of elements available in the <paramref name=\"destination\">destination</paramref> array.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.CopyTo(`0[],System.Int32)\">\r\n      <summary>Copies the vector instance to a specified destination array starting at a specified index position.</summary>\r\n      <param name=\"destination\">The array to receive a copy of the vector values.</param>\r\n      <param name=\"startIndex\">The starting index in destination at which to begin the copy operation.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"destination\">destination</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than the number of elements available from <paramref name=\"startIndex\">startIndex</paramref> to the end of the <paramref name=\"destination\">destination</paramref> array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero or greater than the last index in <paramref name=\"destination\">destination</paramref>.</exception>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Count\">\r\n      <summary>Returns the number of elements stored in the vector.</summary>\r\n      <returns>The number of elements stored in the vector.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">Access to the property getter via reflection is not supported.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.Equals(System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether this instance is equal to a specified vector.</summary>\r\n      <param name=\"other\">The vector to compare with this instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"other\">other</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance is equal to a specified object.</summary>\r\n      <param name=\"obj\">The object to compare with this instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. The method returns false if <paramref name=\"obj\">obj</paramref> is null, or if <paramref name=\"obj\">obj</paramref> is a vector of a different type than the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Item(System.Int32)\">\r\n      <summary>Gets the element at a specified index.</summary>\r\n      <param name=\"index\">The index of the element to return.</param>\r\n      <returns>The element at index <paramref name=\"index\">index</paramref>.</returns>\r\n      <exception cref=\"T:System.IndexOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to <see cref=\"System.Numerics.Vector`1.Count\"></see>.</exception>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.One\">\r\n      <summary>Returns a vector containing all ones.</summary>\r\n      <returns>A vector containing all ones.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Addition(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_BitwiseAnd(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise And operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise And of <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_BitwiseOr(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise Or operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise Or of the elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Division(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Equality(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_ExclusiveOr(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise XOr operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise XOr of the elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt64}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt64\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt32}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt32\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt16}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt16\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Single}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Single\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.SByte}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.SByte\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Double}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Double\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int32}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int32\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int16}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int16\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Byte}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Byte\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int64}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int64\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Inequality(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether any single pair of elements in the specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if any element pairs in left and right are equal. false if no element pairs are equal.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(System.Numerics.Vector{`0},`0)\">\r\n      <summary>Multiplies a vector by a specified scalar value.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <param name=\"factor\">A scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(`0,System.Numerics.Vector{`0})\">\r\n      <summary>Multiplies a vector by the given scalar.</summary>\r\n      <param name=\"factor\">The scalar value.</param>\r\n      <param name=\"value\">The source vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_OnesComplement(System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector whose elements are obtained by taking the one&amp;#39;s complement of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <returns>The one&amp;#39;s complement vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Subtraction(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_UnaryNegation(System.Numerics.Vector{`0})\">\r\n      <summary>Negates a given vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of this vector using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString\">\r\n      <summary>Returns the string representation of this vector using default formatting.</summary>\r\n      <returns>The string representation of this vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString(System.String)\">\r\n      <summary>Returns the string representation of this vector using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Zero\">\r\n      <summary>Returns a vector containing all zeroes.</summary>\r\n      <returns>A vector containing all zeroes.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector\">\r\n      <summary>Provides a collection of static convenience methods for creating, manipulating, combining, and converting generic vectors.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Abs``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the absolute values of the given vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Add``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the sum of each pair of elements from two given vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AndNot``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise And Not operation on each pair of corresponding elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorByte``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned bytes.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorDouble``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a double-precision floating-point vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt16``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of 16-bit integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt32``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt64``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of long integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorSByte``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of signed bytes.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorSingle``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a single-precision floating-point vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt16``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned 16-bit integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt32``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt64``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned long integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.BitwiseAnd``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise And operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.BitwiseOr``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise Or operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Creates a new single-precision vector with elements selected between two specified single-precision source vectors based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Creates a new double-precision vector with elements selected between two specified double-precision source vectors based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Creates a new vector of a specified type with elements selected between two specified source vectors of the same type based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToDouble(System.Numerics.Vector{System.Int64})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToDouble(System.Numerics.Vector{System.UInt64})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToInt32(System.Numerics.Vector{System.Single})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToInt64(System.Numerics.Vector{System.Double})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToSingle(System.Numerics.Vector{System.Int32})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToSingle(System.Numerics.Vector{System.UInt32})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToUInt32(System.Numerics.Vector{System.Single})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToUInt64(System.Numerics.Vector{System.Double})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Divide``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the result of dividing the first vector&amp;#39;s elements by the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The divided vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Dot``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified double-precision vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified integral vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in two specified long integer vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified single-precision vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector of a specified type whose elements signal whether the elements in two specified vectors of the same type are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.EqualsAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether each pair of elements in the given vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.EqualsAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any single pair of elements in the given vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element pair in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> is equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are greater than their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are greater than their corresponding elements in a second single-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than their corresponding elements in the second vector of the same time.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are greater than the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> are greater than the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is greater than the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is greater than the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one vector are greater than or equal to their corresponding elements in the single-precision floating-point second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than or equal to their corresponding elements in the second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than or equal to their corresponding elements in the second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one vector are greater than or equal to their corresponding elements in the second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than or equal to their corresponding elements in the second vector of the same type.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqualAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are greater than or equal to all the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> are greater than or equal to the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqualAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is greater than or equal to the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is greater than or equal to the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector.IsHardwareAccelerated\">\r\n      <summary>Gets a value that indicates whether vector operations are subject to hardware acceleration through JIT intrinsic support.</summary>\r\n      <returns>true if vector operations are subject to hardware acceleration; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are less than their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are less than their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are less than their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision vector are less than their corresponding elements in a second single-precision vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector of a specified type whose elements signal whether the elements in one vector are less than their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all of the elements in the first vector are less than their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all of the elements in <paramref name=\"left\">left</paramref> are less than the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is less than the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is less than the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are less than or equal to their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are less than or equal to their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are less or equal to their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are less than or equal to their corresponding elements in a second single-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector are less than or equal to their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqualAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are less than or equal to their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all of the elements in <paramref name=\"left\">left</paramref> are less than or equal to the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqualAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is less than or equal to the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is less than or equal to the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Max``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the maximum of each pair of elements in the two given vectors.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The maximum vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Min``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the minimum of each pair of elements in the two given vectors.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The minimum vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(``0,System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are a scalar value multiplied by each of the values of a specified vector.</summary>\r\n      <param name=\"left\">The scalar value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the product of each pair of elements in two specified vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(System.Numerics.Vector{``0},``0)\">\r\n      <summary>Returns a new vector whose values are the values of a specified vector each multiplied by a scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int16},System.Numerics.Vector{System.Int16})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt16},System.Numerics.Vector{System.UInt16})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt32},System.Numerics.Vector{System.UInt32})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt64},System.Numerics.Vector{System.UInt64})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Negate``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the negation of the corresponding element in the specified vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.OnesComplement``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are obtained by taking the one&amp;#39;s complement of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.SquareRoot``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the square roots of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Subtract``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the difference between the elements in the second vector and their corresponding elements in the first vector.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.UInt16},System.Numerics.Vector{System.UInt32}@,System.Numerics.Vector{System.UInt32}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Double}@,System.Numerics.Vector{System.Double}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.SByte},System.Numerics.Vector{System.Int16}@,System.Numerics.Vector{System.Int16}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.UInt32},System.Numerics.Vector{System.UInt64}@,System.Numerics.Vector{System.UInt64}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Int16},System.Numerics.Vector{System.Int32}@,System.Numerics.Vector{System.Int32}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Byte},System.Numerics.Vector{System.UInt16}@,System.Numerics.Vector{System.UInt16}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int64}@,System.Numerics.Vector{System.Int64}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Xor``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise exclusive Or (XOr) operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector2\">\r\n      <summary>Represents a vector with two single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector2\"></see> object whose two elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to both elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.#ctor(System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector2.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector2.Y\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Abs(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Add(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Clamp(System.Numerics.Vector2,System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Distance(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.DistanceSquared(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Divide(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Divide(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Dot(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Equals(System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Length\">\r\n      <summary>Returns the length of the vector.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Lerp(System.Numerics.Vector2,System.Numerics.Vector2,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Max(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Min(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Negate(System.Numerics.Vector2)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Normalize(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"value\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.One\">\r\n      <summary>Gets a vector whose 2 elements are equal to one.</summary>\r\n      <returns>A vector whose two elements are equal to one (that is, it returns the vector (1,1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Addition(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Division(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Division(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Equality(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Inequality(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Subtraction(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_UnaryNegation(System.Numerics.Vector2)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Reflect(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the reflection of a vector off a surface that has the specified normal.</summary>\r\n      <param name=\"vector\">The source vector.</param>\r\n      <param name=\"normal\">The normal of the surface being reflected off.</param>\r\n      <returns>The reflected vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.SquareRoot(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Subtract(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Matrix3x2)\">\r\n      <summary>Transforms a vector by a specified 3x2 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.TransformNormal(System.Numerics.Vector2,System.Numerics.Matrix3x2)\">\r\n      <summary>Transforms a vector normal by the given 3x2 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.TransformNormal(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector normal by the given 4x4 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.UnitX\">\r\n      <summary>Gets the vector (1,0).</summary>\r\n      <returns>The vector (1,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.UnitY\">\r\n      <summary>Gets the vector (0,1).</summary>\r\n      <returns>The vector (0,1).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector2.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector2.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.Zero\">\r\n      <summary>Returns a vector whose 2 elements are equal to zero.</summary>\r\n      <returns>A vector whose two elements are equal to zero (that is, it returns the vector (0,0).</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector3\">\r\n      <summary>Represents a vector with three  single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector3\"></see> object whose three elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to all three elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Creates a   new <see cref=\"T:System.Numerics.Vector3\"></see> object from the specified <see cref=\"T:System.Numerics.Vector2\"></see> object and the specified value.</summary>\r\n      <param name=\"value\">The vector with two elements.</param>\r\n      <param name=\"z\">The additional value to assign to the <see cref=\"F:System.Numerics.Vector3.Z\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.Y\"></see> field.</param>\r\n      <param name=\"z\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.Z\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Abs(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Add(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Clamp(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Cross(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Computes the cross product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The cross product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Distance(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.DistanceSquared(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Divide(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Divide(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Dot(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Equals(System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Length\">\r\n      <summary>Returns the length of this vector object.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Lerp(System.Numerics.Vector3,System.Numerics.Vector3,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Max(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Min(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Negate(System.Numerics.Vector3)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Normalize(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"value\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.One\">\r\n      <summary>Gets a vector whose 3 elements are equal to one.</summary>\r\n      <returns>A vector whose three elements are equal to one (that is, it returns the vector (1,1,1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Addition(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Division(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Division(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Equality(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Inequality(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Subtraction(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_UnaryNegation(System.Numerics.Vector3)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Reflect(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the reflection of a vector off a surface that has the specified normal.</summary>\r\n      <param name=\"vector\">The source vector.</param>\r\n      <param name=\"normal\">The normal of the surface being reflected off.</param>\r\n      <returns>The reflected vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.SquareRoot(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Subtract(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Transform(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Transform(System.Numerics.Vector3,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.TransformNormal(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector normal by the given 4x4 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitX\">\r\n      <summary>Gets the vector (1,0,0).</summary>\r\n      <returns>The vector (1,0,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitY\">\r\n      <summary>Gets the vector (0,1,0).</summary>\r\n      <returns>The vector (0,1,0)..</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitZ\">\r\n      <summary>Gets the vector (0,0,1).</summary>\r\n      <returns>The vector (0,0,1).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.Z\">\r\n      <summary>The Z component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.Zero\">\r\n      <summary>Gets a vector whose 3 elements are equal to zero.</summary>\r\n      <returns>A vector whose three elements are equal to zero (that is, it returns the vector (0,0,0).</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector4\">\r\n      <summary>Represents a vector with four single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector4\"></see> object whose four elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to all four elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Constructs a new <see cref=\"T:System.Numerics.Vector4\"></see> object from the specified <see cref=\"T:System.Numerics.Vector3\"></see> object and a W component.</summary>\r\n      <param name=\"value\">The vector to use for the X, Y, and Z components.</param>\r\n      <param name=\"w\">The W component.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Numerics.Vector2,System.Single,System.Single)\">\r\n      <summary>Creates a   new <see cref=\"T:System.Numerics.Vector4\"></see> object from the specified <see cref=\"T:System.Numerics.Vector2\"></see> object and a Z and a W component.</summary>\r\n      <param name=\"value\">The vector to use for the X and Y components.</param>\r\n      <param name=\"z\">The Z component.</param>\r\n      <param name=\"w\">The W component.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.Y\"></see> field.</param>\r\n      <param name=\"z\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.Z\"></see> field.</param>\r\n      <param name=\"w\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.W\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Abs(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Add(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Clamp(System.Numerics.Vector4,System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Distance(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.DistanceSquared(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Divide(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Divide(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Dot(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Equals(System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Length\">\r\n      <summary>Returns the length of this vector object.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Lerp(System.Numerics.Vector4,System.Numerics.Vector4,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Max(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Min(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Single,System.Numerics.Vector4)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Negate(System.Numerics.Vector4)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Normalize(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"vector\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.One\">\r\n      <summary>Gets a vector whose 4 elements are equal to one.</summary>\r\n      <returns>Returns <see cref=\"System.Numerics.Vector4\"></see>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Addition(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Division(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Division(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Equality(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Inequality(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Single,System.Numerics.Vector4)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Subtraction(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_UnaryNegation(System.Numerics.Vector4)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.SquareRoot(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Subtract(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector4,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a four-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector4,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a four-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"vector\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector3,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a three-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a two-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector2,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a two-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a three-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitW\">\r\n      <summary>Gets the vector (0,0,0,1).</summary>\r\n      <returns>The vector (0,0,0,1).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitX\">\r\n      <summary>Gets the vector (1,0,0,0).</summary>\r\n      <returns>The vector (1,0,0,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitY\">\r\n      <summary>Gets the vector (0,1,0,0).</summary>\r\n      <returns>The vector (0,1,0,0)..</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitZ\">\r\n      <summary>Gets a vector whose 4 elements are equal to zero.</summary>\r\n      <returns>The vector (0,0,1,0).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.W\">\r\n      <summary>The W component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.Z\">\r\n      <summary>The Z component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.Zero\">\r\n      <summary>Gets a vector whose 4 elements are equal to zero.</summary>\r\n      <returns>A vector whose four elements are equal to zero (that is, it returns the vector (0,0,0,0).</returns>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/lib/netstandard2.0/System.Numerics.Vectors.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?><doc>\r\n  <assembly>\r\n    <name>System.Numerics.Vectors</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:System.Numerics.Matrix3x2\">\r\n      <summary>Represents a 3x2 matrix.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a 3x2 matrix from the specified components.</summary>\r\n      <param name=\"m11\">The value to assign to the first element in the first row.</param>\r\n      <param name=\"m12\">The value to assign to the second element in the first row.</param>\r\n      <param name=\"m21\">The value to assign to the first element in the second row.</param>\r\n      <param name=\"m22\">The value to assign to the second element in the second row.</param>\r\n      <param name=\"m31\">The value to assign to the first element in the third row.</param>\r\n      <param name=\"m32\">The value to assign to the second element in the third row.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Add(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateRotation(System.Single)\">\r\n      <summary>Creates a rotation matrix using the given rotation in radians.</summary>\r\n      <param name=\"radians\">The amount of rotation, in radians.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateRotation(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a rotation matrix using the specified rotation in radians and a center point.</summary>\r\n      <param name=\"radians\">The amount of rotation, in radians.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Single)\">\r\n      <summary>Creates a scaling matrix from the specified X and Y components.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix that scales uniformly with the specified scale with an offset from the specified center.</summary>\r\n      <param name=\"scale\">The uniform scale to use.</param>\r\n      <param name=\"centerPoint\">The center offset.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix that is offset by a given center point.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single)\">\r\n      <summary>Creates a scaling matrix that scales uniformly with the given scale.</summary>\r\n      <param name=\"scale\">The uniform scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale with an offset from the specified center point.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <param name=\"centerPoint\">The center offset.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateSkew(System.Single,System.Single)\">\r\n      <summary>Creates a skew matrix from the specified angles in radians.</summary>\r\n      <param name=\"radiansX\">The X angle, in radians.</param>\r\n      <param name=\"radiansY\">The Y angle, in radians.</param>\r\n      <returns>The skew matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateSkew(System.Single,System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a skew matrix from the specified angles in radians and a center point.</summary>\r\n      <param name=\"radiansX\">The X angle, in radians.</param>\r\n      <param name=\"radiansY\">The Y angle, in radians.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The skew matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateTranslation(System.Numerics.Vector2)\">\r\n      <summary>Creates a translation matrix from the specified 2-dimensional vector.</summary>\r\n      <param name=\"position\">The translation position.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateTranslation(System.Single,System.Single)\">\r\n      <summary>Creates a translation matrix from the specified X and Y components.</summary>\r\n      <param name=\"xPosition\">The X position.</param>\r\n      <param name=\"yPosition\">The Y position.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Equals(System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether this instance and another 3x2 matrix are equal.</summary>\r\n      <param name=\"other\">The other matrix.</param>\r\n      <returns>true if the two matrices are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.GetDeterminant\">\r\n      <summary>Calculates the determinant for this matrix.</summary>\r\n      <returns>The determinant.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.Identity\">\r\n      <summary>Gets the multiplicative identity matrix.</summary>\r\n      <returns>The multiplicative identify matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Invert(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2@)\">\r\n      <summary>Inverts the specified matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The matrix to invert.</param>\r\n      <param name=\"result\">When this method returns, contains the inverted matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was converted successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.IsIdentity\">\r\n      <summary>Indicates whether the current matrix is the identity matrix.</summary>\r\n      <returns>true if the current matrix is the identity matrix; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Lerp(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Performs a linear interpolation from one matrix to a second matrix based on a value that specifies the weighting of the second matrix.</summary>\r\n      <param name=\"matrix1\">The first matrix.</param>\r\n      <param name=\"matrix2\">The second matrix.</param>\r\n      <param name=\"amount\">The relative weighting of matrix2.</param>\r\n      <returns>The interpolated matrix.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M11\">\r\n      <summary>The first element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M12\">\r\n      <summary>The second element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M21\">\r\n      <summary>The first element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M22\">\r\n      <summary>The second element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M31\">\r\n      <summary>The first element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M32\">\r\n      <summary>The second element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Multiply(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Multiply(System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Negate(System.Numerics.Matrix3x2)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Addition(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Equality(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Inequality(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are not equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Multiply(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Multiply(System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Subtraction(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_UnaryNegation(System.Numerics.Matrix3x2)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Subtract(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.ToString\">\r\n      <summary>Returns a string that represents this matrix.</summary>\r\n      <returns>The string representation of this matrix.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.Translation\">\r\n      <summary>Gets or sets the translation component of this matrix.</summary>\r\n      <returns>The translation component of the current instance.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Matrix4x4\">\r\n      <summary>Represents a 4x4 matrix.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.#ctor(System.Numerics.Matrix3x2)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Matrix4x4\"></see> object from a specified <see cref=\"T:System.Numerics.Matrix3x2\"></see> object.</summary>\r\n      <param name=\"value\">A 3x2 matrix.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a 4x4 matrix from the specified components.</summary>\r\n      <param name=\"m11\">The value to assign to the first element in the first row.</param>\r\n      <param name=\"m12\">The value to assign to the second element in the first row.</param>\r\n      <param name=\"m13\">The value to assign to the third element in the first row.</param>\r\n      <param name=\"m14\">The value to assign to the fourth element in the first row.</param>\r\n      <param name=\"m21\">The value to assign to the first element in the second row.</param>\r\n      <param name=\"m22\">The value to assign to the second element in the second row.</param>\r\n      <param name=\"m23\">The value to assign to the third element in the second row.</param>\r\n      <param name=\"m24\">The value to assign to the third element in the second row.</param>\r\n      <param name=\"m31\">The value to assign to the first element in the third row.</param>\r\n      <param name=\"m32\">The value to assign to the second element in the third row.</param>\r\n      <param name=\"m33\">The value to assign to the third element in the third row.</param>\r\n      <param name=\"m34\">The value to assign to the fourth element in the third row.</param>\r\n      <param name=\"m41\">The value to assign to the first element in the fourth row.</param>\r\n      <param name=\"m42\">The value to assign to the second element in the fourth row.</param>\r\n      <param name=\"m43\">The value to assign to the third element in the fourth row.</param>\r\n      <param name=\"m44\">The value to assign to the fourth element in the fourth row.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Add(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateBillboard(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a spherical billboard that rotates around a specified object position.</summary>\r\n      <param name=\"objectPosition\">The position of the object that the billboard will rotate around.</param>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"cameraUpVector\">The up vector of the camera.</param>\r\n      <param name=\"cameraForwardVector\">The forward vector of the camera.</param>\r\n      <returns>The created billboard.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateConstrainedBillboard(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a cylindrical billboard that rotates around a specified axis.</summary>\r\n      <param name=\"objectPosition\">The position of the object that the billboard will rotate around.</param>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"rotateAxis\">The axis to rotate the billboard around.</param>\r\n      <param name=\"cameraForwardVector\">The forward vector of the camera.</param>\r\n      <param name=\"objectForwardVector\">The forward vector of the object.</param>\r\n      <returns>The billboard matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromAxisAngle(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a matrix that rotates around an arbitrary vector.</summary>\r\n      <param name=\"axis\">The axis to rotate around.</param>\r\n      <param name=\"angle\">The angle to rotate around axis, in radians.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromQuaternion(System.Numerics.Quaternion)\">\r\n      <summary>Creates a rotation matrix from the specified Quaternion rotation value.</summary>\r\n      <param name=\"quaternion\">The source Quaternion.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromYawPitchRoll(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a rotation matrix from the specified yaw, pitch, and roll.</summary>\r\n      <param name=\"yaw\">The angle of rotation, in radians, around the Y axis.</param>\r\n      <param name=\"pitch\">The angle of rotation, in radians, around the X axis.</param>\r\n      <param name=\"roll\">The angle of rotation, in radians, around the Z axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateLookAt(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a view matrix.</summary>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"cameraTarget\">The target towards which the camera is pointing.</param>\r\n      <param name=\"cameraUpVector\">The direction that is &amp;quot;up&amp;quot; from the camera&amp;#39;s point of view.</param>\r\n      <returns>The view matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateOrthographic(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates an orthographic perspective matrix from the given view volume dimensions.</summary>\r\n      <param name=\"width\">The width of the view volume.</param>\r\n      <param name=\"height\">The height of the view volume.</param>\r\n      <param name=\"zNearPlane\">The minimum Z-value of the view volume.</param>\r\n      <param name=\"zFarPlane\">The maximum Z-value of the view volume.</param>\r\n      <returns>The orthographic projection matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateOrthographicOffCenter(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a customized orthographic projection matrix.</summary>\r\n      <param name=\"left\">The minimum X-value of the view volume.</param>\r\n      <param name=\"right\">The maximum X-value of the view volume.</param>\r\n      <param name=\"bottom\">The minimum Y-value of the view volume.</param>\r\n      <param name=\"top\">The maximum Y-value of the view volume.</param>\r\n      <param name=\"zNearPlane\">The minimum Z-value of the view volume.</param>\r\n      <param name=\"zFarPlane\">The maximum Z-value of the view volume.</param>\r\n      <returns>The orthographic projection matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspective(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a perspective projection matrix from the given view volume dimensions.</summary>\r\n      <param name=\"width\">The width of the view volume at the near view plane.</param>\r\n      <param name=\"height\">The height of the view volume at the near view plane.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspectiveFieldOfView(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a perspective projection matrix based on a field of view, aspect ratio, and near and far view plane distances.</summary>\r\n      <param name=\"fieldOfView\">The field of view in the y direction, in radians.</param>\r\n      <param name=\"aspectRatio\">The aspect ratio, defined as view space width divided by height.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"fieldOfView\">fieldOfView</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"fieldOfView\">fieldOfView</paramref> is greater than or equal to <see cref=\"System.Math.PI\"></see>.  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspectiveOffCenter(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a customized perspective projection matrix.</summary>\r\n      <param name=\"left\">The minimum x-value of the view volume at the near view plane.</param>\r\n      <param name=\"right\">The maximum x-value of the view volume at the near view plane.</param>\r\n      <param name=\"bottom\">The minimum y-value of the view volume at the near view plane.</param>\r\n      <param name=\"top\">The maximum y-value of the view volume at the near view plane.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateReflection(System.Numerics.Plane)\">\r\n      <summary>Creates a matrix that reflects the coordinate system about a specified plane.</summary>\r\n      <param name=\"value\">The plane about which to create a reflection.</param>\r\n      <returns>A new matrix expressing the reflection.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationX(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the X axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the X axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationX(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a matrix for rotating points around the X axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the X axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationY(System.Single,System.Numerics.Vector3)\">\r\n      <summary>The amount, in radians, by which to rotate around the Y axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Y-axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationY(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the Y axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Y-axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationZ(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the Z axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Z-axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationZ(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a matrix for rotating points around the Z axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Z-axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single)\">\r\n      <summary>Creates a uniform scaling matrix that scale equally on each axis.</summary>\r\n      <param name=\"scale\">The uniform scaling factor.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix with a center point.</summary>\r\n      <param name=\"scales\">The vector that contains the amount to scale on each axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a uniform scaling matrix that scales equally on each axis with a center point.</summary>\r\n      <param name=\"scale\">The uniform scaling factor.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a scaling matrix from the specified X, Y, and Z components.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"zScale\">The value to scale by on the Z axis.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Single,System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix that is offset by a given center point.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"zScale\">The value to scale by on the Z axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateShadow(System.Numerics.Vector3,System.Numerics.Plane)\">\r\n      <summary>Creates a matrix that flattens geometry into a specified plane as if casting a shadow from a specified light source.</summary>\r\n      <param name=\"lightDirection\">The direction from which the light that will cast the shadow is coming.</param>\r\n      <param name=\"plane\">The plane onto which the new matrix should flatten geometry so as to cast a shadow.</param>\r\n      <returns>A new matrix that can be used to flatten geometry onto the specified plane from the specified direction.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateTranslation(System.Numerics.Vector3)\">\r\n      <summary>Creates a translation matrix from the specified 3-dimensional vector.</summary>\r\n      <param name=\"position\">The amount to translate in each axis.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateTranslation(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a translation matrix from the specified X, Y, and Z components.</summary>\r\n      <param name=\"xPosition\">The amount to translate on the X axis.</param>\r\n      <param name=\"yPosition\">The amount to translate on the Y axis.</param>\r\n      <param name=\"zPosition\">The amount to translate on the Z axis.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateWorld(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a world matrix with the specified parameters.</summary>\r\n      <param name=\"position\">The position of the object.</param>\r\n      <param name=\"forward\">The forward direction of the object.</param>\r\n      <param name=\"up\">The upward direction of the object. Its value is usually [0, 1, 0].</param>\r\n      <returns>The world matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Decompose(System.Numerics.Matrix4x4,System.Numerics.Vector3@,System.Numerics.Quaternion@,System.Numerics.Vector3@)\">\r\n      <summary>Attempts to extract the scale, translation, and rotation components from the given scale, rotation, or translation matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The source matrix.</param>\r\n      <param name=\"scale\">When this method returns, contains the scaling component of the transformation matrix if the operation succeeded.</param>\r\n      <param name=\"rotation\">When this method returns, contains the rotation component of the transformation matrix if the operation succeeded.</param>\r\n      <param name=\"translation\">When the method returns, contains the translation component of the transformation matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was decomposed successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Equals(System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether this instance and another 4x4 matrix are equal.</summary>\r\n      <param name=\"other\">The other matrix.</param>\r\n      <returns>true if the two matrices are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.GetDeterminant\">\r\n      <summary>Calculates the determinant of the current 4x4 matrix.</summary>\r\n      <returns>The determinant.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.Identity\">\r\n      <summary>Gets the multiplicative identity matrix.</summary>\r\n      <returns>Gets the multiplicative identity matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Invert(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4@)\">\r\n      <summary>Inverts the specified matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The matrix to invert.</param>\r\n      <param name=\"result\">When this method returns, contains the inverted matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was converted successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.IsIdentity\">\r\n      <summary>Indicates whether the current matrix is the identity matrix.</summary>\r\n      <returns>true if the current matrix is the identity matrix; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Lerp(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Performs a linear interpolation from one matrix to a second matrix based on a value that specifies the weighting of the second matrix.</summary>\r\n      <param name=\"matrix1\">The first matrix.</param>\r\n      <param name=\"matrix2\">The second matrix.</param>\r\n      <param name=\"amount\">The relative weighting of matrix2.</param>\r\n      <returns>The interpolated matrix.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M11\">\r\n      <summary>The first element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M12\">\r\n      <summary>The second element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M13\">\r\n      <summary>The third element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M14\">\r\n      <summary>The fourth element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M21\">\r\n      <summary>The first element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M22\">\r\n      <summary>The second element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M23\">\r\n      <summary>The third element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M24\">\r\n      <summary>The fourth element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M31\">\r\n      <summary>The first element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M32\">\r\n      <summary>The second element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M33\">\r\n      <summary>The third element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M34\">\r\n      <summary>The fourth element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M41\">\r\n      <summary>The first element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M42\">\r\n      <summary>The second element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M43\">\r\n      <summary>The third element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M44\">\r\n      <summary>The fourth element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Multiply(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Multiply(System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Negate(System.Numerics.Matrix4x4)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Addition(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Equality(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to care</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Inequality(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are not equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Multiply(System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Multiply(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Subtraction(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_UnaryNegation(System.Numerics.Matrix4x4)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Subtract(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.ToString\">\r\n      <summary>Returns a string that represents this matrix.</summary>\r\n      <returns>The string representation of this matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Transform(System.Numerics.Matrix4x4,System.Numerics.Quaternion)\">\r\n      <summary>Transforms the specified matrix by applying the specified Quaternion rotation.</summary>\r\n      <param name=\"value\">The matrix to transform.</param>\r\n      <param name=\"rotation\">The rotation t apply.</param>\r\n      <returns>The transformed matrix.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.Translation\">\r\n      <summary>Gets or sets the translation component of this matrix.</summary>\r\n      <returns>The translation component of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Transpose(System.Numerics.Matrix4x4)\">\r\n      <summary>Transposes the rows and columns of a matrix.</summary>\r\n      <param name=\"matrix\">The matrix to transpose.</param>\r\n      <returns>The transposed matrix.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Plane\">\r\n      <summary>Represents a three-dimensional plane.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Numerics.Vector4)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from a specified four-dimensional vector.</summary>\r\n      <param name=\"value\">A vector whose first three elements describe the normal vector, and whose <see cref=\"F:System.Numerics.Vector4.W\"></see> defines the distance along that normal from the origin.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from a specified normal and the distance along the normal from the origin.</summary>\r\n      <param name=\"normal\">The plane&amp;#39;s normal vector.</param>\r\n      <param name=\"d\">The plane&amp;#39;s distance from the origin along its normal vector.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from the X, Y, and Z components of its normal, and its distance from the origin on that normal.</summary>\r\n      <param name=\"x\">The X component of the normal.</param>\r\n      <param name=\"y\">The Y component of the normal.</param>\r\n      <param name=\"z\">The Z component of the normal.</param>\r\n      <param name=\"d\">The distance of the plane along its normal from the origin.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.CreateFromVertices(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object that contains three specified points.</summary>\r\n      <param name=\"point1\">The first point defining the plane.</param>\r\n      <param name=\"point2\">The second point defining the plane.</param>\r\n      <param name=\"point3\">The third point defining the plane.</param>\r\n      <returns>The plane containing the three points.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Plane.D\">\r\n      <summary>The distance of the plane along its normal from the origin.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Dot(System.Numerics.Plane,System.Numerics.Vector4)\">\r\n      <summary>Calculates the dot product of a plane and a 4-dimensional vector.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The four-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.DotCoordinate(System.Numerics.Plane,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of a specified three-dimensional vector and the normal vector of this plane plus the distance (<see cref=\"F:System.Numerics.Plane.D\"></see>) value of the plane.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The 3-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.DotNormal(System.Numerics.Plane,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of a specified three-dimensional vector and the <see cref=\"F:System.Numerics.Plane.Normal\"></see> vector of this plane.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The three-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Equals(System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether this instance and another plane object are equal.</summary>\r\n      <param name=\"other\">The other plane.</param>\r\n      <returns>true if the two planes are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Plane.Normal\">\r\n      <summary>The normal vector of the plane.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Normalize(System.Numerics.Plane)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Plane\"></see> object whose normal vector is the source plane&amp;#39;s normal vector normalized.</summary>\r\n      <param name=\"value\">The source plane.</param>\r\n      <returns>The normalized plane.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.op_Equality(System.Numerics.Plane,System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether two planes are equal.</summary>\r\n      <param name=\"value1\">The first plane to compare.</param>\r\n      <param name=\"value2\">The second plane to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.op_Inequality(System.Numerics.Plane,System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether two planes are not equal.</summary>\r\n      <param name=\"value1\">The first plane to compare.</param>\r\n      <param name=\"value2\">The second plane to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.ToString\">\r\n      <summary>Returns the string representation of this plane object.</summary>\r\n      <returns>A string that represents this <see cref=\"System.Numerics.Plane\"></see> object.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Transform(System.Numerics.Plane,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a normalized plane by a 4x4 matrix.</summary>\r\n      <param name=\"plane\">The normalized plane to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix to apply to plane.</param>\r\n      <returns>The transformed plane.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Transform(System.Numerics.Plane,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a normalized plane by a Quaternion rotation.</summary>\r\n      <param name=\"plane\">The normalized plane to transform.</param>\r\n      <param name=\"rotation\">The Quaternion rotation to apply to the plane.</param>\r\n      <returns>A new plane that results from applying the Quaternion rotation.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Quaternion\">\r\n      <summary>Represents a vector that is used to encode three-dimensional physical rotations.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a quaternion from the specified vector and rotation parts.</summary>\r\n      <param name=\"vectorPart\">The vector part of the quaternion.</param>\r\n      <param name=\"scalarPart\">The rotation part of the quaternion.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Constructs a quaternion from the specified components.</summary>\r\n      <param name=\"x\">The value to assign to the X component of the quaternion.</param>\r\n      <param name=\"y\">The value to assign to the Y component of the quaternion.</param>\r\n      <param name=\"z\">The value to assign to the Z component of the quaternion.</param>\r\n      <param name=\"w\">The value to assign to the W component of the quaternion.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Add(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Adds each element in one quaternion with its corresponding element in a second quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Concatenate(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Concatenates two quaternions.</summary>\r\n      <param name=\"value1\">The first quaternion rotation in the series.</param>\r\n      <param name=\"value2\">The second quaternion rotation in the series.</param>\r\n      <returns>A new quaternion representing the concatenation of the <paramref name=\"value1\">value1</paramref> rotation followed by the <paramref name=\"value2\">value2</paramref> rotation.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Conjugate(System.Numerics.Quaternion)\">\r\n      <summary>Returns the conjugate of a specified quaternion.</summary>\r\n      <param name=\"value\">The quaternion.</param>\r\n      <returns>A new quaternion that is the conjugate of value.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromAxisAngle(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a quaternion from a vector and an angle to rotate about the vector.</summary>\r\n      <param name=\"axis\">The vector to rotate around.</param>\r\n      <param name=\"angle\">The angle, in radians, to rotate around the vector.</param>\r\n      <returns>The newly created quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromRotationMatrix(System.Numerics.Matrix4x4)\">\r\n      <summary>Creates a quaternion from the specified rotation matrix.</summary>\r\n      <param name=\"matrix\">The rotation matrix.</param>\r\n      <returns>The newly created quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromYawPitchRoll(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a new quaternion from the given yaw, pitch, and roll.</summary>\r\n      <param name=\"yaw\">The yaw angle, in radians, around the Y axis.</param>\r\n      <param name=\"pitch\">The pitch angle, in radians, around the X axis.</param>\r\n      <param name=\"roll\">The roll angle, in radians, around the Z axis.</param>\r\n      <returns>The resulting quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Divide(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Divides one quaternion by a second quaternion.</summary>\r\n      <param name=\"value1\">The dividend.</param>\r\n      <param name=\"value2\">The divisor.</param>\r\n      <returns>The quaternion that results from dividing <paramref name=\"value1\">value1</paramref> by <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Dot(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Calculates the dot product of two quaternions.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Equals(System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether this instance and another quaternion are equal.</summary>\r\n      <param name=\"other\">The other quaternion.</param>\r\n      <returns>true if the two quaternions are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Quaternion.Identity\">\r\n      <summary>Gets a quaternion that represents no rotation.</summary>\r\n      <returns>A quaternion whose values are (0, 0, 0, 1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Inverse(System.Numerics.Quaternion)\">\r\n      <summary>Returns the inverse of a quaternion.</summary>\r\n      <param name=\"value\">The quaternion.</param>\r\n      <returns>The inverted quaternion.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Quaternion.IsIdentity\">\r\n      <summary>Gets a value that indicates whether the current instance is the identity quaternion.</summary>\r\n      <returns>true if the current instance is the identity quaternion; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Length\">\r\n      <summary>Calculates the length of the quaternion.</summary>\r\n      <returns>The computed length of the quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.LengthSquared\">\r\n      <summary>Calculates the squared length of the quaternion.</summary>\r\n      <returns>The length squared of the quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Lerp(System.Numerics.Quaternion,System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Performs a linear interpolation between two quaternions based on a value that specifies the weighting of the second quaternion.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <param name=\"amount\">The relative weight of quaternion2 in the interpolation.</param>\r\n      <returns>The interpolated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Multiply(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns the quaternion that results from multiplying two quaternions together.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The product quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Multiply(System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Returns the quaternion that results from scaling all the components of a specified quaternion by a scalar factor.</summary>\r\n      <param name=\"value1\">The source quaternion.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The scaled quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Negate(System.Numerics.Quaternion)\">\r\n      <summary>Reverses the sign of each component of the quaternion.</summary>\r\n      <param name=\"value\">The quaternion to negate.</param>\r\n      <returns>The negated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Normalize(System.Numerics.Quaternion)\">\r\n      <summary>Divides each component of a specified <see cref=\"T:System.Numerics.Quaternion\"></see> by its length.</summary>\r\n      <param name=\"value\">The quaternion to normalize.</param>\r\n      <returns>The normalized quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Addition(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Adds each element in one quaternion with its corresponding element in a second quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Division(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Divides one quaternion by a second quaternion.</summary>\r\n      <param name=\"value1\">The dividend.</param>\r\n      <param name=\"value2\">The divisor.</param>\r\n      <returns>The quaternion that results from dividing <paramref name=\"value1\">value1</paramref> by <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Equality(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether two quaternions are equal.</summary>\r\n      <param name=\"value1\">The first quaternion to compare.</param>\r\n      <param name=\"value2\">The second quaternion to compare.</param>\r\n      <returns>true if the two quaternions are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Inequality(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether two quaternions are not equal.</summary>\r\n      <param name=\"value1\">The first quaternion to compare.</param>\r\n      <param name=\"value2\">The second quaternion to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Multiply(System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Returns the quaternion that results from scaling all the components of a specified quaternion by a scalar factor.</summary>\r\n      <param name=\"value1\">The source quaternion.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The scaled quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Multiply(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns the quaternion that results from multiplying two quaternions together.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The product quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Subtraction(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Subtracts each element in a second quaternion from its corresponding element in a first quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_UnaryNegation(System.Numerics.Quaternion)\">\r\n      <summary>Reverses the sign of each component of the quaternion.</summary>\r\n      <param name=\"value\">The quaternion to negate.</param>\r\n      <returns>The negated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Slerp(System.Numerics.Quaternion,System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Interpolates between two quaternions, using spherical linear interpolation.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <param name=\"amount\">The relative weight of the second quaternion in the interpolation.</param>\r\n      <returns>The interpolated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Subtract(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Subtracts each element in a second quaternion from its corresponding element in a first quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.ToString\">\r\n      <summary>Returns a string that represents this quaternion.</summary>\r\n      <returns>The string representation of this quaternion.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.W\">\r\n      <summary>The rotation component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.X\">\r\n      <summary>The X value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.Y\">\r\n      <summary>The Y value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.Z\">\r\n      <summary>The Z value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector`1\">\r\n      <summary>Represents a single vector of a specified numeric type that is suitable for low-level optimization of parallel algorithms.</summary>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0)\">\r\n      <summary>Creates a vector whose components are of a specified type.</summary>\r\n      <param name=\"value\">The numeric type that defines the type of the components in the vector.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0[])\">\r\n      <summary>Creates a vector from a specified array.</summary>\r\n      <param name=\"values\">A numeric array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"values\">values</paramref> is null.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0[],System.Int32)\">\r\n      <summary>Creates a vector from a specified array starting at a specified index position.</summary>\r\n      <param name=\"values\">A numeric array.</param>\r\n      <param name=\"index\">The starting index position from which to create the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"values\">values</paramref> is null.</exception>\r\n      <exception cref=\"T:System.IndexOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n The length of <paramref name=\"values\">values</paramref> minus <paramref name=\"index\">index</paramref> is less than <see cref=\"System.Numerics.Vector`1.Count\"></see>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.CopyTo(`0[])\">\r\n      <summary>Copies the vector instance to a specified destination array.</summary>\r\n      <param name=\"destination\">The array to receive a copy of the vector values.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"destination\">destination</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current vector is greater than the number of elements available in the <paramref name=\"destination\">destination</paramref> array.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.CopyTo(`0[],System.Int32)\">\r\n      <summary>Copies the vector instance to a specified destination array starting at a specified index position.</summary>\r\n      <param name=\"destination\">The array to receive a copy of the vector values.</param>\r\n      <param name=\"startIndex\">The starting index in destination at which to begin the copy operation.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"destination\">destination</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than the number of elements available from <paramref name=\"startIndex\">startIndex</paramref> to the end of the <paramref name=\"destination\">destination</paramref> array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero or greater than the last index in <paramref name=\"destination\">destination</paramref>.</exception>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Count\">\r\n      <summary>Returns the number of elements stored in the vector.</summary>\r\n      <returns>The number of elements stored in the vector.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">Access to the property getter via reflection is not supported.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.Equals(System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether this instance is equal to a specified vector.</summary>\r\n      <param name=\"other\">The vector to compare with this instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"other\">other</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance is equal to a specified object.</summary>\r\n      <param name=\"obj\">The object to compare with this instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. The method returns false if <paramref name=\"obj\">obj</paramref> is null, or if <paramref name=\"obj\">obj</paramref> is a vector of a different type than the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Item(System.Int32)\">\r\n      <summary>Gets the element at a specified index.</summary>\r\n      <param name=\"index\">The index of the element to return.</param>\r\n      <returns>The element at index <paramref name=\"index\">index</paramref>.</returns>\r\n      <exception cref=\"T:System.IndexOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to <see cref=\"System.Numerics.Vector`1.Count\"></see>.</exception>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.One\">\r\n      <summary>Returns a vector containing all ones.</summary>\r\n      <returns>A vector containing all ones.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Addition(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_BitwiseAnd(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise And operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise And of <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_BitwiseOr(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise Or operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise Or of the elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Division(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Equality(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_ExclusiveOr(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise XOr operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise XOr of the elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt64}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt64\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt32}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt32\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt16}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt16\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Single}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Single\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.SByte}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.SByte\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Double}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Double\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int32}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int32\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int16}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int16\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Byte}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Byte\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int64}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int64\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Inequality(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether any single pair of elements in the specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if any element pairs in left and right are equal. false if no element pairs are equal.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(System.Numerics.Vector{`0},`0)\">\r\n      <summary>Multiplies a vector by a specified scalar value.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <param name=\"factor\">A scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(`0,System.Numerics.Vector{`0})\">\r\n      <summary>Multiplies a vector by the given scalar.</summary>\r\n      <param name=\"factor\">The scalar value.</param>\r\n      <param name=\"value\">The source vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_OnesComplement(System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector whose elements are obtained by taking the one&amp;#39;s complement of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <returns>The one&amp;#39;s complement vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Subtraction(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_UnaryNegation(System.Numerics.Vector{`0})\">\r\n      <summary>Negates a given vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of this vector using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString\">\r\n      <summary>Returns the string representation of this vector using default formatting.</summary>\r\n      <returns>The string representation of this vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString(System.String)\">\r\n      <summary>Returns the string representation of this vector using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Zero\">\r\n      <summary>Returns a vector containing all zeroes.</summary>\r\n      <returns>A vector containing all zeroes.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector\">\r\n      <summary>Provides a collection of static convenience methods for creating, manipulating, combining, and converting generic vectors.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Abs``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the absolute values of the given vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Add``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the sum of each pair of elements from two given vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AndNot``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise And Not operation on each pair of corresponding elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorByte``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned bytes.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorDouble``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a double-precision floating-point vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt16``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of 16-bit integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt32``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt64``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of long integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorSByte``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of signed bytes.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorSingle``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a single-precision floating-point vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt16``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned 16-bit integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt32``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt64``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned long integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.BitwiseAnd``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise And operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.BitwiseOr``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise Or operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Creates a new single-precision vector with elements selected between two specified single-precision source vectors based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Creates a new double-precision vector with elements selected between two specified double-precision source vectors based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Creates a new vector of a specified type with elements selected between two specified source vectors of the same type based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToDouble(System.Numerics.Vector{System.Int64})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToDouble(System.Numerics.Vector{System.UInt64})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToInt32(System.Numerics.Vector{System.Single})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToInt64(System.Numerics.Vector{System.Double})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToSingle(System.Numerics.Vector{System.Int32})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToSingle(System.Numerics.Vector{System.UInt32})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToUInt32(System.Numerics.Vector{System.Single})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToUInt64(System.Numerics.Vector{System.Double})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Divide``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the result of dividing the first vector&amp;#39;s elements by the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The divided vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Dot``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified double-precision vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified integral vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in two specified long integer vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified single-precision vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector of a specified type whose elements signal whether the elements in two specified vectors of the same type are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.EqualsAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether each pair of elements in the given vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.EqualsAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any single pair of elements in the given vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element pair in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> is equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are greater than their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are greater than their corresponding elements in a second single-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than their corresponding elements in the second vector of the same time.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are greater than the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> are greater than the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is greater than the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is greater than the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one vector are greater than or equal to their corresponding elements in the single-precision floating-point second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than or equal to their corresponding elements in the second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than or equal to their corresponding elements in the second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one vector are greater than or equal to their corresponding elements in the second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than or equal to their corresponding elements in the second vector of the same type.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqualAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are greater than or equal to all the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> are greater than or equal to the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqualAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is greater than or equal to the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is greater than or equal to the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector.IsHardwareAccelerated\">\r\n      <summary>Gets a value that indicates whether vector operations are subject to hardware acceleration through JIT intrinsic support.</summary>\r\n      <returns>true if vector operations are subject to hardware acceleration; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are less than their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are less than their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are less than their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision vector are less than their corresponding elements in a second single-precision vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector of a specified type whose elements signal whether the elements in one vector are less than their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all of the elements in the first vector are less than their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all of the elements in <paramref name=\"left\">left</paramref> are less than the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is less than the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is less than the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are less than or equal to their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are less than or equal to their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are less or equal to their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are less than or equal to their corresponding elements in a second single-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector are less than or equal to their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqualAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are less than or equal to their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all of the elements in <paramref name=\"left\">left</paramref> are less than or equal to the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqualAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is less than or equal to the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is less than or equal to the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Max``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the maximum of each pair of elements in the two given vectors.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The maximum vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Min``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the minimum of each pair of elements in the two given vectors.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The minimum vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(``0,System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are a scalar value multiplied by each of the values of a specified vector.</summary>\r\n      <param name=\"left\">The scalar value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the product of each pair of elements in two specified vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(System.Numerics.Vector{``0},``0)\">\r\n      <summary>Returns a new vector whose values are the values of a specified vector each multiplied by a scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int16},System.Numerics.Vector{System.Int16})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt16},System.Numerics.Vector{System.UInt16})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt32},System.Numerics.Vector{System.UInt32})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt64},System.Numerics.Vector{System.UInt64})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Negate``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the negation of the corresponding element in the specified vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.OnesComplement``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are obtained by taking the one&amp;#39;s complement of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.SquareRoot``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the square roots of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Subtract``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the difference between the elements in the second vector and their corresponding elements in the first vector.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.UInt16},System.Numerics.Vector{System.UInt32}@,System.Numerics.Vector{System.UInt32}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Double}@,System.Numerics.Vector{System.Double}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.SByte},System.Numerics.Vector{System.Int16}@,System.Numerics.Vector{System.Int16}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.UInt32},System.Numerics.Vector{System.UInt64}@,System.Numerics.Vector{System.UInt64}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Int16},System.Numerics.Vector{System.Int32}@,System.Numerics.Vector{System.Int32}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Byte},System.Numerics.Vector{System.UInt16}@,System.Numerics.Vector{System.UInt16}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int64}@,System.Numerics.Vector{System.Int64}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Xor``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise exclusive Or (XOr) operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector2\">\r\n      <summary>Represents a vector with two single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector2\"></see> object whose two elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to both elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.#ctor(System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector2.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector2.Y\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Abs(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Add(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Clamp(System.Numerics.Vector2,System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Distance(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.DistanceSquared(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Divide(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Divide(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Dot(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Equals(System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Length\">\r\n      <summary>Returns the length of the vector.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Lerp(System.Numerics.Vector2,System.Numerics.Vector2,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Max(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Min(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Negate(System.Numerics.Vector2)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Normalize(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"value\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.One\">\r\n      <summary>Gets a vector whose 2 elements are equal to one.</summary>\r\n      <returns>A vector whose two elements are equal to one (that is, it returns the vector (1,1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Addition(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Division(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Division(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Equality(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Inequality(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Subtraction(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_UnaryNegation(System.Numerics.Vector2)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Reflect(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the reflection of a vector off a surface that has the specified normal.</summary>\r\n      <param name=\"vector\">The source vector.</param>\r\n      <param name=\"normal\">The normal of the surface being reflected off.</param>\r\n      <returns>The reflected vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.SquareRoot(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Subtract(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Matrix3x2)\">\r\n      <summary>Transforms a vector by a specified 3x2 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.TransformNormal(System.Numerics.Vector2,System.Numerics.Matrix3x2)\">\r\n      <summary>Transforms a vector normal by the given 3x2 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.TransformNormal(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector normal by the given 4x4 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.UnitX\">\r\n      <summary>Gets the vector (1,0).</summary>\r\n      <returns>The vector (1,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.UnitY\">\r\n      <summary>Gets the vector (0,1).</summary>\r\n      <returns>The vector (0,1).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector2.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector2.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.Zero\">\r\n      <summary>Returns a vector whose 2 elements are equal to zero.</summary>\r\n      <returns>A vector whose two elements are equal to zero (that is, it returns the vector (0,0).</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector3\">\r\n      <summary>Represents a vector with three  single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector3\"></see> object whose three elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to all three elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Creates a   new <see cref=\"T:System.Numerics.Vector3\"></see> object from the specified <see cref=\"T:System.Numerics.Vector2\"></see> object and the specified value.</summary>\r\n      <param name=\"value\">The vector with two elements.</param>\r\n      <param name=\"z\">The additional value to assign to the <see cref=\"F:System.Numerics.Vector3.Z\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.Y\"></see> field.</param>\r\n      <param name=\"z\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.Z\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Abs(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Add(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Clamp(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Cross(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Computes the cross product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The cross product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Distance(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.DistanceSquared(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Divide(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Divide(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Dot(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Equals(System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Length\">\r\n      <summary>Returns the length of this vector object.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Lerp(System.Numerics.Vector3,System.Numerics.Vector3,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Max(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Min(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Negate(System.Numerics.Vector3)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Normalize(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"value\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.One\">\r\n      <summary>Gets a vector whose 3 elements are equal to one.</summary>\r\n      <returns>A vector whose three elements are equal to one (that is, it returns the vector (1,1,1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Addition(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Division(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Division(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Equality(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Inequality(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Subtraction(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_UnaryNegation(System.Numerics.Vector3)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Reflect(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the reflection of a vector off a surface that has the specified normal.</summary>\r\n      <param name=\"vector\">The source vector.</param>\r\n      <param name=\"normal\">The normal of the surface being reflected off.</param>\r\n      <returns>The reflected vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.SquareRoot(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Subtract(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Transform(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Transform(System.Numerics.Vector3,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.TransformNormal(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector normal by the given 4x4 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitX\">\r\n      <summary>Gets the vector (1,0,0).</summary>\r\n      <returns>The vector (1,0,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitY\">\r\n      <summary>Gets the vector (0,1,0).</summary>\r\n      <returns>The vector (0,1,0)..</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitZ\">\r\n      <summary>Gets the vector (0,0,1).</summary>\r\n      <returns>The vector (0,0,1).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.Z\">\r\n      <summary>The Z component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.Zero\">\r\n      <summary>Gets a vector whose 3 elements are equal to zero.</summary>\r\n      <returns>A vector whose three elements are equal to zero (that is, it returns the vector (0,0,0).</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector4\">\r\n      <summary>Represents a vector with four single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector4\"></see> object whose four elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to all four elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Constructs a new <see cref=\"T:System.Numerics.Vector4\"></see> object from the specified <see cref=\"T:System.Numerics.Vector3\"></see> object and a W component.</summary>\r\n      <param name=\"value\">The vector to use for the X, Y, and Z components.</param>\r\n      <param name=\"w\">The W component.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Numerics.Vector2,System.Single,System.Single)\">\r\n      <summary>Creates a   new <see cref=\"T:System.Numerics.Vector4\"></see> object from the specified <see cref=\"T:System.Numerics.Vector2\"></see> object and a Z and a W component.</summary>\r\n      <param name=\"value\">The vector to use for the X and Y components.</param>\r\n      <param name=\"z\">The Z component.</param>\r\n      <param name=\"w\">The W component.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.Y\"></see> field.</param>\r\n      <param name=\"z\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.Z\"></see> field.</param>\r\n      <param name=\"w\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.W\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Abs(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Add(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Clamp(System.Numerics.Vector4,System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Distance(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.DistanceSquared(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Divide(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Divide(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Dot(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Equals(System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Length\">\r\n      <summary>Returns the length of this vector object.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Lerp(System.Numerics.Vector4,System.Numerics.Vector4,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Max(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Min(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Single,System.Numerics.Vector4)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Negate(System.Numerics.Vector4)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Normalize(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"vector\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.One\">\r\n      <summary>Gets a vector whose 4 elements are equal to one.</summary>\r\n      <returns>Returns <see cref=\"System.Numerics.Vector4\"></see>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Addition(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Division(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Division(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Equality(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Inequality(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Single,System.Numerics.Vector4)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Subtraction(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_UnaryNegation(System.Numerics.Vector4)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.SquareRoot(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Subtract(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector4,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a four-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector4,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a four-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"vector\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector3,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a three-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a two-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector2,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a two-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a three-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitW\">\r\n      <summary>Gets the vector (0,0,0,1).</summary>\r\n      <returns>The vector (0,0,0,1).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitX\">\r\n      <summary>Gets the vector (1,0,0,0).</summary>\r\n      <returns>The vector (1,0,0,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitY\">\r\n      <summary>Gets the vector (0,1,0,0).</summary>\r\n      <returns>The vector (0,1,0,0)..</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitZ\">\r\n      <summary>Gets a vector whose 4 elements are equal to zero.</summary>\r\n      <returns>The vector (0,0,1,0).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.W\">\r\n      <summary>The W component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.Z\">\r\n      <summary>The Z component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.Zero\">\r\n      <summary>Gets a vector whose 4 elements are equal to zero.</summary>\r\n      <returns>A vector whose four elements are equal to zero (that is, it returns the vector (0,0,0,0).</returns>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?><doc>\r\n  <assembly>\r\n    <name>System.Numerics.Vectors</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:System.Numerics.Matrix3x2\">\r\n      <summary>Represents a 3x2 matrix.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a 3x2 matrix from the specified components.</summary>\r\n      <param name=\"m11\">The value to assign to the first element in the first row.</param>\r\n      <param name=\"m12\">The value to assign to the second element in the first row.</param>\r\n      <param name=\"m21\">The value to assign to the first element in the second row.</param>\r\n      <param name=\"m22\">The value to assign to the second element in the second row.</param>\r\n      <param name=\"m31\">The value to assign to the first element in the third row.</param>\r\n      <param name=\"m32\">The value to assign to the second element in the third row.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Add(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateRotation(System.Single)\">\r\n      <summary>Creates a rotation matrix using the given rotation in radians.</summary>\r\n      <param name=\"radians\">The amount of rotation, in radians.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateRotation(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a rotation matrix using the specified rotation in radians and a center point.</summary>\r\n      <param name=\"radians\">The amount of rotation, in radians.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Single)\">\r\n      <summary>Creates a scaling matrix from the specified X and Y components.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix that scales uniformly with the specified scale with an offset from the specified center.</summary>\r\n      <param name=\"scale\">The uniform scale to use.</param>\r\n      <param name=\"centerPoint\">The center offset.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix that is offset by a given center point.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single)\">\r\n      <summary>Creates a scaling matrix that scales uniformly with the given scale.</summary>\r\n      <param name=\"scale\">The uniform scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale with an offset from the specified center point.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <param name=\"centerPoint\">The center offset.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateSkew(System.Single,System.Single)\">\r\n      <summary>Creates a skew matrix from the specified angles in radians.</summary>\r\n      <param name=\"radiansX\">The X angle, in radians.</param>\r\n      <param name=\"radiansY\">The Y angle, in radians.</param>\r\n      <returns>The skew matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateSkew(System.Single,System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a skew matrix from the specified angles in radians and a center point.</summary>\r\n      <param name=\"radiansX\">The X angle, in radians.</param>\r\n      <param name=\"radiansY\">The Y angle, in radians.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The skew matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateTranslation(System.Numerics.Vector2)\">\r\n      <summary>Creates a translation matrix from the specified 2-dimensional vector.</summary>\r\n      <param name=\"position\">The translation position.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateTranslation(System.Single,System.Single)\">\r\n      <summary>Creates a translation matrix from the specified X and Y components.</summary>\r\n      <param name=\"xPosition\">The X position.</param>\r\n      <param name=\"yPosition\">The Y position.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Equals(System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether this instance and another 3x2 matrix are equal.</summary>\r\n      <param name=\"other\">The other matrix.</param>\r\n      <returns>true if the two matrices are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.GetDeterminant\">\r\n      <summary>Calculates the determinant for this matrix.</summary>\r\n      <returns>The determinant.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.Identity\">\r\n      <summary>Gets the multiplicative identity matrix.</summary>\r\n      <returns>The multiplicative identify matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Invert(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2@)\">\r\n      <summary>Inverts the specified matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The matrix to invert.</param>\r\n      <param name=\"result\">When this method returns, contains the inverted matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was converted successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.IsIdentity\">\r\n      <summary>Indicates whether the current matrix is the identity matrix.</summary>\r\n      <returns>true if the current matrix is the identity matrix; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Lerp(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Performs a linear interpolation from one matrix to a second matrix based on a value that specifies the weighting of the second matrix.</summary>\r\n      <param name=\"matrix1\">The first matrix.</param>\r\n      <param name=\"matrix2\">The second matrix.</param>\r\n      <param name=\"amount\">The relative weighting of matrix2.</param>\r\n      <returns>The interpolated matrix.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M11\">\r\n      <summary>The first element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M12\">\r\n      <summary>The second element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M21\">\r\n      <summary>The first element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M22\">\r\n      <summary>The second element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M31\">\r\n      <summary>The first element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M32\">\r\n      <summary>The second element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Multiply(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Multiply(System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Negate(System.Numerics.Matrix3x2)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Addition(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Equality(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Inequality(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are not equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Multiply(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Multiply(System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Subtraction(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_UnaryNegation(System.Numerics.Matrix3x2)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Subtract(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.ToString\">\r\n      <summary>Returns a string that represents this matrix.</summary>\r\n      <returns>The string representation of this matrix.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.Translation\">\r\n      <summary>Gets or sets the translation component of this matrix.</summary>\r\n      <returns>The translation component of the current instance.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Matrix4x4\">\r\n      <summary>Represents a 4x4 matrix.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.#ctor(System.Numerics.Matrix3x2)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Matrix4x4\"></see> object from a specified <see cref=\"T:System.Numerics.Matrix3x2\"></see> object.</summary>\r\n      <param name=\"value\">A 3x2 matrix.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a 4x4 matrix from the specified components.</summary>\r\n      <param name=\"m11\">The value to assign to the first element in the first row.</param>\r\n      <param name=\"m12\">The value to assign to the second element in the first row.</param>\r\n      <param name=\"m13\">The value to assign to the third element in the first row.</param>\r\n      <param name=\"m14\">The value to assign to the fourth element in the first row.</param>\r\n      <param name=\"m21\">The value to assign to the first element in the second row.</param>\r\n      <param name=\"m22\">The value to assign to the second element in the second row.</param>\r\n      <param name=\"m23\">The value to assign to the third element in the second row.</param>\r\n      <param name=\"m24\">The value to assign to the third element in the second row.</param>\r\n      <param name=\"m31\">The value to assign to the first element in the third row.</param>\r\n      <param name=\"m32\">The value to assign to the second element in the third row.</param>\r\n      <param name=\"m33\">The value to assign to the third element in the third row.</param>\r\n      <param name=\"m34\">The value to assign to the fourth element in the third row.</param>\r\n      <param name=\"m41\">The value to assign to the first element in the fourth row.</param>\r\n      <param name=\"m42\">The value to assign to the second element in the fourth row.</param>\r\n      <param name=\"m43\">The value to assign to the third element in the fourth row.</param>\r\n      <param name=\"m44\">The value to assign to the fourth element in the fourth row.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Add(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateBillboard(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a spherical billboard that rotates around a specified object position.</summary>\r\n      <param name=\"objectPosition\">The position of the object that the billboard will rotate around.</param>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"cameraUpVector\">The up vector of the camera.</param>\r\n      <param name=\"cameraForwardVector\">The forward vector of the camera.</param>\r\n      <returns>The created billboard.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateConstrainedBillboard(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a cylindrical billboard that rotates around a specified axis.</summary>\r\n      <param name=\"objectPosition\">The position of the object that the billboard will rotate around.</param>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"rotateAxis\">The axis to rotate the billboard around.</param>\r\n      <param name=\"cameraForwardVector\">The forward vector of the camera.</param>\r\n      <param name=\"objectForwardVector\">The forward vector of the object.</param>\r\n      <returns>The billboard matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromAxisAngle(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a matrix that rotates around an arbitrary vector.</summary>\r\n      <param name=\"axis\">The axis to rotate around.</param>\r\n      <param name=\"angle\">The angle to rotate around axis, in radians.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromQuaternion(System.Numerics.Quaternion)\">\r\n      <summary>Creates a rotation matrix from the specified Quaternion rotation value.</summary>\r\n      <param name=\"quaternion\">The source Quaternion.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromYawPitchRoll(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a rotation matrix from the specified yaw, pitch, and roll.</summary>\r\n      <param name=\"yaw\">The angle of rotation, in radians, around the Y axis.</param>\r\n      <param name=\"pitch\">The angle of rotation, in radians, around the X axis.</param>\r\n      <param name=\"roll\">The angle of rotation, in radians, around the Z axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateLookAt(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a view matrix.</summary>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"cameraTarget\">The target towards which the camera is pointing.</param>\r\n      <param name=\"cameraUpVector\">The direction that is &amp;quot;up&amp;quot; from the camera&amp;#39;s point of view.</param>\r\n      <returns>The view matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateOrthographic(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates an orthographic perspective matrix from the given view volume dimensions.</summary>\r\n      <param name=\"width\">The width of the view volume.</param>\r\n      <param name=\"height\">The height of the view volume.</param>\r\n      <param name=\"zNearPlane\">The minimum Z-value of the view volume.</param>\r\n      <param name=\"zFarPlane\">The maximum Z-value of the view volume.</param>\r\n      <returns>The orthographic projection matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateOrthographicOffCenter(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a customized orthographic projection matrix.</summary>\r\n      <param name=\"left\">The minimum X-value of the view volume.</param>\r\n      <param name=\"right\">The maximum X-value of the view volume.</param>\r\n      <param name=\"bottom\">The minimum Y-value of the view volume.</param>\r\n      <param name=\"top\">The maximum Y-value of the view volume.</param>\r\n      <param name=\"zNearPlane\">The minimum Z-value of the view volume.</param>\r\n      <param name=\"zFarPlane\">The maximum Z-value of the view volume.</param>\r\n      <returns>The orthographic projection matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspective(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a perspective projection matrix from the given view volume dimensions.</summary>\r\n      <param name=\"width\">The width of the view volume at the near view plane.</param>\r\n      <param name=\"height\">The height of the view volume at the near view plane.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspectiveFieldOfView(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a perspective projection matrix based on a field of view, aspect ratio, and near and far view plane distances.</summary>\r\n      <param name=\"fieldOfView\">The field of view in the y direction, in radians.</param>\r\n      <param name=\"aspectRatio\">The aspect ratio, defined as view space width divided by height.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"fieldOfView\">fieldOfView</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"fieldOfView\">fieldOfView</paramref> is greater than or equal to <see cref=\"System.Math.PI\"></see>.  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspectiveOffCenter(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a customized perspective projection matrix.</summary>\r\n      <param name=\"left\">The minimum x-value of the view volume at the near view plane.</param>\r\n      <param name=\"right\">The maximum x-value of the view volume at the near view plane.</param>\r\n      <param name=\"bottom\">The minimum y-value of the view volume at the near view plane.</param>\r\n      <param name=\"top\">The maximum y-value of the view volume at the near view plane.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateReflection(System.Numerics.Plane)\">\r\n      <summary>Creates a matrix that reflects the coordinate system about a specified plane.</summary>\r\n      <param name=\"value\">The plane about which to create a reflection.</param>\r\n      <returns>A new matrix expressing the reflection.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationX(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the X axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the X axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationX(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a matrix for rotating points around the X axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the X axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationY(System.Single,System.Numerics.Vector3)\">\r\n      <summary>The amount, in radians, by which to rotate around the Y axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Y-axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationY(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the Y axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Y-axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationZ(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the Z axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Z-axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationZ(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a matrix for rotating points around the Z axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Z-axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single)\">\r\n      <summary>Creates a uniform scaling matrix that scale equally on each axis.</summary>\r\n      <param name=\"scale\">The uniform scaling factor.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix with a center point.</summary>\r\n      <param name=\"scales\">The vector that contains the amount to scale on each axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a uniform scaling matrix that scales equally on each axis with a center point.</summary>\r\n      <param name=\"scale\">The uniform scaling factor.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a scaling matrix from the specified X, Y, and Z components.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"zScale\">The value to scale by on the Z axis.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Single,System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix that is offset by a given center point.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"zScale\">The value to scale by on the Z axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateShadow(System.Numerics.Vector3,System.Numerics.Plane)\">\r\n      <summary>Creates a matrix that flattens geometry into a specified plane as if casting a shadow from a specified light source.</summary>\r\n      <param name=\"lightDirection\">The direction from which the light that will cast the shadow is coming.</param>\r\n      <param name=\"plane\">The plane onto which the new matrix should flatten geometry so as to cast a shadow.</param>\r\n      <returns>A new matrix that can be used to flatten geometry onto the specified plane from the specified direction.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateTranslation(System.Numerics.Vector3)\">\r\n      <summary>Creates a translation matrix from the specified 3-dimensional vector.</summary>\r\n      <param name=\"position\">The amount to translate in each axis.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateTranslation(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a translation matrix from the specified X, Y, and Z components.</summary>\r\n      <param name=\"xPosition\">The amount to translate on the X axis.</param>\r\n      <param name=\"yPosition\">The amount to translate on the Y axis.</param>\r\n      <param name=\"zPosition\">The amount to translate on the Z axis.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateWorld(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a world matrix with the specified parameters.</summary>\r\n      <param name=\"position\">The position of the object.</param>\r\n      <param name=\"forward\">The forward direction of the object.</param>\r\n      <param name=\"up\">The upward direction of the object. Its value is usually [0, 1, 0].</param>\r\n      <returns>The world matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Decompose(System.Numerics.Matrix4x4,System.Numerics.Vector3@,System.Numerics.Quaternion@,System.Numerics.Vector3@)\">\r\n      <summary>Attempts to extract the scale, translation, and rotation components from the given scale, rotation, or translation matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The source matrix.</param>\r\n      <param name=\"scale\">When this method returns, contains the scaling component of the transformation matrix if the operation succeeded.</param>\r\n      <param name=\"rotation\">When this method returns, contains the rotation component of the transformation matrix if the operation succeeded.</param>\r\n      <param name=\"translation\">When the method returns, contains the translation component of the transformation matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was decomposed successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Equals(System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether this instance and another 4x4 matrix are equal.</summary>\r\n      <param name=\"other\">The other matrix.</param>\r\n      <returns>true if the two matrices are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.GetDeterminant\">\r\n      <summary>Calculates the determinant of the current 4x4 matrix.</summary>\r\n      <returns>The determinant.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.Identity\">\r\n      <summary>Gets the multiplicative identity matrix.</summary>\r\n      <returns>Gets the multiplicative identity matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Invert(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4@)\">\r\n      <summary>Inverts the specified matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The matrix to invert.</param>\r\n      <param name=\"result\">When this method returns, contains the inverted matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was converted successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.IsIdentity\">\r\n      <summary>Indicates whether the current matrix is the identity matrix.</summary>\r\n      <returns>true if the current matrix is the identity matrix; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Lerp(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Performs a linear interpolation from one matrix to a second matrix based on a value that specifies the weighting of the second matrix.</summary>\r\n      <param name=\"matrix1\">The first matrix.</param>\r\n      <param name=\"matrix2\">The second matrix.</param>\r\n      <param name=\"amount\">The relative weighting of matrix2.</param>\r\n      <returns>The interpolated matrix.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M11\">\r\n      <summary>The first element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M12\">\r\n      <summary>The second element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M13\">\r\n      <summary>The third element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M14\">\r\n      <summary>The fourth element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M21\">\r\n      <summary>The first element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M22\">\r\n      <summary>The second element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M23\">\r\n      <summary>The third element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M24\">\r\n      <summary>The fourth element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M31\">\r\n      <summary>The first element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M32\">\r\n      <summary>The second element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M33\">\r\n      <summary>The third element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M34\">\r\n      <summary>The fourth element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M41\">\r\n      <summary>The first element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M42\">\r\n      <summary>The second element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M43\">\r\n      <summary>The third element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M44\">\r\n      <summary>The fourth element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Multiply(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Multiply(System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Negate(System.Numerics.Matrix4x4)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Addition(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Equality(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to care</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Inequality(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are not equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Multiply(System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Multiply(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Subtraction(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_UnaryNegation(System.Numerics.Matrix4x4)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Subtract(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.ToString\">\r\n      <summary>Returns a string that represents this matrix.</summary>\r\n      <returns>The string representation of this matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Transform(System.Numerics.Matrix4x4,System.Numerics.Quaternion)\">\r\n      <summary>Transforms the specified matrix by applying the specified Quaternion rotation.</summary>\r\n      <param name=\"value\">The matrix to transform.</param>\r\n      <param name=\"rotation\">The rotation t apply.</param>\r\n      <returns>The transformed matrix.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.Translation\">\r\n      <summary>Gets or sets the translation component of this matrix.</summary>\r\n      <returns>The translation component of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Transpose(System.Numerics.Matrix4x4)\">\r\n      <summary>Transposes the rows and columns of a matrix.</summary>\r\n      <param name=\"matrix\">The matrix to transpose.</param>\r\n      <returns>The transposed matrix.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Plane\">\r\n      <summary>Represents a three-dimensional plane.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Numerics.Vector4)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from a specified four-dimensional vector.</summary>\r\n      <param name=\"value\">A vector whose first three elements describe the normal vector, and whose <see cref=\"F:System.Numerics.Vector4.W\"></see> defines the distance along that normal from the origin.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from a specified normal and the distance along the normal from the origin.</summary>\r\n      <param name=\"normal\">The plane&amp;#39;s normal vector.</param>\r\n      <param name=\"d\">The plane&amp;#39;s distance from the origin along its normal vector.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from the X, Y, and Z components of its normal, and its distance from the origin on that normal.</summary>\r\n      <param name=\"x\">The X component of the normal.</param>\r\n      <param name=\"y\">The Y component of the normal.</param>\r\n      <param name=\"z\">The Z component of the normal.</param>\r\n      <param name=\"d\">The distance of the plane along its normal from the origin.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.CreateFromVertices(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object that contains three specified points.</summary>\r\n      <param name=\"point1\">The first point defining the plane.</param>\r\n      <param name=\"point2\">The second point defining the plane.</param>\r\n      <param name=\"point3\">The third point defining the plane.</param>\r\n      <returns>The plane containing the three points.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Plane.D\">\r\n      <summary>The distance of the plane along its normal from the origin.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Dot(System.Numerics.Plane,System.Numerics.Vector4)\">\r\n      <summary>Calculates the dot product of a plane and a 4-dimensional vector.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The four-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.DotCoordinate(System.Numerics.Plane,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of a specified three-dimensional vector and the normal vector of this plane plus the distance (<see cref=\"F:System.Numerics.Plane.D\"></see>) value of the plane.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The 3-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.DotNormal(System.Numerics.Plane,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of a specified three-dimensional vector and the <see cref=\"F:System.Numerics.Plane.Normal\"></see> vector of this plane.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The three-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Equals(System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether this instance and another plane object are equal.</summary>\r\n      <param name=\"other\">The other plane.</param>\r\n      <returns>true if the two planes are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Plane.Normal\">\r\n      <summary>The normal vector of the plane.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Normalize(System.Numerics.Plane)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Plane\"></see> object whose normal vector is the source plane&amp;#39;s normal vector normalized.</summary>\r\n      <param name=\"value\">The source plane.</param>\r\n      <returns>The normalized plane.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.op_Equality(System.Numerics.Plane,System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether two planes are equal.</summary>\r\n      <param name=\"value1\">The first plane to compare.</param>\r\n      <param name=\"value2\">The second plane to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.op_Inequality(System.Numerics.Plane,System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether two planes are not equal.</summary>\r\n      <param name=\"value1\">The first plane to compare.</param>\r\n      <param name=\"value2\">The second plane to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.ToString\">\r\n      <summary>Returns the string representation of this plane object.</summary>\r\n      <returns>A string that represents this <see cref=\"System.Numerics.Plane\"></see> object.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Transform(System.Numerics.Plane,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a normalized plane by a 4x4 matrix.</summary>\r\n      <param name=\"plane\">The normalized plane to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix to apply to plane.</param>\r\n      <returns>The transformed plane.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Transform(System.Numerics.Plane,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a normalized plane by a Quaternion rotation.</summary>\r\n      <param name=\"plane\">The normalized plane to transform.</param>\r\n      <param name=\"rotation\">The Quaternion rotation to apply to the plane.</param>\r\n      <returns>A new plane that results from applying the Quaternion rotation.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Quaternion\">\r\n      <summary>Represents a vector that is used to encode three-dimensional physical rotations.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a quaternion from the specified vector and rotation parts.</summary>\r\n      <param name=\"vectorPart\">The vector part of the quaternion.</param>\r\n      <param name=\"scalarPart\">The rotation part of the quaternion.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Constructs a quaternion from the specified components.</summary>\r\n      <param name=\"x\">The value to assign to the X component of the quaternion.</param>\r\n      <param name=\"y\">The value to assign to the Y component of the quaternion.</param>\r\n      <param name=\"z\">The value to assign to the Z component of the quaternion.</param>\r\n      <param name=\"w\">The value to assign to the W component of the quaternion.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Add(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Adds each element in one quaternion with its corresponding element in a second quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Concatenate(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Concatenates two quaternions.</summary>\r\n      <param name=\"value1\">The first quaternion rotation in the series.</param>\r\n      <param name=\"value2\">The second quaternion rotation in the series.</param>\r\n      <returns>A new quaternion representing the concatenation of the <paramref name=\"value1\">value1</paramref> rotation followed by the <paramref name=\"value2\">value2</paramref> rotation.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Conjugate(System.Numerics.Quaternion)\">\r\n      <summary>Returns the conjugate of a specified quaternion.</summary>\r\n      <param name=\"value\">The quaternion.</param>\r\n      <returns>A new quaternion that is the conjugate of value.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromAxisAngle(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a quaternion from a vector and an angle to rotate about the vector.</summary>\r\n      <param name=\"axis\">The vector to rotate around.</param>\r\n      <param name=\"angle\">The angle, in radians, to rotate around the vector.</param>\r\n      <returns>The newly created quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromRotationMatrix(System.Numerics.Matrix4x4)\">\r\n      <summary>Creates a quaternion from the specified rotation matrix.</summary>\r\n      <param name=\"matrix\">The rotation matrix.</param>\r\n      <returns>The newly created quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromYawPitchRoll(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a new quaternion from the given yaw, pitch, and roll.</summary>\r\n      <param name=\"yaw\">The yaw angle, in radians, around the Y axis.</param>\r\n      <param name=\"pitch\">The pitch angle, in radians, around the X axis.</param>\r\n      <param name=\"roll\">The roll angle, in radians, around the Z axis.</param>\r\n      <returns>The resulting quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Divide(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Divides one quaternion by a second quaternion.</summary>\r\n      <param name=\"value1\">The dividend.</param>\r\n      <param name=\"value2\">The divisor.</param>\r\n      <returns>The quaternion that results from dividing <paramref name=\"value1\">value1</paramref> by <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Dot(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Calculates the dot product of two quaternions.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Equals(System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether this instance and another quaternion are equal.</summary>\r\n      <param name=\"other\">The other quaternion.</param>\r\n      <returns>true if the two quaternions are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Quaternion.Identity\">\r\n      <summary>Gets a quaternion that represents no rotation.</summary>\r\n      <returns>A quaternion whose values are (0, 0, 0, 1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Inverse(System.Numerics.Quaternion)\">\r\n      <summary>Returns the inverse of a quaternion.</summary>\r\n      <param name=\"value\">The quaternion.</param>\r\n      <returns>The inverted quaternion.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Quaternion.IsIdentity\">\r\n      <summary>Gets a value that indicates whether the current instance is the identity quaternion.</summary>\r\n      <returns>true if the current instance is the identity quaternion; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Length\">\r\n      <summary>Calculates the length of the quaternion.</summary>\r\n      <returns>The computed length of the quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.LengthSquared\">\r\n      <summary>Calculates the squared length of the quaternion.</summary>\r\n      <returns>The length squared of the quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Lerp(System.Numerics.Quaternion,System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Performs a linear interpolation between two quaternions based on a value that specifies the weighting of the second quaternion.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <param name=\"amount\">The relative weight of quaternion2 in the interpolation.</param>\r\n      <returns>The interpolated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Multiply(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns the quaternion that results from multiplying two quaternions together.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The product quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Multiply(System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Returns the quaternion that results from scaling all the components of a specified quaternion by a scalar factor.</summary>\r\n      <param name=\"value1\">The source quaternion.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The scaled quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Negate(System.Numerics.Quaternion)\">\r\n      <summary>Reverses the sign of each component of the quaternion.</summary>\r\n      <param name=\"value\">The quaternion to negate.</param>\r\n      <returns>The negated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Normalize(System.Numerics.Quaternion)\">\r\n      <summary>Divides each component of a specified <see cref=\"T:System.Numerics.Quaternion\"></see> by its length.</summary>\r\n      <param name=\"value\">The quaternion to normalize.</param>\r\n      <returns>The normalized quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Addition(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Adds each element in one quaternion with its corresponding element in a second quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Division(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Divides one quaternion by a second quaternion.</summary>\r\n      <param name=\"value1\">The dividend.</param>\r\n      <param name=\"value2\">The divisor.</param>\r\n      <returns>The quaternion that results from dividing <paramref name=\"value1\">value1</paramref> by <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Equality(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether two quaternions are equal.</summary>\r\n      <param name=\"value1\">The first quaternion to compare.</param>\r\n      <param name=\"value2\">The second quaternion to compare.</param>\r\n      <returns>true if the two quaternions are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Inequality(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether two quaternions are not equal.</summary>\r\n      <param name=\"value1\">The first quaternion to compare.</param>\r\n      <param name=\"value2\">The second quaternion to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Multiply(System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Returns the quaternion that results from scaling all the components of a specified quaternion by a scalar factor.</summary>\r\n      <param name=\"value1\">The source quaternion.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The scaled quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Multiply(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns the quaternion that results from multiplying two quaternions together.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The product quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Subtraction(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Subtracts each element in a second quaternion from its corresponding element in a first quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_UnaryNegation(System.Numerics.Quaternion)\">\r\n      <summary>Reverses the sign of each component of the quaternion.</summary>\r\n      <param name=\"value\">The quaternion to negate.</param>\r\n      <returns>The negated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Slerp(System.Numerics.Quaternion,System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Interpolates between two quaternions, using spherical linear interpolation.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <param name=\"amount\">The relative weight of the second quaternion in the interpolation.</param>\r\n      <returns>The interpolated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Subtract(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Subtracts each element in a second quaternion from its corresponding element in a first quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.ToString\">\r\n      <summary>Returns a string that represents this quaternion.</summary>\r\n      <returns>The string representation of this quaternion.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.W\">\r\n      <summary>The rotation component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.X\">\r\n      <summary>The X value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.Y\">\r\n      <summary>The Y value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.Z\">\r\n      <summary>The Z value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector`1\">\r\n      <summary>Represents a single vector of a specified numeric type that is suitable for low-level optimization of parallel algorithms.</summary>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0)\">\r\n      <summary>Creates a vector whose components are of a specified type.</summary>\r\n      <param name=\"value\">The numeric type that defines the type of the components in the vector.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0[])\">\r\n      <summary>Creates a vector from a specified array.</summary>\r\n      <param name=\"values\">A numeric array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"values\">values</paramref> is null.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0[],System.Int32)\">\r\n      <summary>Creates a vector from a specified array starting at a specified index position.</summary>\r\n      <param name=\"values\">A numeric array.</param>\r\n      <param name=\"index\">The starting index position from which to create the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"values\">values</paramref> is null.</exception>\r\n      <exception cref=\"T:System.IndexOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n The length of <paramref name=\"values\">values</paramref> minus <paramref name=\"index\">index</paramref> is less than <see cref=\"System.Numerics.Vector`1.Count\"></see>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.CopyTo(`0[])\">\r\n      <summary>Copies the vector instance to a specified destination array.</summary>\r\n      <param name=\"destination\">The array to receive a copy of the vector values.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"destination\">destination</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current vector is greater than the number of elements available in the <paramref name=\"destination\">destination</paramref> array.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.CopyTo(`0[],System.Int32)\">\r\n      <summary>Copies the vector instance to a specified destination array starting at a specified index position.</summary>\r\n      <param name=\"destination\">The array to receive a copy of the vector values.</param>\r\n      <param name=\"startIndex\">The starting index in destination at which to begin the copy operation.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"destination\">destination</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than the number of elements available from <paramref name=\"startIndex\">startIndex</paramref> to the end of the <paramref name=\"destination\">destination</paramref> array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero or greater than the last index in <paramref name=\"destination\">destination</paramref>.</exception>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Count\">\r\n      <summary>Returns the number of elements stored in the vector.</summary>\r\n      <returns>The number of elements stored in the vector.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">Access to the property getter via reflection is not supported.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.Equals(System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether this instance is equal to a specified vector.</summary>\r\n      <param name=\"other\">The vector to compare with this instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"other\">other</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance is equal to a specified object.</summary>\r\n      <param name=\"obj\">The object to compare with this instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. The method returns false if <paramref name=\"obj\">obj</paramref> is null, or if <paramref name=\"obj\">obj</paramref> is a vector of a different type than the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Item(System.Int32)\">\r\n      <summary>Gets the element at a specified index.</summary>\r\n      <param name=\"index\">The index of the element to return.</param>\r\n      <returns>The element at index <paramref name=\"index\">index</paramref>.</returns>\r\n      <exception cref=\"T:System.IndexOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to <see cref=\"System.Numerics.Vector`1.Count\"></see>.</exception>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.One\">\r\n      <summary>Returns a vector containing all ones.</summary>\r\n      <returns>A vector containing all ones.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Addition(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_BitwiseAnd(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise And operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise And of <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_BitwiseOr(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise Or operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise Or of the elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Division(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Equality(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_ExclusiveOr(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise XOr operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise XOr of the elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt64}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt64\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt32}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt32\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt16}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt16\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Single}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Single\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.SByte}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.SByte\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Double}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Double\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int32}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int32\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int16}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int16\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Byte}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Byte\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int64}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int64\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Inequality(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether any single pair of elements in the specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if any element pairs in left and right are equal. false if no element pairs are equal.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(System.Numerics.Vector{`0},`0)\">\r\n      <summary>Multiplies a vector by a specified scalar value.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <param name=\"factor\">A scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(`0,System.Numerics.Vector{`0})\">\r\n      <summary>Multiplies a vector by the given scalar.</summary>\r\n      <param name=\"factor\">The scalar value.</param>\r\n      <param name=\"value\">The source vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_OnesComplement(System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector whose elements are obtained by taking the one&amp;#39;s complement of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <returns>The one&amp;#39;s complement vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Subtraction(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_UnaryNegation(System.Numerics.Vector{`0})\">\r\n      <summary>Negates a given vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of this vector using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString\">\r\n      <summary>Returns the string representation of this vector using default formatting.</summary>\r\n      <returns>The string representation of this vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString(System.String)\">\r\n      <summary>Returns the string representation of this vector using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Zero\">\r\n      <summary>Returns a vector containing all zeroes.</summary>\r\n      <returns>A vector containing all zeroes.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector\">\r\n      <summary>Provides a collection of static convenience methods for creating, manipulating, combining, and converting generic vectors.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Abs``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the absolute values of the given vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Add``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the sum of each pair of elements from two given vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AndNot``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise And Not operation on each pair of corresponding elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorByte``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned bytes.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorDouble``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a double-precision floating-point vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt16``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of 16-bit integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt32``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt64``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of long integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorSByte``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of signed bytes.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorSingle``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a single-precision floating-point vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt16``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned 16-bit integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt32``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt64``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned long integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.BitwiseAnd``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise And operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.BitwiseOr``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise Or operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Creates a new single-precision vector with elements selected between two specified single-precision source vectors based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Creates a new double-precision vector with elements selected between two specified double-precision source vectors based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Creates a new vector of a specified type with elements selected between two specified source vectors of the same type based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToDouble(System.Numerics.Vector{System.Int64})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToDouble(System.Numerics.Vector{System.UInt64})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToInt32(System.Numerics.Vector{System.Single})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToInt64(System.Numerics.Vector{System.Double})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToSingle(System.Numerics.Vector{System.Int32})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToSingle(System.Numerics.Vector{System.UInt32})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToUInt32(System.Numerics.Vector{System.Single})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToUInt64(System.Numerics.Vector{System.Double})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Divide``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the result of dividing the first vector&amp;#39;s elements by the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The divided vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Dot``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified double-precision vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified integral vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in two specified long integer vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified single-precision vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector of a specified type whose elements signal whether the elements in two specified vectors of the same type are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.EqualsAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether each pair of elements in the given vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.EqualsAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any single pair of elements in the given vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element pair in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> is equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are greater than their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are greater than their corresponding elements in a second single-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than their corresponding elements in the second vector of the same time.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are greater than the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> are greater than the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is greater than the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is greater than the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one vector are greater than or equal to their corresponding elements in the single-precision floating-point second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than or equal to their corresponding elements in the second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than or equal to their corresponding elements in the second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one vector are greater than or equal to their corresponding elements in the second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than or equal to their corresponding elements in the second vector of the same type.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqualAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are greater than or equal to all the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> are greater than or equal to the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqualAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is greater than or equal to the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is greater than or equal to the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector.IsHardwareAccelerated\">\r\n      <summary>Gets a value that indicates whether vector operations are subject to hardware acceleration through JIT intrinsic support.</summary>\r\n      <returns>true if vector operations are subject to hardware acceleration; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are less than their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are less than their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are less than their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision vector are less than their corresponding elements in a second single-precision vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector of a specified type whose elements signal whether the elements in one vector are less than their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all of the elements in the first vector are less than their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all of the elements in <paramref name=\"left\">left</paramref> are less than the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is less than the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is less than the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are less than or equal to their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are less than or equal to their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are less or equal to their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are less than or equal to their corresponding elements in a second single-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector are less than or equal to their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqualAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are less than or equal to their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all of the elements in <paramref name=\"left\">left</paramref> are less than or equal to the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqualAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is less than or equal to the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is less than or equal to the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Max``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the maximum of each pair of elements in the two given vectors.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The maximum vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Min``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the minimum of each pair of elements in the two given vectors.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The minimum vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(``0,System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are a scalar value multiplied by each of the values of a specified vector.</summary>\r\n      <param name=\"left\">The scalar value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the product of each pair of elements in two specified vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(System.Numerics.Vector{``0},``0)\">\r\n      <summary>Returns a new vector whose values are the values of a specified vector each multiplied by a scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int16},System.Numerics.Vector{System.Int16})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt16},System.Numerics.Vector{System.UInt16})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt32},System.Numerics.Vector{System.UInt32})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt64},System.Numerics.Vector{System.UInt64})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Negate``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the negation of the corresponding element in the specified vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.OnesComplement``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are obtained by taking the one&amp;#39;s complement of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.SquareRoot``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the square roots of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Subtract``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the difference between the elements in the second vector and their corresponding elements in the first vector.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.UInt16},System.Numerics.Vector{System.UInt32}@,System.Numerics.Vector{System.UInt32}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Double}@,System.Numerics.Vector{System.Double}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.SByte},System.Numerics.Vector{System.Int16}@,System.Numerics.Vector{System.Int16}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.UInt32},System.Numerics.Vector{System.UInt64}@,System.Numerics.Vector{System.UInt64}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Int16},System.Numerics.Vector{System.Int32}@,System.Numerics.Vector{System.Int32}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Byte},System.Numerics.Vector{System.UInt16}@,System.Numerics.Vector{System.UInt16}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int64}@,System.Numerics.Vector{System.Int64}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Xor``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise exclusive Or (XOr) operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector2\">\r\n      <summary>Represents a vector with two single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector2\"></see> object whose two elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to both elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.#ctor(System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector2.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector2.Y\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Abs(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Add(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Clamp(System.Numerics.Vector2,System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Distance(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.DistanceSquared(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Divide(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Divide(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Dot(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Equals(System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Length\">\r\n      <summary>Returns the length of the vector.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Lerp(System.Numerics.Vector2,System.Numerics.Vector2,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Max(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Min(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Negate(System.Numerics.Vector2)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Normalize(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"value\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.One\">\r\n      <summary>Gets a vector whose 2 elements are equal to one.</summary>\r\n      <returns>A vector whose two elements are equal to one (that is, it returns the vector (1,1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Addition(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Division(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Division(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Equality(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Inequality(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Subtraction(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_UnaryNegation(System.Numerics.Vector2)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Reflect(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the reflection of a vector off a surface that has the specified normal.</summary>\r\n      <param name=\"vector\">The source vector.</param>\r\n      <param name=\"normal\">The normal of the surface being reflected off.</param>\r\n      <returns>The reflected vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.SquareRoot(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Subtract(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Matrix3x2)\">\r\n      <summary>Transforms a vector by a specified 3x2 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.TransformNormal(System.Numerics.Vector2,System.Numerics.Matrix3x2)\">\r\n      <summary>Transforms a vector normal by the given 3x2 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.TransformNormal(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector normal by the given 4x4 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.UnitX\">\r\n      <summary>Gets the vector (1,0).</summary>\r\n      <returns>The vector (1,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.UnitY\">\r\n      <summary>Gets the vector (0,1).</summary>\r\n      <returns>The vector (0,1).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector2.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector2.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.Zero\">\r\n      <summary>Returns a vector whose 2 elements are equal to zero.</summary>\r\n      <returns>A vector whose two elements are equal to zero (that is, it returns the vector (0,0).</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector3\">\r\n      <summary>Represents a vector with three  single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector3\"></see> object whose three elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to all three elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Creates a   new <see cref=\"T:System.Numerics.Vector3\"></see> object from the specified <see cref=\"T:System.Numerics.Vector2\"></see> object and the specified value.</summary>\r\n      <param name=\"value\">The vector with two elements.</param>\r\n      <param name=\"z\">The additional value to assign to the <see cref=\"F:System.Numerics.Vector3.Z\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.Y\"></see> field.</param>\r\n      <param name=\"z\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.Z\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Abs(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Add(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Clamp(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Cross(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Computes the cross product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The cross product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Distance(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.DistanceSquared(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Divide(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Divide(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Dot(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Equals(System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Length\">\r\n      <summary>Returns the length of this vector object.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Lerp(System.Numerics.Vector3,System.Numerics.Vector3,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Max(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Min(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Negate(System.Numerics.Vector3)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Normalize(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"value\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.One\">\r\n      <summary>Gets a vector whose 3 elements are equal to one.</summary>\r\n      <returns>A vector whose three elements are equal to one (that is, it returns the vector (1,1,1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Addition(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Division(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Division(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Equality(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Inequality(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Subtraction(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_UnaryNegation(System.Numerics.Vector3)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Reflect(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the reflection of a vector off a surface that has the specified normal.</summary>\r\n      <param name=\"vector\">The source vector.</param>\r\n      <param name=\"normal\">The normal of the surface being reflected off.</param>\r\n      <returns>The reflected vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.SquareRoot(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Subtract(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Transform(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Transform(System.Numerics.Vector3,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.TransformNormal(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector normal by the given 4x4 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitX\">\r\n      <summary>Gets the vector (1,0,0).</summary>\r\n      <returns>The vector (1,0,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitY\">\r\n      <summary>Gets the vector (0,1,0).</summary>\r\n      <returns>The vector (0,1,0)..</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitZ\">\r\n      <summary>Gets the vector (0,0,1).</summary>\r\n      <returns>The vector (0,0,1).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.Z\">\r\n      <summary>The Z component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.Zero\">\r\n      <summary>Gets a vector whose 3 elements are equal to zero.</summary>\r\n      <returns>A vector whose three elements are equal to zero (that is, it returns the vector (0,0,0).</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector4\">\r\n      <summary>Represents a vector with four single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector4\"></see> object whose four elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to all four elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Constructs a new <see cref=\"T:System.Numerics.Vector4\"></see> object from the specified <see cref=\"T:System.Numerics.Vector3\"></see> object and a W component.</summary>\r\n      <param name=\"value\">The vector to use for the X, Y, and Z components.</param>\r\n      <param name=\"w\">The W component.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Numerics.Vector2,System.Single,System.Single)\">\r\n      <summary>Creates a   new <see cref=\"T:System.Numerics.Vector4\"></see> object from the specified <see cref=\"T:System.Numerics.Vector2\"></see> object and a Z and a W component.</summary>\r\n      <param name=\"value\">The vector to use for the X and Y components.</param>\r\n      <param name=\"z\">The Z component.</param>\r\n      <param name=\"w\">The W component.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.Y\"></see> field.</param>\r\n      <param name=\"z\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.Z\"></see> field.</param>\r\n      <param name=\"w\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.W\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Abs(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Add(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Clamp(System.Numerics.Vector4,System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Distance(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.DistanceSquared(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Divide(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Divide(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Dot(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Equals(System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Length\">\r\n      <summary>Returns the length of this vector object.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Lerp(System.Numerics.Vector4,System.Numerics.Vector4,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Max(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Min(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Single,System.Numerics.Vector4)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Negate(System.Numerics.Vector4)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Normalize(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"vector\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.One\">\r\n      <summary>Gets a vector whose 4 elements are equal to one.</summary>\r\n      <returns>Returns <see cref=\"System.Numerics.Vector4\"></see>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Addition(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Division(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Division(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Equality(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Inequality(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Single,System.Numerics.Vector4)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Subtraction(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_UnaryNegation(System.Numerics.Vector4)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.SquareRoot(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Subtract(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector4,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a four-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector4,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a four-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"vector\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector3,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a three-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a two-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector2,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a two-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a three-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitW\">\r\n      <summary>Gets the vector (0,0,0,1).</summary>\r\n      <returns>The vector (0,0,0,1).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitX\">\r\n      <summary>Gets the vector (1,0,0,0).</summary>\r\n      <returns>The vector (1,0,0,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitY\">\r\n      <summary>Gets the vector (0,1,0,0).</summary>\r\n      <returns>The vector (0,1,0,0)..</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitZ\">\r\n      <summary>Gets a vector whose 4 elements are equal to zero.</summary>\r\n      <returns>The vector (0,0,1,0).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.W\">\r\n      <summary>The W component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.Z\">\r\n      <summary>The Z component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.Zero\">\r\n      <summary>Gets a vector whose 4 elements are equal to zero.</summary>\r\n      <returns>A vector whose four elements are equal to zero (that is, it returns the vector (0,0,0,0).</returns>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/lib/uap10.0.16299/_._",
    "content": ""
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/lib/xamarinios10/_._",
    "content": ""
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/lib/xamarinmac20/_._",
    "content": ""
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/lib/xamarintvos10/_._",
    "content": ""
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/lib/xamarinwatchos10/_._",
    "content": ""
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/ref/MonoAndroid10/_._",
    "content": ""
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/ref/MonoTouch10/_._",
    "content": ""
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/ref/net45/System.Numerics.Vectors.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?><doc>\r\n  <assembly>\r\n    <name>System.Numerics.Vectors</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:System.Numerics.Matrix3x2\">\r\n      <summary>Represents a 3x2 matrix.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a 3x2 matrix from the specified components.</summary>\r\n      <param name=\"m11\">The value to assign to the first element in the first row.</param>\r\n      <param name=\"m12\">The value to assign to the second element in the first row.</param>\r\n      <param name=\"m21\">The value to assign to the first element in the second row.</param>\r\n      <param name=\"m22\">The value to assign to the second element in the second row.</param>\r\n      <param name=\"m31\">The value to assign to the first element in the third row.</param>\r\n      <param name=\"m32\">The value to assign to the second element in the third row.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Add(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateRotation(System.Single)\">\r\n      <summary>Creates a rotation matrix using the given rotation in radians.</summary>\r\n      <param name=\"radians\">The amount of rotation, in radians.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateRotation(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a rotation matrix using the specified rotation in radians and a center point.</summary>\r\n      <param name=\"radians\">The amount of rotation, in radians.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Single)\">\r\n      <summary>Creates a scaling matrix from the specified X and Y components.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix that scales uniformly with the specified scale with an offset from the specified center.</summary>\r\n      <param name=\"scale\">The uniform scale to use.</param>\r\n      <param name=\"centerPoint\">The center offset.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix that is offset by a given center point.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single)\">\r\n      <summary>Creates a scaling matrix that scales uniformly with the given scale.</summary>\r\n      <param name=\"scale\">The uniform scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale with an offset from the specified center point.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <param name=\"centerPoint\">The center offset.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateSkew(System.Single,System.Single)\">\r\n      <summary>Creates a skew matrix from the specified angles in radians.</summary>\r\n      <param name=\"radiansX\">The X angle, in radians.</param>\r\n      <param name=\"radiansY\">The Y angle, in radians.</param>\r\n      <returns>The skew matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateSkew(System.Single,System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a skew matrix from the specified angles in radians and a center point.</summary>\r\n      <param name=\"radiansX\">The X angle, in radians.</param>\r\n      <param name=\"radiansY\">The Y angle, in radians.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The skew matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateTranslation(System.Numerics.Vector2)\">\r\n      <summary>Creates a translation matrix from the specified 2-dimensional vector.</summary>\r\n      <param name=\"position\">The translation position.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateTranslation(System.Single,System.Single)\">\r\n      <summary>Creates a translation matrix from the specified X and Y components.</summary>\r\n      <param name=\"xPosition\">The X position.</param>\r\n      <param name=\"yPosition\">The Y position.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Equals(System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether this instance and another 3x2 matrix are equal.</summary>\r\n      <param name=\"other\">The other matrix.</param>\r\n      <returns>true if the two matrices are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.GetDeterminant\">\r\n      <summary>Calculates the determinant for this matrix.</summary>\r\n      <returns>The determinant.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.Identity\">\r\n      <summary>Gets the multiplicative identity matrix.</summary>\r\n      <returns>The multiplicative identify matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Invert(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2@)\">\r\n      <summary>Inverts the specified matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The matrix to invert.</param>\r\n      <param name=\"result\">When this method returns, contains the inverted matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was converted successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.IsIdentity\">\r\n      <summary>Indicates whether the current matrix is the identity matrix.</summary>\r\n      <returns>true if the current matrix is the identity matrix; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Lerp(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Performs a linear interpolation from one matrix to a second matrix based on a value that specifies the weighting of the second matrix.</summary>\r\n      <param name=\"matrix1\">The first matrix.</param>\r\n      <param name=\"matrix2\">The second matrix.</param>\r\n      <param name=\"amount\">The relative weighting of matrix2.</param>\r\n      <returns>The interpolated matrix.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M11\">\r\n      <summary>The first element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M12\">\r\n      <summary>The second element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M21\">\r\n      <summary>The first element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M22\">\r\n      <summary>The second element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M31\">\r\n      <summary>The first element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M32\">\r\n      <summary>The second element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Multiply(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Multiply(System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Negate(System.Numerics.Matrix3x2)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Addition(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Equality(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Inequality(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are not equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Multiply(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Multiply(System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Subtraction(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_UnaryNegation(System.Numerics.Matrix3x2)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Subtract(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.ToString\">\r\n      <summary>Returns a string that represents this matrix.</summary>\r\n      <returns>The string representation of this matrix.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.Translation\">\r\n      <summary>Gets or sets the translation component of this matrix.</summary>\r\n      <returns>The translation component of the current instance.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Matrix4x4\">\r\n      <summary>Represents a 4x4 matrix.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.#ctor(System.Numerics.Matrix3x2)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Matrix4x4\"></see> object from a specified <see cref=\"T:System.Numerics.Matrix3x2\"></see> object.</summary>\r\n      <param name=\"value\">A 3x2 matrix.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a 4x4 matrix from the specified components.</summary>\r\n      <param name=\"m11\">The value to assign to the first element in the first row.</param>\r\n      <param name=\"m12\">The value to assign to the second element in the first row.</param>\r\n      <param name=\"m13\">The value to assign to the third element in the first row.</param>\r\n      <param name=\"m14\">The value to assign to the fourth element in the first row.</param>\r\n      <param name=\"m21\">The value to assign to the first element in the second row.</param>\r\n      <param name=\"m22\">The value to assign to the second element in the second row.</param>\r\n      <param name=\"m23\">The value to assign to the third element in the second row.</param>\r\n      <param name=\"m24\">The value to assign to the third element in the second row.</param>\r\n      <param name=\"m31\">The value to assign to the first element in the third row.</param>\r\n      <param name=\"m32\">The value to assign to the second element in the third row.</param>\r\n      <param name=\"m33\">The value to assign to the third element in the third row.</param>\r\n      <param name=\"m34\">The value to assign to the fourth element in the third row.</param>\r\n      <param name=\"m41\">The value to assign to the first element in the fourth row.</param>\r\n      <param name=\"m42\">The value to assign to the second element in the fourth row.</param>\r\n      <param name=\"m43\">The value to assign to the third element in the fourth row.</param>\r\n      <param name=\"m44\">The value to assign to the fourth element in the fourth row.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Add(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateBillboard(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a spherical billboard that rotates around a specified object position.</summary>\r\n      <param name=\"objectPosition\">The position of the object that the billboard will rotate around.</param>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"cameraUpVector\">The up vector of the camera.</param>\r\n      <param name=\"cameraForwardVector\">The forward vector of the camera.</param>\r\n      <returns>The created billboard.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateConstrainedBillboard(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a cylindrical billboard that rotates around a specified axis.</summary>\r\n      <param name=\"objectPosition\">The position of the object that the billboard will rotate around.</param>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"rotateAxis\">The axis to rotate the billboard around.</param>\r\n      <param name=\"cameraForwardVector\">The forward vector of the camera.</param>\r\n      <param name=\"objectForwardVector\">The forward vector of the object.</param>\r\n      <returns>The billboard matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromAxisAngle(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a matrix that rotates around an arbitrary vector.</summary>\r\n      <param name=\"axis\">The axis to rotate around.</param>\r\n      <param name=\"angle\">The angle to rotate around axis, in radians.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromQuaternion(System.Numerics.Quaternion)\">\r\n      <summary>Creates a rotation matrix from the specified Quaternion rotation value.</summary>\r\n      <param name=\"quaternion\">The source Quaternion.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromYawPitchRoll(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a rotation matrix from the specified yaw, pitch, and roll.</summary>\r\n      <param name=\"yaw\">The angle of rotation, in radians, around the Y axis.</param>\r\n      <param name=\"pitch\">The angle of rotation, in radians, around the X axis.</param>\r\n      <param name=\"roll\">The angle of rotation, in radians, around the Z axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateLookAt(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a view matrix.</summary>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"cameraTarget\">The target towards which the camera is pointing.</param>\r\n      <param name=\"cameraUpVector\">The direction that is &amp;quot;up&amp;quot; from the camera&amp;#39;s point of view.</param>\r\n      <returns>The view matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateOrthographic(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates an orthographic perspective matrix from the given view volume dimensions.</summary>\r\n      <param name=\"width\">The width of the view volume.</param>\r\n      <param name=\"height\">The height of the view volume.</param>\r\n      <param name=\"zNearPlane\">The minimum Z-value of the view volume.</param>\r\n      <param name=\"zFarPlane\">The maximum Z-value of the view volume.</param>\r\n      <returns>The orthographic projection matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateOrthographicOffCenter(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a customized orthographic projection matrix.</summary>\r\n      <param name=\"left\">The minimum X-value of the view volume.</param>\r\n      <param name=\"right\">The maximum X-value of the view volume.</param>\r\n      <param name=\"bottom\">The minimum Y-value of the view volume.</param>\r\n      <param name=\"top\">The maximum Y-value of the view volume.</param>\r\n      <param name=\"zNearPlane\">The minimum Z-value of the view volume.</param>\r\n      <param name=\"zFarPlane\">The maximum Z-value of the view volume.</param>\r\n      <returns>The orthographic projection matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspective(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a perspective projection matrix from the given view volume dimensions.</summary>\r\n      <param name=\"width\">The width of the view volume at the near view plane.</param>\r\n      <param name=\"height\">The height of the view volume at the near view plane.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspectiveFieldOfView(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a perspective projection matrix based on a field of view, aspect ratio, and near and far view plane distances.</summary>\r\n      <param name=\"fieldOfView\">The field of view in the y direction, in radians.</param>\r\n      <param name=\"aspectRatio\">The aspect ratio, defined as view space width divided by height.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"fieldOfView\">fieldOfView</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"fieldOfView\">fieldOfView</paramref> is greater than or equal to <see cref=\"System.Math.PI\"></see>.  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspectiveOffCenter(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a customized perspective projection matrix.</summary>\r\n      <param name=\"left\">The minimum x-value of the view volume at the near view plane.</param>\r\n      <param name=\"right\">The maximum x-value of the view volume at the near view plane.</param>\r\n      <param name=\"bottom\">The minimum y-value of the view volume at the near view plane.</param>\r\n      <param name=\"top\">The maximum y-value of the view volume at the near view plane.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateReflection(System.Numerics.Plane)\">\r\n      <summary>Creates a matrix that reflects the coordinate system about a specified plane.</summary>\r\n      <param name=\"value\">The plane about which to create a reflection.</param>\r\n      <returns>A new matrix expressing the reflection.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationX(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the X axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the X axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationX(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a matrix for rotating points around the X axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the X axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationY(System.Single,System.Numerics.Vector3)\">\r\n      <summary>The amount, in radians, by which to rotate around the Y axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Y-axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationY(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the Y axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Y-axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationZ(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the Z axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Z-axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationZ(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a matrix for rotating points around the Z axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Z-axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single)\">\r\n      <summary>Creates a uniform scaling matrix that scale equally on each axis.</summary>\r\n      <param name=\"scale\">The uniform scaling factor.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix with a center point.</summary>\r\n      <param name=\"scales\">The vector that contains the amount to scale on each axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a uniform scaling matrix that scales equally on each axis with a center point.</summary>\r\n      <param name=\"scale\">The uniform scaling factor.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a scaling matrix from the specified X, Y, and Z components.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"zScale\">The value to scale by on the Z axis.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Single,System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix that is offset by a given center point.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"zScale\">The value to scale by on the Z axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateShadow(System.Numerics.Vector3,System.Numerics.Plane)\">\r\n      <summary>Creates a matrix that flattens geometry into a specified plane as if casting a shadow from a specified light source.</summary>\r\n      <param name=\"lightDirection\">The direction from which the light that will cast the shadow is coming.</param>\r\n      <param name=\"plane\">The plane onto which the new matrix should flatten geometry so as to cast a shadow.</param>\r\n      <returns>A new matrix that can be used to flatten geometry onto the specified plane from the specified direction.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateTranslation(System.Numerics.Vector3)\">\r\n      <summary>Creates a translation matrix from the specified 3-dimensional vector.</summary>\r\n      <param name=\"position\">The amount to translate in each axis.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateTranslation(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a translation matrix from the specified X, Y, and Z components.</summary>\r\n      <param name=\"xPosition\">The amount to translate on the X axis.</param>\r\n      <param name=\"yPosition\">The amount to translate on the Y axis.</param>\r\n      <param name=\"zPosition\">The amount to translate on the Z axis.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateWorld(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a world matrix with the specified parameters.</summary>\r\n      <param name=\"position\">The position of the object.</param>\r\n      <param name=\"forward\">The forward direction of the object.</param>\r\n      <param name=\"up\">The upward direction of the object. Its value is usually [0, 1, 0].</param>\r\n      <returns>The world matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Decompose(System.Numerics.Matrix4x4,System.Numerics.Vector3@,System.Numerics.Quaternion@,System.Numerics.Vector3@)\">\r\n      <summary>Attempts to extract the scale, translation, and rotation components from the given scale, rotation, or translation matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The source matrix.</param>\r\n      <param name=\"scale\">When this method returns, contains the scaling component of the transformation matrix if the operation succeeded.</param>\r\n      <param name=\"rotation\">When this method returns, contains the rotation component of the transformation matrix if the operation succeeded.</param>\r\n      <param name=\"translation\">When the method returns, contains the translation component of the transformation matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was decomposed successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Equals(System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether this instance and another 4x4 matrix are equal.</summary>\r\n      <param name=\"other\">The other matrix.</param>\r\n      <returns>true if the two matrices are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.GetDeterminant\">\r\n      <summary>Calculates the determinant of the current 4x4 matrix.</summary>\r\n      <returns>The determinant.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.Identity\">\r\n      <summary>Gets the multiplicative identity matrix.</summary>\r\n      <returns>Gets the multiplicative identity matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Invert(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4@)\">\r\n      <summary>Inverts the specified matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The matrix to invert.</param>\r\n      <param name=\"result\">When this method returns, contains the inverted matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was converted successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.IsIdentity\">\r\n      <summary>Indicates whether the current matrix is the identity matrix.</summary>\r\n      <returns>true if the current matrix is the identity matrix; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Lerp(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Performs a linear interpolation from one matrix to a second matrix based on a value that specifies the weighting of the second matrix.</summary>\r\n      <param name=\"matrix1\">The first matrix.</param>\r\n      <param name=\"matrix2\">The second matrix.</param>\r\n      <param name=\"amount\">The relative weighting of matrix2.</param>\r\n      <returns>The interpolated matrix.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M11\">\r\n      <summary>The first element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M12\">\r\n      <summary>The second element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M13\">\r\n      <summary>The third element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M14\">\r\n      <summary>The fourth element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M21\">\r\n      <summary>The first element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M22\">\r\n      <summary>The second element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M23\">\r\n      <summary>The third element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M24\">\r\n      <summary>The fourth element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M31\">\r\n      <summary>The first element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M32\">\r\n      <summary>The second element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M33\">\r\n      <summary>The third element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M34\">\r\n      <summary>The fourth element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M41\">\r\n      <summary>The first element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M42\">\r\n      <summary>The second element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M43\">\r\n      <summary>The third element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M44\">\r\n      <summary>The fourth element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Multiply(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Multiply(System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Negate(System.Numerics.Matrix4x4)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Addition(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Equality(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to care</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Inequality(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are not equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Multiply(System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Multiply(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Subtraction(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_UnaryNegation(System.Numerics.Matrix4x4)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Subtract(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.ToString\">\r\n      <summary>Returns a string that represents this matrix.</summary>\r\n      <returns>The string representation of this matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Transform(System.Numerics.Matrix4x4,System.Numerics.Quaternion)\">\r\n      <summary>Transforms the specified matrix by applying the specified Quaternion rotation.</summary>\r\n      <param name=\"value\">The matrix to transform.</param>\r\n      <param name=\"rotation\">The rotation t apply.</param>\r\n      <returns>The transformed matrix.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.Translation\">\r\n      <summary>Gets or sets the translation component of this matrix.</summary>\r\n      <returns>The translation component of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Transpose(System.Numerics.Matrix4x4)\">\r\n      <summary>Transposes the rows and columns of a matrix.</summary>\r\n      <param name=\"matrix\">The matrix to transpose.</param>\r\n      <returns>The transposed matrix.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Plane\">\r\n      <summary>Represents a three-dimensional plane.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Numerics.Vector4)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from a specified four-dimensional vector.</summary>\r\n      <param name=\"value\">A vector whose first three elements describe the normal vector, and whose <see cref=\"F:System.Numerics.Vector4.W\"></see> defines the distance along that normal from the origin.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from a specified normal and the distance along the normal from the origin.</summary>\r\n      <param name=\"normal\">The plane&amp;#39;s normal vector.</param>\r\n      <param name=\"d\">The plane&amp;#39;s distance from the origin along its normal vector.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from the X, Y, and Z components of its normal, and its distance from the origin on that normal.</summary>\r\n      <param name=\"x\">The X component of the normal.</param>\r\n      <param name=\"y\">The Y component of the normal.</param>\r\n      <param name=\"z\">The Z component of the normal.</param>\r\n      <param name=\"d\">The distance of the plane along its normal from the origin.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.CreateFromVertices(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object that contains three specified points.</summary>\r\n      <param name=\"point1\">The first point defining the plane.</param>\r\n      <param name=\"point2\">The second point defining the plane.</param>\r\n      <param name=\"point3\">The third point defining the plane.</param>\r\n      <returns>The plane containing the three points.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Plane.D\">\r\n      <summary>The distance of the plane along its normal from the origin.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Dot(System.Numerics.Plane,System.Numerics.Vector4)\">\r\n      <summary>Calculates the dot product of a plane and a 4-dimensional vector.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The four-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.DotCoordinate(System.Numerics.Plane,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of a specified three-dimensional vector and the normal vector of this plane plus the distance (<see cref=\"F:System.Numerics.Plane.D\"></see>) value of the plane.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The 3-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.DotNormal(System.Numerics.Plane,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of a specified three-dimensional vector and the <see cref=\"F:System.Numerics.Plane.Normal\"></see> vector of this plane.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The three-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Equals(System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether this instance and another plane object are equal.</summary>\r\n      <param name=\"other\">The other plane.</param>\r\n      <returns>true if the two planes are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Plane.Normal\">\r\n      <summary>The normal vector of the plane.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Normalize(System.Numerics.Plane)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Plane\"></see> object whose normal vector is the source plane&amp;#39;s normal vector normalized.</summary>\r\n      <param name=\"value\">The source plane.</param>\r\n      <returns>The normalized plane.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.op_Equality(System.Numerics.Plane,System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether two planes are equal.</summary>\r\n      <param name=\"value1\">The first plane to compare.</param>\r\n      <param name=\"value2\">The second plane to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.op_Inequality(System.Numerics.Plane,System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether two planes are not equal.</summary>\r\n      <param name=\"value1\">The first plane to compare.</param>\r\n      <param name=\"value2\">The second plane to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.ToString\">\r\n      <summary>Returns the string representation of this plane object.</summary>\r\n      <returns>A string that represents this <see cref=\"System.Numerics.Plane\"></see> object.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Transform(System.Numerics.Plane,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a normalized plane by a 4x4 matrix.</summary>\r\n      <param name=\"plane\">The normalized plane to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix to apply to plane.</param>\r\n      <returns>The transformed plane.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Transform(System.Numerics.Plane,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a normalized plane by a Quaternion rotation.</summary>\r\n      <param name=\"plane\">The normalized plane to transform.</param>\r\n      <param name=\"rotation\">The Quaternion rotation to apply to the plane.</param>\r\n      <returns>A new plane that results from applying the Quaternion rotation.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Quaternion\">\r\n      <summary>Represents a vector that is used to encode three-dimensional physical rotations.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a quaternion from the specified vector and rotation parts.</summary>\r\n      <param name=\"vectorPart\">The vector part of the quaternion.</param>\r\n      <param name=\"scalarPart\">The rotation part of the quaternion.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Constructs a quaternion from the specified components.</summary>\r\n      <param name=\"x\">The value to assign to the X component of the quaternion.</param>\r\n      <param name=\"y\">The value to assign to the Y component of the quaternion.</param>\r\n      <param name=\"z\">The value to assign to the Z component of the quaternion.</param>\r\n      <param name=\"w\">The value to assign to the W component of the quaternion.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Add(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Adds each element in one quaternion with its corresponding element in a second quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Concatenate(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Concatenates two quaternions.</summary>\r\n      <param name=\"value1\">The first quaternion rotation in the series.</param>\r\n      <param name=\"value2\">The second quaternion rotation in the series.</param>\r\n      <returns>A new quaternion representing the concatenation of the <paramref name=\"value1\">value1</paramref> rotation followed by the <paramref name=\"value2\">value2</paramref> rotation.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Conjugate(System.Numerics.Quaternion)\">\r\n      <summary>Returns the conjugate of a specified quaternion.</summary>\r\n      <param name=\"value\">The quaternion.</param>\r\n      <returns>A new quaternion that is the conjugate of value.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromAxisAngle(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a quaternion from a vector and an angle to rotate about the vector.</summary>\r\n      <param name=\"axis\">The vector to rotate around.</param>\r\n      <param name=\"angle\">The angle, in radians, to rotate around the vector.</param>\r\n      <returns>The newly created quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromRotationMatrix(System.Numerics.Matrix4x4)\">\r\n      <summary>Creates a quaternion from the specified rotation matrix.</summary>\r\n      <param name=\"matrix\">The rotation matrix.</param>\r\n      <returns>The newly created quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromYawPitchRoll(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a new quaternion from the given yaw, pitch, and roll.</summary>\r\n      <param name=\"yaw\">The yaw angle, in radians, around the Y axis.</param>\r\n      <param name=\"pitch\">The pitch angle, in radians, around the X axis.</param>\r\n      <param name=\"roll\">The roll angle, in radians, around the Z axis.</param>\r\n      <returns>The resulting quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Divide(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Divides one quaternion by a second quaternion.</summary>\r\n      <param name=\"value1\">The dividend.</param>\r\n      <param name=\"value2\">The divisor.</param>\r\n      <returns>The quaternion that results from dividing <paramref name=\"value1\">value1</paramref> by <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Dot(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Calculates the dot product of two quaternions.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Equals(System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether this instance and another quaternion are equal.</summary>\r\n      <param name=\"other\">The other quaternion.</param>\r\n      <returns>true if the two quaternions are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Quaternion.Identity\">\r\n      <summary>Gets a quaternion that represents no rotation.</summary>\r\n      <returns>A quaternion whose values are (0, 0, 0, 1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Inverse(System.Numerics.Quaternion)\">\r\n      <summary>Returns the inverse of a quaternion.</summary>\r\n      <param name=\"value\">The quaternion.</param>\r\n      <returns>The inverted quaternion.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Quaternion.IsIdentity\">\r\n      <summary>Gets a value that indicates whether the current instance is the identity quaternion.</summary>\r\n      <returns>true if the current instance is the identity quaternion; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Length\">\r\n      <summary>Calculates the length of the quaternion.</summary>\r\n      <returns>The computed length of the quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.LengthSquared\">\r\n      <summary>Calculates the squared length of the quaternion.</summary>\r\n      <returns>The length squared of the quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Lerp(System.Numerics.Quaternion,System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Performs a linear interpolation between two quaternions based on a value that specifies the weighting of the second quaternion.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <param name=\"amount\">The relative weight of quaternion2 in the interpolation.</param>\r\n      <returns>The interpolated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Multiply(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns the quaternion that results from multiplying two quaternions together.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The product quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Multiply(System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Returns the quaternion that results from scaling all the components of a specified quaternion by a scalar factor.</summary>\r\n      <param name=\"value1\">The source quaternion.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The scaled quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Negate(System.Numerics.Quaternion)\">\r\n      <summary>Reverses the sign of each component of the quaternion.</summary>\r\n      <param name=\"value\">The quaternion to negate.</param>\r\n      <returns>The negated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Normalize(System.Numerics.Quaternion)\">\r\n      <summary>Divides each component of a specified <see cref=\"T:System.Numerics.Quaternion\"></see> by its length.</summary>\r\n      <param name=\"value\">The quaternion to normalize.</param>\r\n      <returns>The normalized quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Addition(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Adds each element in one quaternion with its corresponding element in a second quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Division(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Divides one quaternion by a second quaternion.</summary>\r\n      <param name=\"value1\">The dividend.</param>\r\n      <param name=\"value2\">The divisor.</param>\r\n      <returns>The quaternion that results from dividing <paramref name=\"value1\">value1</paramref> by <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Equality(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether two quaternions are equal.</summary>\r\n      <param name=\"value1\">The first quaternion to compare.</param>\r\n      <param name=\"value2\">The second quaternion to compare.</param>\r\n      <returns>true if the two quaternions are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Inequality(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether two quaternions are not equal.</summary>\r\n      <param name=\"value1\">The first quaternion to compare.</param>\r\n      <param name=\"value2\">The second quaternion to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Multiply(System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Returns the quaternion that results from scaling all the components of a specified quaternion by a scalar factor.</summary>\r\n      <param name=\"value1\">The source quaternion.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The scaled quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Multiply(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns the quaternion that results from multiplying two quaternions together.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The product quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Subtraction(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Subtracts each element in a second quaternion from its corresponding element in a first quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_UnaryNegation(System.Numerics.Quaternion)\">\r\n      <summary>Reverses the sign of each component of the quaternion.</summary>\r\n      <param name=\"value\">The quaternion to negate.</param>\r\n      <returns>The negated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Slerp(System.Numerics.Quaternion,System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Interpolates between two quaternions, using spherical linear interpolation.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <param name=\"amount\">The relative weight of the second quaternion in the interpolation.</param>\r\n      <returns>The interpolated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Subtract(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Subtracts each element in a second quaternion from its corresponding element in a first quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.ToString\">\r\n      <summary>Returns a string that represents this quaternion.</summary>\r\n      <returns>The string representation of this quaternion.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.W\">\r\n      <summary>The rotation component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.X\">\r\n      <summary>The X value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.Y\">\r\n      <summary>The Y value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.Z\">\r\n      <summary>The Z value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector`1\">\r\n      <summary>Represents a single vector of a specified numeric type that is suitable for low-level optimization of parallel algorithms.</summary>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0)\">\r\n      <summary>Creates a vector whose components are of a specified type.</summary>\r\n      <param name=\"value\">The numeric type that defines the type of the components in the vector.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0[])\">\r\n      <summary>Creates a vector from a specified array.</summary>\r\n      <param name=\"values\">A numeric array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"values\">values</paramref> is null.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0[],System.Int32)\">\r\n      <summary>Creates a vector from a specified array starting at a specified index position.</summary>\r\n      <param name=\"values\">A numeric array.</param>\r\n      <param name=\"index\">The starting index position from which to create the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"values\">values</paramref> is null.</exception>\r\n      <exception cref=\"T:System.IndexOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n The length of <paramref name=\"values\">values</paramref> minus <paramref name=\"index\">index</paramref> is less than <see cref=\"System.Numerics.Vector`1.Count\"></see>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.CopyTo(`0[])\">\r\n      <summary>Copies the vector instance to a specified destination array.</summary>\r\n      <param name=\"destination\">The array to receive a copy of the vector values.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"destination\">destination</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current vector is greater than the number of elements available in the <paramref name=\"destination\">destination</paramref> array.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.CopyTo(`0[],System.Int32)\">\r\n      <summary>Copies the vector instance to a specified destination array starting at a specified index position.</summary>\r\n      <param name=\"destination\">The array to receive a copy of the vector values.</param>\r\n      <param name=\"startIndex\">The starting index in destination at which to begin the copy operation.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"destination\">destination</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than the number of elements available from <paramref name=\"startIndex\">startIndex</paramref> to the end of the <paramref name=\"destination\">destination</paramref> array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero or greater than the last index in <paramref name=\"destination\">destination</paramref>.</exception>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Count\">\r\n      <summary>Returns the number of elements stored in the vector.</summary>\r\n      <returns>The number of elements stored in the vector.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">Access to the property getter via reflection is not supported.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.Equals(System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether this instance is equal to a specified vector.</summary>\r\n      <param name=\"other\">The vector to compare with this instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"other\">other</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance is equal to a specified object.</summary>\r\n      <param name=\"obj\">The object to compare with this instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. The method returns false if <paramref name=\"obj\">obj</paramref> is null, or if <paramref name=\"obj\">obj</paramref> is a vector of a different type than the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Item(System.Int32)\">\r\n      <summary>Gets the element at a specified index.</summary>\r\n      <param name=\"index\">The index of the element to return.</param>\r\n      <returns>The element at index <paramref name=\"index\">index</paramref>.</returns>\r\n      <exception cref=\"T:System.IndexOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to <see cref=\"System.Numerics.Vector`1.Count\"></see>.</exception>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.One\">\r\n      <summary>Returns a vector containing all ones.</summary>\r\n      <returns>A vector containing all ones.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Addition(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_BitwiseAnd(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise And operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise And of <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_BitwiseOr(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise Or operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise Or of the elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Division(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Equality(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_ExclusiveOr(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise XOr operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise XOr of the elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt64}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt64\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt32}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt32\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt16}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt16\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Single}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Single\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.SByte}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.SByte\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Double}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Double\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int32}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int32\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int16}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int16\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Byte}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Byte\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int64}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int64\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Inequality(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether any single pair of elements in the specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if any element pairs in left and right are equal. false if no element pairs are equal.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(System.Numerics.Vector{`0},`0)\">\r\n      <summary>Multiplies a vector by a specified scalar value.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <param name=\"factor\">A scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(`0,System.Numerics.Vector{`0})\">\r\n      <summary>Multiplies a vector by the given scalar.</summary>\r\n      <param name=\"factor\">The scalar value.</param>\r\n      <param name=\"value\">The source vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_OnesComplement(System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector whose elements are obtained by taking the one&amp;#39;s complement of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <returns>The one&amp;#39;s complement vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Subtraction(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_UnaryNegation(System.Numerics.Vector{`0})\">\r\n      <summary>Negates a given vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of this vector using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString\">\r\n      <summary>Returns the string representation of this vector using default formatting.</summary>\r\n      <returns>The string representation of this vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString(System.String)\">\r\n      <summary>Returns the string representation of this vector using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Zero\">\r\n      <summary>Returns a vector containing all zeroes.</summary>\r\n      <returns>A vector containing all zeroes.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector\">\r\n      <summary>Provides a collection of static convenience methods for creating, manipulating, combining, and converting generic vectors.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Abs``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the absolute values of the given vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Add``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the sum of each pair of elements from two given vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AndNot``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise And Not operation on each pair of corresponding elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorByte``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned bytes.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorDouble``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a double-precision floating-point vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt16``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of 16-bit integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt32``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt64``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of long integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorSByte``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of signed bytes.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorSingle``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a single-precision floating-point vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt16``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned 16-bit integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt32``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt64``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned long integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.BitwiseAnd``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise And operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.BitwiseOr``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise Or operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Creates a new single-precision vector with elements selected between two specified single-precision source vectors based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Creates a new double-precision vector with elements selected between two specified double-precision source vectors based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Creates a new vector of a specified type with elements selected between two specified source vectors of the same type based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToDouble(System.Numerics.Vector{System.Int64})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToDouble(System.Numerics.Vector{System.UInt64})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToInt32(System.Numerics.Vector{System.Single})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToInt64(System.Numerics.Vector{System.Double})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToSingle(System.Numerics.Vector{System.Int32})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToSingle(System.Numerics.Vector{System.UInt32})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToUInt32(System.Numerics.Vector{System.Single})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToUInt64(System.Numerics.Vector{System.Double})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Divide``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the result of dividing the first vector&amp;#39;s elements by the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The divided vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Dot``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified double-precision vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified integral vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in two specified long integer vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified single-precision vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector of a specified type whose elements signal whether the elements in two specified vectors of the same type are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.EqualsAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether each pair of elements in the given vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.EqualsAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any single pair of elements in the given vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element pair in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> is equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are greater than their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are greater than their corresponding elements in a second single-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than their corresponding elements in the second vector of the same time.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are greater than the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> are greater than the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is greater than the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is greater than the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one vector are greater than or equal to their corresponding elements in the single-precision floating-point second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than or equal to their corresponding elements in the second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than or equal to their corresponding elements in the second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one vector are greater than or equal to their corresponding elements in the second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than or equal to their corresponding elements in the second vector of the same type.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqualAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are greater than or equal to all the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> are greater than or equal to the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqualAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is greater than or equal to the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is greater than or equal to the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector.IsHardwareAccelerated\">\r\n      <summary>Gets a value that indicates whether vector operations are subject to hardware acceleration through JIT intrinsic support.</summary>\r\n      <returns>true if vector operations are subject to hardware acceleration; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are less than their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are less than their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are less than their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision vector are less than their corresponding elements in a second single-precision vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector of a specified type whose elements signal whether the elements in one vector are less than their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all of the elements in the first vector are less than their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all of the elements in <paramref name=\"left\">left</paramref> are less than the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is less than the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is less than the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are less than or equal to their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are less than or equal to their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are less or equal to their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are less than or equal to their corresponding elements in a second single-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector are less than or equal to their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqualAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are less than or equal to their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all of the elements in <paramref name=\"left\">left</paramref> are less than or equal to the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqualAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is less than or equal to the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is less than or equal to the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Max``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the maximum of each pair of elements in the two given vectors.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The maximum vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Min``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the minimum of each pair of elements in the two given vectors.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The minimum vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(``0,System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are a scalar value multiplied by each of the values of a specified vector.</summary>\r\n      <param name=\"left\">The scalar value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the product of each pair of elements in two specified vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(System.Numerics.Vector{``0},``0)\">\r\n      <summary>Returns a new vector whose values are the values of a specified vector each multiplied by a scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int16},System.Numerics.Vector{System.Int16})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt16},System.Numerics.Vector{System.UInt16})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt32},System.Numerics.Vector{System.UInt32})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt64},System.Numerics.Vector{System.UInt64})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Negate``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the negation of the corresponding element in the specified vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.OnesComplement``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are obtained by taking the one&amp;#39;s complement of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.SquareRoot``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the square roots of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Subtract``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the difference between the elements in the second vector and their corresponding elements in the first vector.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.UInt16},System.Numerics.Vector{System.UInt32}@,System.Numerics.Vector{System.UInt32}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Double}@,System.Numerics.Vector{System.Double}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.SByte},System.Numerics.Vector{System.Int16}@,System.Numerics.Vector{System.Int16}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.UInt32},System.Numerics.Vector{System.UInt64}@,System.Numerics.Vector{System.UInt64}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Int16},System.Numerics.Vector{System.Int32}@,System.Numerics.Vector{System.Int32}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Byte},System.Numerics.Vector{System.UInt16}@,System.Numerics.Vector{System.UInt16}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int64}@,System.Numerics.Vector{System.Int64}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Xor``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise exclusive Or (XOr) operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector2\">\r\n      <summary>Represents a vector with two single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector2\"></see> object whose two elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to both elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.#ctor(System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector2.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector2.Y\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Abs(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Add(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Clamp(System.Numerics.Vector2,System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Distance(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.DistanceSquared(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Divide(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Divide(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Dot(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Equals(System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Length\">\r\n      <summary>Returns the length of the vector.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Lerp(System.Numerics.Vector2,System.Numerics.Vector2,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Max(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Min(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Negate(System.Numerics.Vector2)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Normalize(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"value\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.One\">\r\n      <summary>Gets a vector whose 2 elements are equal to one.</summary>\r\n      <returns>A vector whose two elements are equal to one (that is, it returns the vector (1,1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Addition(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Division(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Division(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Equality(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Inequality(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Subtraction(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_UnaryNegation(System.Numerics.Vector2)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Reflect(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the reflection of a vector off a surface that has the specified normal.</summary>\r\n      <param name=\"vector\">The source vector.</param>\r\n      <param name=\"normal\">The normal of the surface being reflected off.</param>\r\n      <returns>The reflected vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.SquareRoot(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Subtract(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Matrix3x2)\">\r\n      <summary>Transforms a vector by a specified 3x2 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.TransformNormal(System.Numerics.Vector2,System.Numerics.Matrix3x2)\">\r\n      <summary>Transforms a vector normal by the given 3x2 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.TransformNormal(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector normal by the given 4x4 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.UnitX\">\r\n      <summary>Gets the vector (1,0).</summary>\r\n      <returns>The vector (1,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.UnitY\">\r\n      <summary>Gets the vector (0,1).</summary>\r\n      <returns>The vector (0,1).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector2.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector2.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.Zero\">\r\n      <summary>Returns a vector whose 2 elements are equal to zero.</summary>\r\n      <returns>A vector whose two elements are equal to zero (that is, it returns the vector (0,0).</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector3\">\r\n      <summary>Represents a vector with three  single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector3\"></see> object whose three elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to all three elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Creates a   new <see cref=\"T:System.Numerics.Vector3\"></see> object from the specified <see cref=\"T:System.Numerics.Vector2\"></see> object and the specified value.</summary>\r\n      <param name=\"value\">The vector with two elements.</param>\r\n      <param name=\"z\">The additional value to assign to the <see cref=\"F:System.Numerics.Vector3.Z\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.Y\"></see> field.</param>\r\n      <param name=\"z\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.Z\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Abs(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Add(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Clamp(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Cross(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Computes the cross product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The cross product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Distance(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.DistanceSquared(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Divide(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Divide(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Dot(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Equals(System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Length\">\r\n      <summary>Returns the length of this vector object.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Lerp(System.Numerics.Vector3,System.Numerics.Vector3,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Max(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Min(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Negate(System.Numerics.Vector3)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Normalize(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"value\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.One\">\r\n      <summary>Gets a vector whose 3 elements are equal to one.</summary>\r\n      <returns>A vector whose three elements are equal to one (that is, it returns the vector (1,1,1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Addition(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Division(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Division(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Equality(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Inequality(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Subtraction(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_UnaryNegation(System.Numerics.Vector3)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Reflect(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the reflection of a vector off a surface that has the specified normal.</summary>\r\n      <param name=\"vector\">The source vector.</param>\r\n      <param name=\"normal\">The normal of the surface being reflected off.</param>\r\n      <returns>The reflected vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.SquareRoot(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Subtract(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Transform(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Transform(System.Numerics.Vector3,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.TransformNormal(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector normal by the given 4x4 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitX\">\r\n      <summary>Gets the vector (1,0,0).</summary>\r\n      <returns>The vector (1,0,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitY\">\r\n      <summary>Gets the vector (0,1,0).</summary>\r\n      <returns>The vector (0,1,0)..</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitZ\">\r\n      <summary>Gets the vector (0,0,1).</summary>\r\n      <returns>The vector (0,0,1).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.Z\">\r\n      <summary>The Z component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.Zero\">\r\n      <summary>Gets a vector whose 3 elements are equal to zero.</summary>\r\n      <returns>A vector whose three elements are equal to zero (that is, it returns the vector (0,0,0).</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector4\">\r\n      <summary>Represents a vector with four single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector4\"></see> object whose four elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to all four elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Constructs a new <see cref=\"T:System.Numerics.Vector4\"></see> object from the specified <see cref=\"T:System.Numerics.Vector3\"></see> object and a W component.</summary>\r\n      <param name=\"value\">The vector to use for the X, Y, and Z components.</param>\r\n      <param name=\"w\">The W component.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Numerics.Vector2,System.Single,System.Single)\">\r\n      <summary>Creates a   new <see cref=\"T:System.Numerics.Vector4\"></see> object from the specified <see cref=\"T:System.Numerics.Vector2\"></see> object and a Z and a W component.</summary>\r\n      <param name=\"value\">The vector to use for the X and Y components.</param>\r\n      <param name=\"z\">The Z component.</param>\r\n      <param name=\"w\">The W component.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.Y\"></see> field.</param>\r\n      <param name=\"z\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.Z\"></see> field.</param>\r\n      <param name=\"w\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.W\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Abs(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Add(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Clamp(System.Numerics.Vector4,System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Distance(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.DistanceSquared(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Divide(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Divide(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Dot(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Equals(System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Length\">\r\n      <summary>Returns the length of this vector object.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Lerp(System.Numerics.Vector4,System.Numerics.Vector4,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Max(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Min(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Single,System.Numerics.Vector4)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Negate(System.Numerics.Vector4)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Normalize(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"vector\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.One\">\r\n      <summary>Gets a vector whose 4 elements are equal to one.</summary>\r\n      <returns>Returns <see cref=\"System.Numerics.Vector4\"></see>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Addition(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Division(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Division(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Equality(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Inequality(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Single,System.Numerics.Vector4)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Subtraction(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_UnaryNegation(System.Numerics.Vector4)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.SquareRoot(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Subtract(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector4,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a four-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector4,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a four-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"vector\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector3,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a three-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a two-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector2,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a two-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a three-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitW\">\r\n      <summary>Gets the vector (0,0,0,1).</summary>\r\n      <returns>The vector (0,0,0,1).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitX\">\r\n      <summary>Gets the vector (1,0,0,0).</summary>\r\n      <returns>The vector (1,0,0,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitY\">\r\n      <summary>Gets the vector (0,1,0,0).</summary>\r\n      <returns>The vector (0,1,0,0)..</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitZ\">\r\n      <summary>Gets a vector whose 4 elements are equal to zero.</summary>\r\n      <returns>The vector (0,0,1,0).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.W\">\r\n      <summary>The W component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.Z\">\r\n      <summary>The Z component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.Zero\">\r\n      <summary>Gets a vector whose 4 elements are equal to zero.</summary>\r\n      <returns>A vector whose four elements are equal to zero (that is, it returns the vector (0,0,0,0).</returns>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/ref/net46/System.Numerics.Vectors.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?><doc>\r\n  <assembly>\r\n    <name>System.Numerics.Vectors</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:System.Numerics.Matrix3x2\">\r\n      <summary>Represents a 3x2 matrix.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a 3x2 matrix from the specified components.</summary>\r\n      <param name=\"m11\">The value to assign to the first element in the first row.</param>\r\n      <param name=\"m12\">The value to assign to the second element in the first row.</param>\r\n      <param name=\"m21\">The value to assign to the first element in the second row.</param>\r\n      <param name=\"m22\">The value to assign to the second element in the second row.</param>\r\n      <param name=\"m31\">The value to assign to the first element in the third row.</param>\r\n      <param name=\"m32\">The value to assign to the second element in the third row.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Add(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateRotation(System.Single)\">\r\n      <summary>Creates a rotation matrix using the given rotation in radians.</summary>\r\n      <param name=\"radians\">The amount of rotation, in radians.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateRotation(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a rotation matrix using the specified rotation in radians and a center point.</summary>\r\n      <param name=\"radians\">The amount of rotation, in radians.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Single)\">\r\n      <summary>Creates a scaling matrix from the specified X and Y components.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix that scales uniformly with the specified scale with an offset from the specified center.</summary>\r\n      <param name=\"scale\">The uniform scale to use.</param>\r\n      <param name=\"centerPoint\">The center offset.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix that is offset by a given center point.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single)\">\r\n      <summary>Creates a scaling matrix that scales uniformly with the given scale.</summary>\r\n      <param name=\"scale\">The uniform scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale with an offset from the specified center point.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <param name=\"centerPoint\">The center offset.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateSkew(System.Single,System.Single)\">\r\n      <summary>Creates a skew matrix from the specified angles in radians.</summary>\r\n      <param name=\"radiansX\">The X angle, in radians.</param>\r\n      <param name=\"radiansY\">The Y angle, in radians.</param>\r\n      <returns>The skew matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateSkew(System.Single,System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a skew matrix from the specified angles in radians and a center point.</summary>\r\n      <param name=\"radiansX\">The X angle, in radians.</param>\r\n      <param name=\"radiansY\">The Y angle, in radians.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The skew matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateTranslation(System.Numerics.Vector2)\">\r\n      <summary>Creates a translation matrix from the specified 2-dimensional vector.</summary>\r\n      <param name=\"position\">The translation position.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateTranslation(System.Single,System.Single)\">\r\n      <summary>Creates a translation matrix from the specified X and Y components.</summary>\r\n      <param name=\"xPosition\">The X position.</param>\r\n      <param name=\"yPosition\">The Y position.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Equals(System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether this instance and another 3x2 matrix are equal.</summary>\r\n      <param name=\"other\">The other matrix.</param>\r\n      <returns>true if the two matrices are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.GetDeterminant\">\r\n      <summary>Calculates the determinant for this matrix.</summary>\r\n      <returns>The determinant.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.Identity\">\r\n      <summary>Gets the multiplicative identity matrix.</summary>\r\n      <returns>The multiplicative identify matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Invert(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2@)\">\r\n      <summary>Inverts the specified matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The matrix to invert.</param>\r\n      <param name=\"result\">When this method returns, contains the inverted matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was converted successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.IsIdentity\">\r\n      <summary>Indicates whether the current matrix is the identity matrix.</summary>\r\n      <returns>true if the current matrix is the identity matrix; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Lerp(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Performs a linear interpolation from one matrix to a second matrix based on a value that specifies the weighting of the second matrix.</summary>\r\n      <param name=\"matrix1\">The first matrix.</param>\r\n      <param name=\"matrix2\">The second matrix.</param>\r\n      <param name=\"amount\">The relative weighting of matrix2.</param>\r\n      <returns>The interpolated matrix.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M11\">\r\n      <summary>The first element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M12\">\r\n      <summary>The second element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M21\">\r\n      <summary>The first element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M22\">\r\n      <summary>The second element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M31\">\r\n      <summary>The first element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M32\">\r\n      <summary>The second element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Multiply(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Multiply(System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Negate(System.Numerics.Matrix3x2)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Addition(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Equality(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Inequality(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are not equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Multiply(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Multiply(System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Subtraction(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_UnaryNegation(System.Numerics.Matrix3x2)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Subtract(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.ToString\">\r\n      <summary>Returns a string that represents this matrix.</summary>\r\n      <returns>The string representation of this matrix.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.Translation\">\r\n      <summary>Gets or sets the translation component of this matrix.</summary>\r\n      <returns>The translation component of the current instance.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Matrix4x4\">\r\n      <summary>Represents a 4x4 matrix.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.#ctor(System.Numerics.Matrix3x2)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Matrix4x4\"></see> object from a specified <see cref=\"T:System.Numerics.Matrix3x2\"></see> object.</summary>\r\n      <param name=\"value\">A 3x2 matrix.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a 4x4 matrix from the specified components.</summary>\r\n      <param name=\"m11\">The value to assign to the first element in the first row.</param>\r\n      <param name=\"m12\">The value to assign to the second element in the first row.</param>\r\n      <param name=\"m13\">The value to assign to the third element in the first row.</param>\r\n      <param name=\"m14\">The value to assign to the fourth element in the first row.</param>\r\n      <param name=\"m21\">The value to assign to the first element in the second row.</param>\r\n      <param name=\"m22\">The value to assign to the second element in the second row.</param>\r\n      <param name=\"m23\">The value to assign to the third element in the second row.</param>\r\n      <param name=\"m24\">The value to assign to the third element in the second row.</param>\r\n      <param name=\"m31\">The value to assign to the first element in the third row.</param>\r\n      <param name=\"m32\">The value to assign to the second element in the third row.</param>\r\n      <param name=\"m33\">The value to assign to the third element in the third row.</param>\r\n      <param name=\"m34\">The value to assign to the fourth element in the third row.</param>\r\n      <param name=\"m41\">The value to assign to the first element in the fourth row.</param>\r\n      <param name=\"m42\">The value to assign to the second element in the fourth row.</param>\r\n      <param name=\"m43\">The value to assign to the third element in the fourth row.</param>\r\n      <param name=\"m44\">The value to assign to the fourth element in the fourth row.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Add(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateBillboard(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a spherical billboard that rotates around a specified object position.</summary>\r\n      <param name=\"objectPosition\">The position of the object that the billboard will rotate around.</param>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"cameraUpVector\">The up vector of the camera.</param>\r\n      <param name=\"cameraForwardVector\">The forward vector of the camera.</param>\r\n      <returns>The created billboard.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateConstrainedBillboard(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a cylindrical billboard that rotates around a specified axis.</summary>\r\n      <param name=\"objectPosition\">The position of the object that the billboard will rotate around.</param>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"rotateAxis\">The axis to rotate the billboard around.</param>\r\n      <param name=\"cameraForwardVector\">The forward vector of the camera.</param>\r\n      <param name=\"objectForwardVector\">The forward vector of the object.</param>\r\n      <returns>The billboard matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromAxisAngle(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a matrix that rotates around an arbitrary vector.</summary>\r\n      <param name=\"axis\">The axis to rotate around.</param>\r\n      <param name=\"angle\">The angle to rotate around axis, in radians.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromQuaternion(System.Numerics.Quaternion)\">\r\n      <summary>Creates a rotation matrix from the specified Quaternion rotation value.</summary>\r\n      <param name=\"quaternion\">The source Quaternion.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromYawPitchRoll(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a rotation matrix from the specified yaw, pitch, and roll.</summary>\r\n      <param name=\"yaw\">The angle of rotation, in radians, around the Y axis.</param>\r\n      <param name=\"pitch\">The angle of rotation, in radians, around the X axis.</param>\r\n      <param name=\"roll\">The angle of rotation, in radians, around the Z axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateLookAt(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a view matrix.</summary>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"cameraTarget\">The target towards which the camera is pointing.</param>\r\n      <param name=\"cameraUpVector\">The direction that is &amp;quot;up&amp;quot; from the camera&amp;#39;s point of view.</param>\r\n      <returns>The view matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateOrthographic(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates an orthographic perspective matrix from the given view volume dimensions.</summary>\r\n      <param name=\"width\">The width of the view volume.</param>\r\n      <param name=\"height\">The height of the view volume.</param>\r\n      <param name=\"zNearPlane\">The minimum Z-value of the view volume.</param>\r\n      <param name=\"zFarPlane\">The maximum Z-value of the view volume.</param>\r\n      <returns>The orthographic projection matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateOrthographicOffCenter(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a customized orthographic projection matrix.</summary>\r\n      <param name=\"left\">The minimum X-value of the view volume.</param>\r\n      <param name=\"right\">The maximum X-value of the view volume.</param>\r\n      <param name=\"bottom\">The minimum Y-value of the view volume.</param>\r\n      <param name=\"top\">The maximum Y-value of the view volume.</param>\r\n      <param name=\"zNearPlane\">The minimum Z-value of the view volume.</param>\r\n      <param name=\"zFarPlane\">The maximum Z-value of the view volume.</param>\r\n      <returns>The orthographic projection matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspective(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a perspective projection matrix from the given view volume dimensions.</summary>\r\n      <param name=\"width\">The width of the view volume at the near view plane.</param>\r\n      <param name=\"height\">The height of the view volume at the near view plane.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspectiveFieldOfView(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a perspective projection matrix based on a field of view, aspect ratio, and near and far view plane distances.</summary>\r\n      <param name=\"fieldOfView\">The field of view in the y direction, in radians.</param>\r\n      <param name=\"aspectRatio\">The aspect ratio, defined as view space width divided by height.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"fieldOfView\">fieldOfView</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"fieldOfView\">fieldOfView</paramref> is greater than or equal to <see cref=\"System.Math.PI\"></see>.  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspectiveOffCenter(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a customized perspective projection matrix.</summary>\r\n      <param name=\"left\">The minimum x-value of the view volume at the near view plane.</param>\r\n      <param name=\"right\">The maximum x-value of the view volume at the near view plane.</param>\r\n      <param name=\"bottom\">The minimum y-value of the view volume at the near view plane.</param>\r\n      <param name=\"top\">The maximum y-value of the view volume at the near view plane.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateReflection(System.Numerics.Plane)\">\r\n      <summary>Creates a matrix that reflects the coordinate system about a specified plane.</summary>\r\n      <param name=\"value\">The plane about which to create a reflection.</param>\r\n      <returns>A new matrix expressing the reflection.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationX(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the X axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the X axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationX(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a matrix for rotating points around the X axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the X axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationY(System.Single,System.Numerics.Vector3)\">\r\n      <summary>The amount, in radians, by which to rotate around the Y axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Y-axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationY(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the Y axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Y-axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationZ(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the Z axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Z-axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationZ(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a matrix for rotating points around the Z axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Z-axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single)\">\r\n      <summary>Creates a uniform scaling matrix that scale equally on each axis.</summary>\r\n      <param name=\"scale\">The uniform scaling factor.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix with a center point.</summary>\r\n      <param name=\"scales\">The vector that contains the amount to scale on each axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a uniform scaling matrix that scales equally on each axis with a center point.</summary>\r\n      <param name=\"scale\">The uniform scaling factor.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a scaling matrix from the specified X, Y, and Z components.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"zScale\">The value to scale by on the Z axis.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Single,System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix that is offset by a given center point.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"zScale\">The value to scale by on the Z axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateShadow(System.Numerics.Vector3,System.Numerics.Plane)\">\r\n      <summary>Creates a matrix that flattens geometry into a specified plane as if casting a shadow from a specified light source.</summary>\r\n      <param name=\"lightDirection\">The direction from which the light that will cast the shadow is coming.</param>\r\n      <param name=\"plane\">The plane onto which the new matrix should flatten geometry so as to cast a shadow.</param>\r\n      <returns>A new matrix that can be used to flatten geometry onto the specified plane from the specified direction.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateTranslation(System.Numerics.Vector3)\">\r\n      <summary>Creates a translation matrix from the specified 3-dimensional vector.</summary>\r\n      <param name=\"position\">The amount to translate in each axis.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateTranslation(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a translation matrix from the specified X, Y, and Z components.</summary>\r\n      <param name=\"xPosition\">The amount to translate on the X axis.</param>\r\n      <param name=\"yPosition\">The amount to translate on the Y axis.</param>\r\n      <param name=\"zPosition\">The amount to translate on the Z axis.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateWorld(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a world matrix with the specified parameters.</summary>\r\n      <param name=\"position\">The position of the object.</param>\r\n      <param name=\"forward\">The forward direction of the object.</param>\r\n      <param name=\"up\">The upward direction of the object. Its value is usually [0, 1, 0].</param>\r\n      <returns>The world matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Decompose(System.Numerics.Matrix4x4,System.Numerics.Vector3@,System.Numerics.Quaternion@,System.Numerics.Vector3@)\">\r\n      <summary>Attempts to extract the scale, translation, and rotation components from the given scale, rotation, or translation matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The source matrix.</param>\r\n      <param name=\"scale\">When this method returns, contains the scaling component of the transformation matrix if the operation succeeded.</param>\r\n      <param name=\"rotation\">When this method returns, contains the rotation component of the transformation matrix if the operation succeeded.</param>\r\n      <param name=\"translation\">When the method returns, contains the translation component of the transformation matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was decomposed successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Equals(System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether this instance and another 4x4 matrix are equal.</summary>\r\n      <param name=\"other\">The other matrix.</param>\r\n      <returns>true if the two matrices are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.GetDeterminant\">\r\n      <summary>Calculates the determinant of the current 4x4 matrix.</summary>\r\n      <returns>The determinant.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.Identity\">\r\n      <summary>Gets the multiplicative identity matrix.</summary>\r\n      <returns>Gets the multiplicative identity matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Invert(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4@)\">\r\n      <summary>Inverts the specified matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The matrix to invert.</param>\r\n      <param name=\"result\">When this method returns, contains the inverted matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was converted successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.IsIdentity\">\r\n      <summary>Indicates whether the current matrix is the identity matrix.</summary>\r\n      <returns>true if the current matrix is the identity matrix; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Lerp(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Performs a linear interpolation from one matrix to a second matrix based on a value that specifies the weighting of the second matrix.</summary>\r\n      <param name=\"matrix1\">The first matrix.</param>\r\n      <param name=\"matrix2\">The second matrix.</param>\r\n      <param name=\"amount\">The relative weighting of matrix2.</param>\r\n      <returns>The interpolated matrix.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M11\">\r\n      <summary>The first element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M12\">\r\n      <summary>The second element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M13\">\r\n      <summary>The third element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M14\">\r\n      <summary>The fourth element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M21\">\r\n      <summary>The first element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M22\">\r\n      <summary>The second element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M23\">\r\n      <summary>The third element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M24\">\r\n      <summary>The fourth element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M31\">\r\n      <summary>The first element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M32\">\r\n      <summary>The second element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M33\">\r\n      <summary>The third element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M34\">\r\n      <summary>The fourth element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M41\">\r\n      <summary>The first element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M42\">\r\n      <summary>The second element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M43\">\r\n      <summary>The third element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M44\">\r\n      <summary>The fourth element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Multiply(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Multiply(System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Negate(System.Numerics.Matrix4x4)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Addition(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Equality(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to care</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Inequality(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are not equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Multiply(System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Multiply(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Subtraction(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_UnaryNegation(System.Numerics.Matrix4x4)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Subtract(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.ToString\">\r\n      <summary>Returns a string that represents this matrix.</summary>\r\n      <returns>The string representation of this matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Transform(System.Numerics.Matrix4x4,System.Numerics.Quaternion)\">\r\n      <summary>Transforms the specified matrix by applying the specified Quaternion rotation.</summary>\r\n      <param name=\"value\">The matrix to transform.</param>\r\n      <param name=\"rotation\">The rotation t apply.</param>\r\n      <returns>The transformed matrix.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.Translation\">\r\n      <summary>Gets or sets the translation component of this matrix.</summary>\r\n      <returns>The translation component of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Transpose(System.Numerics.Matrix4x4)\">\r\n      <summary>Transposes the rows and columns of a matrix.</summary>\r\n      <param name=\"matrix\">The matrix to transpose.</param>\r\n      <returns>The transposed matrix.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Plane\">\r\n      <summary>Represents a three-dimensional plane.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Numerics.Vector4)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from a specified four-dimensional vector.</summary>\r\n      <param name=\"value\">A vector whose first three elements describe the normal vector, and whose <see cref=\"F:System.Numerics.Vector4.W\"></see> defines the distance along that normal from the origin.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from a specified normal and the distance along the normal from the origin.</summary>\r\n      <param name=\"normal\">The plane&amp;#39;s normal vector.</param>\r\n      <param name=\"d\">The plane&amp;#39;s distance from the origin along its normal vector.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from the X, Y, and Z components of its normal, and its distance from the origin on that normal.</summary>\r\n      <param name=\"x\">The X component of the normal.</param>\r\n      <param name=\"y\">The Y component of the normal.</param>\r\n      <param name=\"z\">The Z component of the normal.</param>\r\n      <param name=\"d\">The distance of the plane along its normal from the origin.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.CreateFromVertices(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object that contains three specified points.</summary>\r\n      <param name=\"point1\">The first point defining the plane.</param>\r\n      <param name=\"point2\">The second point defining the plane.</param>\r\n      <param name=\"point3\">The third point defining the plane.</param>\r\n      <returns>The plane containing the three points.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Plane.D\">\r\n      <summary>The distance of the plane along its normal from the origin.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Dot(System.Numerics.Plane,System.Numerics.Vector4)\">\r\n      <summary>Calculates the dot product of a plane and a 4-dimensional vector.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The four-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.DotCoordinate(System.Numerics.Plane,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of a specified three-dimensional vector and the normal vector of this plane plus the distance (<see cref=\"F:System.Numerics.Plane.D\"></see>) value of the plane.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The 3-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.DotNormal(System.Numerics.Plane,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of a specified three-dimensional vector and the <see cref=\"F:System.Numerics.Plane.Normal\"></see> vector of this plane.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The three-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Equals(System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether this instance and another plane object are equal.</summary>\r\n      <param name=\"other\">The other plane.</param>\r\n      <returns>true if the two planes are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Plane.Normal\">\r\n      <summary>The normal vector of the plane.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Normalize(System.Numerics.Plane)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Plane\"></see> object whose normal vector is the source plane&amp;#39;s normal vector normalized.</summary>\r\n      <param name=\"value\">The source plane.</param>\r\n      <returns>The normalized plane.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.op_Equality(System.Numerics.Plane,System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether two planes are equal.</summary>\r\n      <param name=\"value1\">The first plane to compare.</param>\r\n      <param name=\"value2\">The second plane to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.op_Inequality(System.Numerics.Plane,System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether two planes are not equal.</summary>\r\n      <param name=\"value1\">The first plane to compare.</param>\r\n      <param name=\"value2\">The second plane to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.ToString\">\r\n      <summary>Returns the string representation of this plane object.</summary>\r\n      <returns>A string that represents this <see cref=\"System.Numerics.Plane\"></see> object.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Transform(System.Numerics.Plane,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a normalized plane by a 4x4 matrix.</summary>\r\n      <param name=\"plane\">The normalized plane to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix to apply to plane.</param>\r\n      <returns>The transformed plane.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Transform(System.Numerics.Plane,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a normalized plane by a Quaternion rotation.</summary>\r\n      <param name=\"plane\">The normalized plane to transform.</param>\r\n      <param name=\"rotation\">The Quaternion rotation to apply to the plane.</param>\r\n      <returns>A new plane that results from applying the Quaternion rotation.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Quaternion\">\r\n      <summary>Represents a vector that is used to encode three-dimensional physical rotations.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a quaternion from the specified vector and rotation parts.</summary>\r\n      <param name=\"vectorPart\">The vector part of the quaternion.</param>\r\n      <param name=\"scalarPart\">The rotation part of the quaternion.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Constructs a quaternion from the specified components.</summary>\r\n      <param name=\"x\">The value to assign to the X component of the quaternion.</param>\r\n      <param name=\"y\">The value to assign to the Y component of the quaternion.</param>\r\n      <param name=\"z\">The value to assign to the Z component of the quaternion.</param>\r\n      <param name=\"w\">The value to assign to the W component of the quaternion.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Add(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Adds each element in one quaternion with its corresponding element in a second quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Concatenate(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Concatenates two quaternions.</summary>\r\n      <param name=\"value1\">The first quaternion rotation in the series.</param>\r\n      <param name=\"value2\">The second quaternion rotation in the series.</param>\r\n      <returns>A new quaternion representing the concatenation of the <paramref name=\"value1\">value1</paramref> rotation followed by the <paramref name=\"value2\">value2</paramref> rotation.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Conjugate(System.Numerics.Quaternion)\">\r\n      <summary>Returns the conjugate of a specified quaternion.</summary>\r\n      <param name=\"value\">The quaternion.</param>\r\n      <returns>A new quaternion that is the conjugate of value.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromAxisAngle(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a quaternion from a vector and an angle to rotate about the vector.</summary>\r\n      <param name=\"axis\">The vector to rotate around.</param>\r\n      <param name=\"angle\">The angle, in radians, to rotate around the vector.</param>\r\n      <returns>The newly created quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromRotationMatrix(System.Numerics.Matrix4x4)\">\r\n      <summary>Creates a quaternion from the specified rotation matrix.</summary>\r\n      <param name=\"matrix\">The rotation matrix.</param>\r\n      <returns>The newly created quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromYawPitchRoll(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a new quaternion from the given yaw, pitch, and roll.</summary>\r\n      <param name=\"yaw\">The yaw angle, in radians, around the Y axis.</param>\r\n      <param name=\"pitch\">The pitch angle, in radians, around the X axis.</param>\r\n      <param name=\"roll\">The roll angle, in radians, around the Z axis.</param>\r\n      <returns>The resulting quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Divide(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Divides one quaternion by a second quaternion.</summary>\r\n      <param name=\"value1\">The dividend.</param>\r\n      <param name=\"value2\">The divisor.</param>\r\n      <returns>The quaternion that results from dividing <paramref name=\"value1\">value1</paramref> by <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Dot(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Calculates the dot product of two quaternions.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Equals(System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether this instance and another quaternion are equal.</summary>\r\n      <param name=\"other\">The other quaternion.</param>\r\n      <returns>true if the two quaternions are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Quaternion.Identity\">\r\n      <summary>Gets a quaternion that represents no rotation.</summary>\r\n      <returns>A quaternion whose values are (0, 0, 0, 1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Inverse(System.Numerics.Quaternion)\">\r\n      <summary>Returns the inverse of a quaternion.</summary>\r\n      <param name=\"value\">The quaternion.</param>\r\n      <returns>The inverted quaternion.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Quaternion.IsIdentity\">\r\n      <summary>Gets a value that indicates whether the current instance is the identity quaternion.</summary>\r\n      <returns>true if the current instance is the identity quaternion; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Length\">\r\n      <summary>Calculates the length of the quaternion.</summary>\r\n      <returns>The computed length of the quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.LengthSquared\">\r\n      <summary>Calculates the squared length of the quaternion.</summary>\r\n      <returns>The length squared of the quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Lerp(System.Numerics.Quaternion,System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Performs a linear interpolation between two quaternions based on a value that specifies the weighting of the second quaternion.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <param name=\"amount\">The relative weight of quaternion2 in the interpolation.</param>\r\n      <returns>The interpolated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Multiply(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns the quaternion that results from multiplying two quaternions together.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The product quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Multiply(System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Returns the quaternion that results from scaling all the components of a specified quaternion by a scalar factor.</summary>\r\n      <param name=\"value1\">The source quaternion.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The scaled quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Negate(System.Numerics.Quaternion)\">\r\n      <summary>Reverses the sign of each component of the quaternion.</summary>\r\n      <param name=\"value\">The quaternion to negate.</param>\r\n      <returns>The negated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Normalize(System.Numerics.Quaternion)\">\r\n      <summary>Divides each component of a specified <see cref=\"T:System.Numerics.Quaternion\"></see> by its length.</summary>\r\n      <param name=\"value\">The quaternion to normalize.</param>\r\n      <returns>The normalized quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Addition(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Adds each element in one quaternion with its corresponding element in a second quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Division(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Divides one quaternion by a second quaternion.</summary>\r\n      <param name=\"value1\">The dividend.</param>\r\n      <param name=\"value2\">The divisor.</param>\r\n      <returns>The quaternion that results from dividing <paramref name=\"value1\">value1</paramref> by <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Equality(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether two quaternions are equal.</summary>\r\n      <param name=\"value1\">The first quaternion to compare.</param>\r\n      <param name=\"value2\">The second quaternion to compare.</param>\r\n      <returns>true if the two quaternions are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Inequality(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether two quaternions are not equal.</summary>\r\n      <param name=\"value1\">The first quaternion to compare.</param>\r\n      <param name=\"value2\">The second quaternion to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Multiply(System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Returns the quaternion that results from scaling all the components of a specified quaternion by a scalar factor.</summary>\r\n      <param name=\"value1\">The source quaternion.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The scaled quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Multiply(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns the quaternion that results from multiplying two quaternions together.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The product quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Subtraction(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Subtracts each element in a second quaternion from its corresponding element in a first quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_UnaryNegation(System.Numerics.Quaternion)\">\r\n      <summary>Reverses the sign of each component of the quaternion.</summary>\r\n      <param name=\"value\">The quaternion to negate.</param>\r\n      <returns>The negated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Slerp(System.Numerics.Quaternion,System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Interpolates between two quaternions, using spherical linear interpolation.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <param name=\"amount\">The relative weight of the second quaternion in the interpolation.</param>\r\n      <returns>The interpolated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Subtract(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Subtracts each element in a second quaternion from its corresponding element in a first quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.ToString\">\r\n      <summary>Returns a string that represents this quaternion.</summary>\r\n      <returns>The string representation of this quaternion.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.W\">\r\n      <summary>The rotation component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.X\">\r\n      <summary>The X value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.Y\">\r\n      <summary>The Y value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.Z\">\r\n      <summary>The Z value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector`1\">\r\n      <summary>Represents a single vector of a specified numeric type that is suitable for low-level optimization of parallel algorithms.</summary>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0)\">\r\n      <summary>Creates a vector whose components are of a specified type.</summary>\r\n      <param name=\"value\">The numeric type that defines the type of the components in the vector.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0[])\">\r\n      <summary>Creates a vector from a specified array.</summary>\r\n      <param name=\"values\">A numeric array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"values\">values</paramref> is null.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0[],System.Int32)\">\r\n      <summary>Creates a vector from a specified array starting at a specified index position.</summary>\r\n      <param name=\"values\">A numeric array.</param>\r\n      <param name=\"index\">The starting index position from which to create the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"values\">values</paramref> is null.</exception>\r\n      <exception cref=\"T:System.IndexOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n The length of <paramref name=\"values\">values</paramref> minus <paramref name=\"index\">index</paramref> is less than <see cref=\"System.Numerics.Vector`1.Count\"></see>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.CopyTo(`0[])\">\r\n      <summary>Copies the vector instance to a specified destination array.</summary>\r\n      <param name=\"destination\">The array to receive a copy of the vector values.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"destination\">destination</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current vector is greater than the number of elements available in the <paramref name=\"destination\">destination</paramref> array.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.CopyTo(`0[],System.Int32)\">\r\n      <summary>Copies the vector instance to a specified destination array starting at a specified index position.</summary>\r\n      <param name=\"destination\">The array to receive a copy of the vector values.</param>\r\n      <param name=\"startIndex\">The starting index in destination at which to begin the copy operation.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"destination\">destination</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than the number of elements available from <paramref name=\"startIndex\">startIndex</paramref> to the end of the <paramref name=\"destination\">destination</paramref> array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero or greater than the last index in <paramref name=\"destination\">destination</paramref>.</exception>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Count\">\r\n      <summary>Returns the number of elements stored in the vector.</summary>\r\n      <returns>The number of elements stored in the vector.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">Access to the property getter via reflection is not supported.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.Equals(System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether this instance is equal to a specified vector.</summary>\r\n      <param name=\"other\">The vector to compare with this instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"other\">other</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance is equal to a specified object.</summary>\r\n      <param name=\"obj\">The object to compare with this instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. The method returns false if <paramref name=\"obj\">obj</paramref> is null, or if <paramref name=\"obj\">obj</paramref> is a vector of a different type than the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Item(System.Int32)\">\r\n      <summary>Gets the element at a specified index.</summary>\r\n      <param name=\"index\">The index of the element to return.</param>\r\n      <returns>The element at index <paramref name=\"index\">index</paramref>.</returns>\r\n      <exception cref=\"T:System.IndexOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to <see cref=\"System.Numerics.Vector`1.Count\"></see>.</exception>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.One\">\r\n      <summary>Returns a vector containing all ones.</summary>\r\n      <returns>A vector containing all ones.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Addition(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_BitwiseAnd(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise And operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise And of <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_BitwiseOr(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise Or operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise Or of the elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Division(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Equality(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_ExclusiveOr(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise XOr operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise XOr of the elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt64}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt64\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt32}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt32\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt16}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt16\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Single}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Single\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.SByte}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.SByte\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Double}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Double\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int32}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int32\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int16}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int16\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Byte}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Byte\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int64}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int64\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Inequality(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether any single pair of elements in the specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if any element pairs in left and right are equal. false if no element pairs are equal.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(System.Numerics.Vector{`0},`0)\">\r\n      <summary>Multiplies a vector by a specified scalar value.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <param name=\"factor\">A scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(`0,System.Numerics.Vector{`0})\">\r\n      <summary>Multiplies a vector by the given scalar.</summary>\r\n      <param name=\"factor\">The scalar value.</param>\r\n      <param name=\"value\">The source vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_OnesComplement(System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector whose elements are obtained by taking the one&amp;#39;s complement of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <returns>The one&amp;#39;s complement vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Subtraction(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_UnaryNegation(System.Numerics.Vector{`0})\">\r\n      <summary>Negates a given vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of this vector using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString\">\r\n      <summary>Returns the string representation of this vector using default formatting.</summary>\r\n      <returns>The string representation of this vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString(System.String)\">\r\n      <summary>Returns the string representation of this vector using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Zero\">\r\n      <summary>Returns a vector containing all zeroes.</summary>\r\n      <returns>A vector containing all zeroes.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector\">\r\n      <summary>Provides a collection of static convenience methods for creating, manipulating, combining, and converting generic vectors.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Abs``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the absolute values of the given vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Add``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the sum of each pair of elements from two given vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AndNot``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise And Not operation on each pair of corresponding elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorByte``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned bytes.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorDouble``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a double-precision floating-point vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt16``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of 16-bit integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt32``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt64``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of long integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorSByte``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of signed bytes.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorSingle``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a single-precision floating-point vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt16``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned 16-bit integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt32``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt64``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned long integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.BitwiseAnd``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise And operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.BitwiseOr``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise Or operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Creates a new single-precision vector with elements selected between two specified single-precision source vectors based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Creates a new double-precision vector with elements selected between two specified double-precision source vectors based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Creates a new vector of a specified type with elements selected between two specified source vectors of the same type based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToDouble(System.Numerics.Vector{System.Int64})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToDouble(System.Numerics.Vector{System.UInt64})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToInt32(System.Numerics.Vector{System.Single})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToInt64(System.Numerics.Vector{System.Double})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToSingle(System.Numerics.Vector{System.Int32})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToSingle(System.Numerics.Vector{System.UInt32})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToUInt32(System.Numerics.Vector{System.Single})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToUInt64(System.Numerics.Vector{System.Double})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Divide``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the result of dividing the first vector&amp;#39;s elements by the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The divided vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Dot``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified double-precision vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified integral vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in two specified long integer vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified single-precision vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector of a specified type whose elements signal whether the elements in two specified vectors of the same type are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.EqualsAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether each pair of elements in the given vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.EqualsAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any single pair of elements in the given vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element pair in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> is equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are greater than their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are greater than their corresponding elements in a second single-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than their corresponding elements in the second vector of the same time.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are greater than the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> are greater than the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is greater than the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is greater than the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one vector are greater than or equal to their corresponding elements in the single-precision floating-point second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than or equal to their corresponding elements in the second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than or equal to their corresponding elements in the second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one vector are greater than or equal to their corresponding elements in the second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than or equal to their corresponding elements in the second vector of the same type.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqualAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are greater than or equal to all the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> are greater than or equal to the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqualAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is greater than or equal to the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is greater than or equal to the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector.IsHardwareAccelerated\">\r\n      <summary>Gets a value that indicates whether vector operations are subject to hardware acceleration through JIT intrinsic support.</summary>\r\n      <returns>true if vector operations are subject to hardware acceleration; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are less than their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are less than their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are less than their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision vector are less than their corresponding elements in a second single-precision vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector of a specified type whose elements signal whether the elements in one vector are less than their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all of the elements in the first vector are less than their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all of the elements in <paramref name=\"left\">left</paramref> are less than the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is less than the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is less than the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are less than or equal to their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are less than or equal to their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are less or equal to their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are less than or equal to their corresponding elements in a second single-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector are less than or equal to their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqualAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are less than or equal to their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all of the elements in <paramref name=\"left\">left</paramref> are less than or equal to the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqualAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is less than or equal to the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is less than or equal to the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Max``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the maximum of each pair of elements in the two given vectors.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The maximum vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Min``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the minimum of each pair of elements in the two given vectors.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The minimum vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(``0,System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are a scalar value multiplied by each of the values of a specified vector.</summary>\r\n      <param name=\"left\">The scalar value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the product of each pair of elements in two specified vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(System.Numerics.Vector{``0},``0)\">\r\n      <summary>Returns a new vector whose values are the values of a specified vector each multiplied by a scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int16},System.Numerics.Vector{System.Int16})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt16},System.Numerics.Vector{System.UInt16})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt32},System.Numerics.Vector{System.UInt32})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt64},System.Numerics.Vector{System.UInt64})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Negate``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the negation of the corresponding element in the specified vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.OnesComplement``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are obtained by taking the one&amp;#39;s complement of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.SquareRoot``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the square roots of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Subtract``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the difference between the elements in the second vector and their corresponding elements in the first vector.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.UInt16},System.Numerics.Vector{System.UInt32}@,System.Numerics.Vector{System.UInt32}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Double}@,System.Numerics.Vector{System.Double}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.SByte},System.Numerics.Vector{System.Int16}@,System.Numerics.Vector{System.Int16}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.UInt32},System.Numerics.Vector{System.UInt64}@,System.Numerics.Vector{System.UInt64}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Int16},System.Numerics.Vector{System.Int32}@,System.Numerics.Vector{System.Int32}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Byte},System.Numerics.Vector{System.UInt16}@,System.Numerics.Vector{System.UInt16}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int64}@,System.Numerics.Vector{System.Int64}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Xor``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise exclusive Or (XOr) operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector2\">\r\n      <summary>Represents a vector with two single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector2\"></see> object whose two elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to both elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.#ctor(System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector2.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector2.Y\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Abs(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Add(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Clamp(System.Numerics.Vector2,System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Distance(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.DistanceSquared(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Divide(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Divide(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Dot(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Equals(System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Length\">\r\n      <summary>Returns the length of the vector.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Lerp(System.Numerics.Vector2,System.Numerics.Vector2,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Max(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Min(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Negate(System.Numerics.Vector2)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Normalize(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"value\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.One\">\r\n      <summary>Gets a vector whose 2 elements are equal to one.</summary>\r\n      <returns>A vector whose two elements are equal to one (that is, it returns the vector (1,1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Addition(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Division(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Division(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Equality(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Inequality(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Subtraction(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_UnaryNegation(System.Numerics.Vector2)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Reflect(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the reflection of a vector off a surface that has the specified normal.</summary>\r\n      <param name=\"vector\">The source vector.</param>\r\n      <param name=\"normal\">The normal of the surface being reflected off.</param>\r\n      <returns>The reflected vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.SquareRoot(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Subtract(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Matrix3x2)\">\r\n      <summary>Transforms a vector by a specified 3x2 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.TransformNormal(System.Numerics.Vector2,System.Numerics.Matrix3x2)\">\r\n      <summary>Transforms a vector normal by the given 3x2 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.TransformNormal(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector normal by the given 4x4 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.UnitX\">\r\n      <summary>Gets the vector (1,0).</summary>\r\n      <returns>The vector (1,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.UnitY\">\r\n      <summary>Gets the vector (0,1).</summary>\r\n      <returns>The vector (0,1).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector2.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector2.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.Zero\">\r\n      <summary>Returns a vector whose 2 elements are equal to zero.</summary>\r\n      <returns>A vector whose two elements are equal to zero (that is, it returns the vector (0,0).</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector3\">\r\n      <summary>Represents a vector with three  single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector3\"></see> object whose three elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to all three elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Creates a   new <see cref=\"T:System.Numerics.Vector3\"></see> object from the specified <see cref=\"T:System.Numerics.Vector2\"></see> object and the specified value.</summary>\r\n      <param name=\"value\">The vector with two elements.</param>\r\n      <param name=\"z\">The additional value to assign to the <see cref=\"F:System.Numerics.Vector3.Z\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.Y\"></see> field.</param>\r\n      <param name=\"z\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.Z\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Abs(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Add(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Clamp(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Cross(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Computes the cross product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The cross product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Distance(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.DistanceSquared(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Divide(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Divide(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Dot(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Equals(System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Length\">\r\n      <summary>Returns the length of this vector object.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Lerp(System.Numerics.Vector3,System.Numerics.Vector3,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Max(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Min(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Negate(System.Numerics.Vector3)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Normalize(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"value\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.One\">\r\n      <summary>Gets a vector whose 3 elements are equal to one.</summary>\r\n      <returns>A vector whose three elements are equal to one (that is, it returns the vector (1,1,1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Addition(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Division(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Division(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Equality(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Inequality(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Subtraction(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_UnaryNegation(System.Numerics.Vector3)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Reflect(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the reflection of a vector off a surface that has the specified normal.</summary>\r\n      <param name=\"vector\">The source vector.</param>\r\n      <param name=\"normal\">The normal of the surface being reflected off.</param>\r\n      <returns>The reflected vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.SquareRoot(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Subtract(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Transform(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Transform(System.Numerics.Vector3,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.TransformNormal(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector normal by the given 4x4 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitX\">\r\n      <summary>Gets the vector (1,0,0).</summary>\r\n      <returns>The vector (1,0,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitY\">\r\n      <summary>Gets the vector (0,1,0).</summary>\r\n      <returns>The vector (0,1,0)..</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitZ\">\r\n      <summary>Gets the vector (0,0,1).</summary>\r\n      <returns>The vector (0,0,1).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.Z\">\r\n      <summary>The Z component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.Zero\">\r\n      <summary>Gets a vector whose 3 elements are equal to zero.</summary>\r\n      <returns>A vector whose three elements are equal to zero (that is, it returns the vector (0,0,0).</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector4\">\r\n      <summary>Represents a vector with four single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector4\"></see> object whose four elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to all four elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Constructs a new <see cref=\"T:System.Numerics.Vector4\"></see> object from the specified <see cref=\"T:System.Numerics.Vector3\"></see> object and a W component.</summary>\r\n      <param name=\"value\">The vector to use for the X, Y, and Z components.</param>\r\n      <param name=\"w\">The W component.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Numerics.Vector2,System.Single,System.Single)\">\r\n      <summary>Creates a   new <see cref=\"T:System.Numerics.Vector4\"></see> object from the specified <see cref=\"T:System.Numerics.Vector2\"></see> object and a Z and a W component.</summary>\r\n      <param name=\"value\">The vector to use for the X and Y components.</param>\r\n      <param name=\"z\">The Z component.</param>\r\n      <param name=\"w\">The W component.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.Y\"></see> field.</param>\r\n      <param name=\"z\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.Z\"></see> field.</param>\r\n      <param name=\"w\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.W\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Abs(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Add(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Clamp(System.Numerics.Vector4,System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Distance(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.DistanceSquared(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Divide(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Divide(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Dot(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Equals(System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Length\">\r\n      <summary>Returns the length of this vector object.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Lerp(System.Numerics.Vector4,System.Numerics.Vector4,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Max(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Min(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Single,System.Numerics.Vector4)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Negate(System.Numerics.Vector4)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Normalize(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"vector\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.One\">\r\n      <summary>Gets a vector whose 4 elements are equal to one.</summary>\r\n      <returns>Returns <see cref=\"System.Numerics.Vector4\"></see>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Addition(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Division(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Division(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Equality(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Inequality(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Single,System.Numerics.Vector4)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Subtraction(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_UnaryNegation(System.Numerics.Vector4)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.SquareRoot(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Subtract(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector4,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a four-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector4,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a four-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"vector\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector3,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a three-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a two-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector2,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a two-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a three-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitW\">\r\n      <summary>Gets the vector (0,0,0,1).</summary>\r\n      <returns>The vector (0,0,0,1).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitX\">\r\n      <summary>Gets the vector (1,0,0,0).</summary>\r\n      <returns>The vector (1,0,0,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitY\">\r\n      <summary>Gets the vector (0,1,0,0).</summary>\r\n      <returns>The vector (0,1,0,0)..</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitZ\">\r\n      <summary>Gets a vector whose 4 elements are equal to zero.</summary>\r\n      <returns>The vector (0,0,1,0).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.W\">\r\n      <summary>The W component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.Z\">\r\n      <summary>The Z component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.Zero\">\r\n      <summary>Gets a vector whose 4 elements are equal to zero.</summary>\r\n      <returns>A vector whose four elements are equal to zero (that is, it returns the vector (0,0,0,0).</returns>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/ref/netcoreapp2.0/_._",
    "content": ""
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/ref/netstandard1.0/System.Numerics.Vectors.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?><doc>\r\n  <assembly>\r\n    <name>System.Numerics.Vectors</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:System.Numerics.Matrix3x2\">\r\n      <summary>Represents a 3x2 matrix.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a 3x2 matrix from the specified components.</summary>\r\n      <param name=\"m11\">The value to assign to the first element in the first row.</param>\r\n      <param name=\"m12\">The value to assign to the second element in the first row.</param>\r\n      <param name=\"m21\">The value to assign to the first element in the second row.</param>\r\n      <param name=\"m22\">The value to assign to the second element in the second row.</param>\r\n      <param name=\"m31\">The value to assign to the first element in the third row.</param>\r\n      <param name=\"m32\">The value to assign to the second element in the third row.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Add(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateRotation(System.Single)\">\r\n      <summary>Creates a rotation matrix using the given rotation in radians.</summary>\r\n      <param name=\"radians\">The amount of rotation, in radians.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateRotation(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a rotation matrix using the specified rotation in radians and a center point.</summary>\r\n      <param name=\"radians\">The amount of rotation, in radians.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Single)\">\r\n      <summary>Creates a scaling matrix from the specified X and Y components.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix that scales uniformly with the specified scale with an offset from the specified center.</summary>\r\n      <param name=\"scale\">The uniform scale to use.</param>\r\n      <param name=\"centerPoint\">The center offset.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix that is offset by a given center point.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single)\">\r\n      <summary>Creates a scaling matrix that scales uniformly with the given scale.</summary>\r\n      <param name=\"scale\">The uniform scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale with an offset from the specified center point.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <param name=\"centerPoint\">The center offset.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateSkew(System.Single,System.Single)\">\r\n      <summary>Creates a skew matrix from the specified angles in radians.</summary>\r\n      <param name=\"radiansX\">The X angle, in radians.</param>\r\n      <param name=\"radiansY\">The Y angle, in radians.</param>\r\n      <returns>The skew matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateSkew(System.Single,System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a skew matrix from the specified angles in radians and a center point.</summary>\r\n      <param name=\"radiansX\">The X angle, in radians.</param>\r\n      <param name=\"radiansY\">The Y angle, in radians.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The skew matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateTranslation(System.Numerics.Vector2)\">\r\n      <summary>Creates a translation matrix from the specified 2-dimensional vector.</summary>\r\n      <param name=\"position\">The translation position.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateTranslation(System.Single,System.Single)\">\r\n      <summary>Creates a translation matrix from the specified X and Y components.</summary>\r\n      <param name=\"xPosition\">The X position.</param>\r\n      <param name=\"yPosition\">The Y position.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Equals(System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether this instance and another 3x2 matrix are equal.</summary>\r\n      <param name=\"other\">The other matrix.</param>\r\n      <returns>true if the two matrices are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.GetDeterminant\">\r\n      <summary>Calculates the determinant for this matrix.</summary>\r\n      <returns>The determinant.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.Identity\">\r\n      <summary>Gets the multiplicative identity matrix.</summary>\r\n      <returns>The multiplicative identify matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Invert(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2@)\">\r\n      <summary>Inverts the specified matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The matrix to invert.</param>\r\n      <param name=\"result\">When this method returns, contains the inverted matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was converted successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.IsIdentity\">\r\n      <summary>Indicates whether the current matrix is the identity matrix.</summary>\r\n      <returns>true if the current matrix is the identity matrix; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Lerp(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Performs a linear interpolation from one matrix to a second matrix based on a value that specifies the weighting of the second matrix.</summary>\r\n      <param name=\"matrix1\">The first matrix.</param>\r\n      <param name=\"matrix2\">The second matrix.</param>\r\n      <param name=\"amount\">The relative weighting of matrix2.</param>\r\n      <returns>The interpolated matrix.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M11\">\r\n      <summary>The first element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M12\">\r\n      <summary>The second element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M21\">\r\n      <summary>The first element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M22\">\r\n      <summary>The second element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M31\">\r\n      <summary>The first element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M32\">\r\n      <summary>The second element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Multiply(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Multiply(System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Negate(System.Numerics.Matrix3x2)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Addition(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Equality(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Inequality(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are not equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Multiply(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Multiply(System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Subtraction(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_UnaryNegation(System.Numerics.Matrix3x2)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Subtract(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.ToString\">\r\n      <summary>Returns a string that represents this matrix.</summary>\r\n      <returns>The string representation of this matrix.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.Translation\">\r\n      <summary>Gets or sets the translation component of this matrix.</summary>\r\n      <returns>The translation component of the current instance.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Matrix4x4\">\r\n      <summary>Represents a 4x4 matrix.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.#ctor(System.Numerics.Matrix3x2)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Matrix4x4\"></see> object from a specified <see cref=\"T:System.Numerics.Matrix3x2\"></see> object.</summary>\r\n      <param name=\"value\">A 3x2 matrix.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a 4x4 matrix from the specified components.</summary>\r\n      <param name=\"m11\">The value to assign to the first element in the first row.</param>\r\n      <param name=\"m12\">The value to assign to the second element in the first row.</param>\r\n      <param name=\"m13\">The value to assign to the third element in the first row.</param>\r\n      <param name=\"m14\">The value to assign to the fourth element in the first row.</param>\r\n      <param name=\"m21\">The value to assign to the first element in the second row.</param>\r\n      <param name=\"m22\">The value to assign to the second element in the second row.</param>\r\n      <param name=\"m23\">The value to assign to the third element in the second row.</param>\r\n      <param name=\"m24\">The value to assign to the third element in the second row.</param>\r\n      <param name=\"m31\">The value to assign to the first element in the third row.</param>\r\n      <param name=\"m32\">The value to assign to the second element in the third row.</param>\r\n      <param name=\"m33\">The value to assign to the third element in the third row.</param>\r\n      <param name=\"m34\">The value to assign to the fourth element in the third row.</param>\r\n      <param name=\"m41\">The value to assign to the first element in the fourth row.</param>\r\n      <param name=\"m42\">The value to assign to the second element in the fourth row.</param>\r\n      <param name=\"m43\">The value to assign to the third element in the fourth row.</param>\r\n      <param name=\"m44\">The value to assign to the fourth element in the fourth row.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Add(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateBillboard(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a spherical billboard that rotates around a specified object position.</summary>\r\n      <param name=\"objectPosition\">The position of the object that the billboard will rotate around.</param>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"cameraUpVector\">The up vector of the camera.</param>\r\n      <param name=\"cameraForwardVector\">The forward vector of the camera.</param>\r\n      <returns>The created billboard.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateConstrainedBillboard(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a cylindrical billboard that rotates around a specified axis.</summary>\r\n      <param name=\"objectPosition\">The position of the object that the billboard will rotate around.</param>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"rotateAxis\">The axis to rotate the billboard around.</param>\r\n      <param name=\"cameraForwardVector\">The forward vector of the camera.</param>\r\n      <param name=\"objectForwardVector\">The forward vector of the object.</param>\r\n      <returns>The billboard matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromAxisAngle(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a matrix that rotates around an arbitrary vector.</summary>\r\n      <param name=\"axis\">The axis to rotate around.</param>\r\n      <param name=\"angle\">The angle to rotate around axis, in radians.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromQuaternion(System.Numerics.Quaternion)\">\r\n      <summary>Creates a rotation matrix from the specified Quaternion rotation value.</summary>\r\n      <param name=\"quaternion\">The source Quaternion.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromYawPitchRoll(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a rotation matrix from the specified yaw, pitch, and roll.</summary>\r\n      <param name=\"yaw\">The angle of rotation, in radians, around the Y axis.</param>\r\n      <param name=\"pitch\">The angle of rotation, in radians, around the X axis.</param>\r\n      <param name=\"roll\">The angle of rotation, in radians, around the Z axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateLookAt(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a view matrix.</summary>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"cameraTarget\">The target towards which the camera is pointing.</param>\r\n      <param name=\"cameraUpVector\">The direction that is &amp;quot;up&amp;quot; from the camera&amp;#39;s point of view.</param>\r\n      <returns>The view matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateOrthographic(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates an orthographic perspective matrix from the given view volume dimensions.</summary>\r\n      <param name=\"width\">The width of the view volume.</param>\r\n      <param name=\"height\">The height of the view volume.</param>\r\n      <param name=\"zNearPlane\">The minimum Z-value of the view volume.</param>\r\n      <param name=\"zFarPlane\">The maximum Z-value of the view volume.</param>\r\n      <returns>The orthographic projection matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateOrthographicOffCenter(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a customized orthographic projection matrix.</summary>\r\n      <param name=\"left\">The minimum X-value of the view volume.</param>\r\n      <param name=\"right\">The maximum X-value of the view volume.</param>\r\n      <param name=\"bottom\">The minimum Y-value of the view volume.</param>\r\n      <param name=\"top\">The maximum Y-value of the view volume.</param>\r\n      <param name=\"zNearPlane\">The minimum Z-value of the view volume.</param>\r\n      <param name=\"zFarPlane\">The maximum Z-value of the view volume.</param>\r\n      <returns>The orthographic projection matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspective(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a perspective projection matrix from the given view volume dimensions.</summary>\r\n      <param name=\"width\">The width of the view volume at the near view plane.</param>\r\n      <param name=\"height\">The height of the view volume at the near view plane.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspectiveFieldOfView(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a perspective projection matrix based on a field of view, aspect ratio, and near and far view plane distances.</summary>\r\n      <param name=\"fieldOfView\">The field of view in the y direction, in radians.</param>\r\n      <param name=\"aspectRatio\">The aspect ratio, defined as view space width divided by height.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"fieldOfView\">fieldOfView</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"fieldOfView\">fieldOfView</paramref> is greater than or equal to <see cref=\"System.Math.PI\"></see>.  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspectiveOffCenter(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a customized perspective projection matrix.</summary>\r\n      <param name=\"left\">The minimum x-value of the view volume at the near view plane.</param>\r\n      <param name=\"right\">The maximum x-value of the view volume at the near view plane.</param>\r\n      <param name=\"bottom\">The minimum y-value of the view volume at the near view plane.</param>\r\n      <param name=\"top\">The maximum y-value of the view volume at the near view plane.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateReflection(System.Numerics.Plane)\">\r\n      <summary>Creates a matrix that reflects the coordinate system about a specified plane.</summary>\r\n      <param name=\"value\">The plane about which to create a reflection.</param>\r\n      <returns>A new matrix expressing the reflection.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationX(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the X axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the X axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationX(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a matrix for rotating points around the X axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the X axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationY(System.Single,System.Numerics.Vector3)\">\r\n      <summary>The amount, in radians, by which to rotate around the Y axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Y-axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationY(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the Y axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Y-axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationZ(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the Z axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Z-axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationZ(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a matrix for rotating points around the Z axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Z-axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single)\">\r\n      <summary>Creates a uniform scaling matrix that scale equally on each axis.</summary>\r\n      <param name=\"scale\">The uniform scaling factor.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix with a center point.</summary>\r\n      <param name=\"scales\">The vector that contains the amount to scale on each axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a uniform scaling matrix that scales equally on each axis with a center point.</summary>\r\n      <param name=\"scale\">The uniform scaling factor.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a scaling matrix from the specified X, Y, and Z components.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"zScale\">The value to scale by on the Z axis.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Single,System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix that is offset by a given center point.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"zScale\">The value to scale by on the Z axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateShadow(System.Numerics.Vector3,System.Numerics.Plane)\">\r\n      <summary>Creates a matrix that flattens geometry into a specified plane as if casting a shadow from a specified light source.</summary>\r\n      <param name=\"lightDirection\">The direction from which the light that will cast the shadow is coming.</param>\r\n      <param name=\"plane\">The plane onto which the new matrix should flatten geometry so as to cast a shadow.</param>\r\n      <returns>A new matrix that can be used to flatten geometry onto the specified plane from the specified direction.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateTranslation(System.Numerics.Vector3)\">\r\n      <summary>Creates a translation matrix from the specified 3-dimensional vector.</summary>\r\n      <param name=\"position\">The amount to translate in each axis.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateTranslation(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a translation matrix from the specified X, Y, and Z components.</summary>\r\n      <param name=\"xPosition\">The amount to translate on the X axis.</param>\r\n      <param name=\"yPosition\">The amount to translate on the Y axis.</param>\r\n      <param name=\"zPosition\">The amount to translate on the Z axis.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateWorld(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a world matrix with the specified parameters.</summary>\r\n      <param name=\"position\">The position of the object.</param>\r\n      <param name=\"forward\">The forward direction of the object.</param>\r\n      <param name=\"up\">The upward direction of the object. Its value is usually [0, 1, 0].</param>\r\n      <returns>The world matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Decompose(System.Numerics.Matrix4x4,System.Numerics.Vector3@,System.Numerics.Quaternion@,System.Numerics.Vector3@)\">\r\n      <summary>Attempts to extract the scale, translation, and rotation components from the given scale, rotation, or translation matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The source matrix.</param>\r\n      <param name=\"scale\">When this method returns, contains the scaling component of the transformation matrix if the operation succeeded.</param>\r\n      <param name=\"rotation\">When this method returns, contains the rotation component of the transformation matrix if the operation succeeded.</param>\r\n      <param name=\"translation\">When the method returns, contains the translation component of the transformation matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was decomposed successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Equals(System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether this instance and another 4x4 matrix are equal.</summary>\r\n      <param name=\"other\">The other matrix.</param>\r\n      <returns>true if the two matrices are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.GetDeterminant\">\r\n      <summary>Calculates the determinant of the current 4x4 matrix.</summary>\r\n      <returns>The determinant.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.Identity\">\r\n      <summary>Gets the multiplicative identity matrix.</summary>\r\n      <returns>Gets the multiplicative identity matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Invert(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4@)\">\r\n      <summary>Inverts the specified matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The matrix to invert.</param>\r\n      <param name=\"result\">When this method returns, contains the inverted matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was converted successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.IsIdentity\">\r\n      <summary>Indicates whether the current matrix is the identity matrix.</summary>\r\n      <returns>true if the current matrix is the identity matrix; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Lerp(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Performs a linear interpolation from one matrix to a second matrix based on a value that specifies the weighting of the second matrix.</summary>\r\n      <param name=\"matrix1\">The first matrix.</param>\r\n      <param name=\"matrix2\">The second matrix.</param>\r\n      <param name=\"amount\">The relative weighting of matrix2.</param>\r\n      <returns>The interpolated matrix.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M11\">\r\n      <summary>The first element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M12\">\r\n      <summary>The second element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M13\">\r\n      <summary>The third element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M14\">\r\n      <summary>The fourth element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M21\">\r\n      <summary>The first element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M22\">\r\n      <summary>The second element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M23\">\r\n      <summary>The third element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M24\">\r\n      <summary>The fourth element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M31\">\r\n      <summary>The first element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M32\">\r\n      <summary>The second element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M33\">\r\n      <summary>The third element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M34\">\r\n      <summary>The fourth element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M41\">\r\n      <summary>The first element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M42\">\r\n      <summary>The second element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M43\">\r\n      <summary>The third element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M44\">\r\n      <summary>The fourth element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Multiply(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Multiply(System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Negate(System.Numerics.Matrix4x4)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Addition(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Equality(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to care</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Inequality(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are not equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Multiply(System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Multiply(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Subtraction(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_UnaryNegation(System.Numerics.Matrix4x4)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Subtract(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.ToString\">\r\n      <summary>Returns a string that represents this matrix.</summary>\r\n      <returns>The string representation of this matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Transform(System.Numerics.Matrix4x4,System.Numerics.Quaternion)\">\r\n      <summary>Transforms the specified matrix by applying the specified Quaternion rotation.</summary>\r\n      <param name=\"value\">The matrix to transform.</param>\r\n      <param name=\"rotation\">The rotation t apply.</param>\r\n      <returns>The transformed matrix.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.Translation\">\r\n      <summary>Gets or sets the translation component of this matrix.</summary>\r\n      <returns>The translation component of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Transpose(System.Numerics.Matrix4x4)\">\r\n      <summary>Transposes the rows and columns of a matrix.</summary>\r\n      <param name=\"matrix\">The matrix to transpose.</param>\r\n      <returns>The transposed matrix.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Plane\">\r\n      <summary>Represents a three-dimensional plane.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Numerics.Vector4)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from a specified four-dimensional vector.</summary>\r\n      <param name=\"value\">A vector whose first three elements describe the normal vector, and whose <see cref=\"F:System.Numerics.Vector4.W\"></see> defines the distance along that normal from the origin.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from a specified normal and the distance along the normal from the origin.</summary>\r\n      <param name=\"normal\">The plane&amp;#39;s normal vector.</param>\r\n      <param name=\"d\">The plane&amp;#39;s distance from the origin along its normal vector.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from the X, Y, and Z components of its normal, and its distance from the origin on that normal.</summary>\r\n      <param name=\"x\">The X component of the normal.</param>\r\n      <param name=\"y\">The Y component of the normal.</param>\r\n      <param name=\"z\">The Z component of the normal.</param>\r\n      <param name=\"d\">The distance of the plane along its normal from the origin.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.CreateFromVertices(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object that contains three specified points.</summary>\r\n      <param name=\"point1\">The first point defining the plane.</param>\r\n      <param name=\"point2\">The second point defining the plane.</param>\r\n      <param name=\"point3\">The third point defining the plane.</param>\r\n      <returns>The plane containing the three points.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Plane.D\">\r\n      <summary>The distance of the plane along its normal from the origin.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Dot(System.Numerics.Plane,System.Numerics.Vector4)\">\r\n      <summary>Calculates the dot product of a plane and a 4-dimensional vector.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The four-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.DotCoordinate(System.Numerics.Plane,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of a specified three-dimensional vector and the normal vector of this plane plus the distance (<see cref=\"F:System.Numerics.Plane.D\"></see>) value of the plane.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The 3-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.DotNormal(System.Numerics.Plane,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of a specified three-dimensional vector and the <see cref=\"F:System.Numerics.Plane.Normal\"></see> vector of this plane.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The three-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Equals(System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether this instance and another plane object are equal.</summary>\r\n      <param name=\"other\">The other plane.</param>\r\n      <returns>true if the two planes are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Plane.Normal\">\r\n      <summary>The normal vector of the plane.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Normalize(System.Numerics.Plane)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Plane\"></see> object whose normal vector is the source plane&amp;#39;s normal vector normalized.</summary>\r\n      <param name=\"value\">The source plane.</param>\r\n      <returns>The normalized plane.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.op_Equality(System.Numerics.Plane,System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether two planes are equal.</summary>\r\n      <param name=\"value1\">The first plane to compare.</param>\r\n      <param name=\"value2\">The second plane to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.op_Inequality(System.Numerics.Plane,System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether two planes are not equal.</summary>\r\n      <param name=\"value1\">The first plane to compare.</param>\r\n      <param name=\"value2\">The second plane to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.ToString\">\r\n      <summary>Returns the string representation of this plane object.</summary>\r\n      <returns>A string that represents this <see cref=\"System.Numerics.Plane\"></see> object.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Transform(System.Numerics.Plane,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a normalized plane by a 4x4 matrix.</summary>\r\n      <param name=\"plane\">The normalized plane to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix to apply to plane.</param>\r\n      <returns>The transformed plane.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Transform(System.Numerics.Plane,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a normalized plane by a Quaternion rotation.</summary>\r\n      <param name=\"plane\">The normalized plane to transform.</param>\r\n      <param name=\"rotation\">The Quaternion rotation to apply to the plane.</param>\r\n      <returns>A new plane that results from applying the Quaternion rotation.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Quaternion\">\r\n      <summary>Represents a vector that is used to encode three-dimensional physical rotations.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a quaternion from the specified vector and rotation parts.</summary>\r\n      <param name=\"vectorPart\">The vector part of the quaternion.</param>\r\n      <param name=\"scalarPart\">The rotation part of the quaternion.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Constructs a quaternion from the specified components.</summary>\r\n      <param name=\"x\">The value to assign to the X component of the quaternion.</param>\r\n      <param name=\"y\">The value to assign to the Y component of the quaternion.</param>\r\n      <param name=\"z\">The value to assign to the Z component of the quaternion.</param>\r\n      <param name=\"w\">The value to assign to the W component of the quaternion.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Add(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Adds each element in one quaternion with its corresponding element in a second quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Concatenate(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Concatenates two quaternions.</summary>\r\n      <param name=\"value1\">The first quaternion rotation in the series.</param>\r\n      <param name=\"value2\">The second quaternion rotation in the series.</param>\r\n      <returns>A new quaternion representing the concatenation of the <paramref name=\"value1\">value1</paramref> rotation followed by the <paramref name=\"value2\">value2</paramref> rotation.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Conjugate(System.Numerics.Quaternion)\">\r\n      <summary>Returns the conjugate of a specified quaternion.</summary>\r\n      <param name=\"value\">The quaternion.</param>\r\n      <returns>A new quaternion that is the conjugate of value.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromAxisAngle(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a quaternion from a vector and an angle to rotate about the vector.</summary>\r\n      <param name=\"axis\">The vector to rotate around.</param>\r\n      <param name=\"angle\">The angle, in radians, to rotate around the vector.</param>\r\n      <returns>The newly created quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromRotationMatrix(System.Numerics.Matrix4x4)\">\r\n      <summary>Creates a quaternion from the specified rotation matrix.</summary>\r\n      <param name=\"matrix\">The rotation matrix.</param>\r\n      <returns>The newly created quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromYawPitchRoll(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a new quaternion from the given yaw, pitch, and roll.</summary>\r\n      <param name=\"yaw\">The yaw angle, in radians, around the Y axis.</param>\r\n      <param name=\"pitch\">The pitch angle, in radians, around the X axis.</param>\r\n      <param name=\"roll\">The roll angle, in radians, around the Z axis.</param>\r\n      <returns>The resulting quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Divide(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Divides one quaternion by a second quaternion.</summary>\r\n      <param name=\"value1\">The dividend.</param>\r\n      <param name=\"value2\">The divisor.</param>\r\n      <returns>The quaternion that results from dividing <paramref name=\"value1\">value1</paramref> by <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Dot(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Calculates the dot product of two quaternions.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Equals(System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether this instance and another quaternion are equal.</summary>\r\n      <param name=\"other\">The other quaternion.</param>\r\n      <returns>true if the two quaternions are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Quaternion.Identity\">\r\n      <summary>Gets a quaternion that represents no rotation.</summary>\r\n      <returns>A quaternion whose values are (0, 0, 0, 1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Inverse(System.Numerics.Quaternion)\">\r\n      <summary>Returns the inverse of a quaternion.</summary>\r\n      <param name=\"value\">The quaternion.</param>\r\n      <returns>The inverted quaternion.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Quaternion.IsIdentity\">\r\n      <summary>Gets a value that indicates whether the current instance is the identity quaternion.</summary>\r\n      <returns>true if the current instance is the identity quaternion; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Length\">\r\n      <summary>Calculates the length of the quaternion.</summary>\r\n      <returns>The computed length of the quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.LengthSquared\">\r\n      <summary>Calculates the squared length of the quaternion.</summary>\r\n      <returns>The length squared of the quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Lerp(System.Numerics.Quaternion,System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Performs a linear interpolation between two quaternions based on a value that specifies the weighting of the second quaternion.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <param name=\"amount\">The relative weight of quaternion2 in the interpolation.</param>\r\n      <returns>The interpolated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Multiply(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns the quaternion that results from multiplying two quaternions together.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The product quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Multiply(System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Returns the quaternion that results from scaling all the components of a specified quaternion by a scalar factor.</summary>\r\n      <param name=\"value1\">The source quaternion.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The scaled quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Negate(System.Numerics.Quaternion)\">\r\n      <summary>Reverses the sign of each component of the quaternion.</summary>\r\n      <param name=\"value\">The quaternion to negate.</param>\r\n      <returns>The negated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Normalize(System.Numerics.Quaternion)\">\r\n      <summary>Divides each component of a specified <see cref=\"T:System.Numerics.Quaternion\"></see> by its length.</summary>\r\n      <param name=\"value\">The quaternion to normalize.</param>\r\n      <returns>The normalized quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Addition(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Adds each element in one quaternion with its corresponding element in a second quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Division(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Divides one quaternion by a second quaternion.</summary>\r\n      <param name=\"value1\">The dividend.</param>\r\n      <param name=\"value2\">The divisor.</param>\r\n      <returns>The quaternion that results from dividing <paramref name=\"value1\">value1</paramref> by <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Equality(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether two quaternions are equal.</summary>\r\n      <param name=\"value1\">The first quaternion to compare.</param>\r\n      <param name=\"value2\">The second quaternion to compare.</param>\r\n      <returns>true if the two quaternions are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Inequality(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether two quaternions are not equal.</summary>\r\n      <param name=\"value1\">The first quaternion to compare.</param>\r\n      <param name=\"value2\">The second quaternion to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Multiply(System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Returns the quaternion that results from scaling all the components of a specified quaternion by a scalar factor.</summary>\r\n      <param name=\"value1\">The source quaternion.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The scaled quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Multiply(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns the quaternion that results from multiplying two quaternions together.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The product quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Subtraction(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Subtracts each element in a second quaternion from its corresponding element in a first quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_UnaryNegation(System.Numerics.Quaternion)\">\r\n      <summary>Reverses the sign of each component of the quaternion.</summary>\r\n      <param name=\"value\">The quaternion to negate.</param>\r\n      <returns>The negated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Slerp(System.Numerics.Quaternion,System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Interpolates between two quaternions, using spherical linear interpolation.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <param name=\"amount\">The relative weight of the second quaternion in the interpolation.</param>\r\n      <returns>The interpolated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Subtract(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Subtracts each element in a second quaternion from its corresponding element in a first quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.ToString\">\r\n      <summary>Returns a string that represents this quaternion.</summary>\r\n      <returns>The string representation of this quaternion.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.W\">\r\n      <summary>The rotation component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.X\">\r\n      <summary>The X value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.Y\">\r\n      <summary>The Y value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.Z\">\r\n      <summary>The Z value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector`1\">\r\n      <summary>Represents a single vector of a specified numeric type that is suitable for low-level optimization of parallel algorithms.</summary>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0)\">\r\n      <summary>Creates a vector whose components are of a specified type.</summary>\r\n      <param name=\"value\">The numeric type that defines the type of the components in the vector.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0[])\">\r\n      <summary>Creates a vector from a specified array.</summary>\r\n      <param name=\"values\">A numeric array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"values\">values</paramref> is null.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0[],System.Int32)\">\r\n      <summary>Creates a vector from a specified array starting at a specified index position.</summary>\r\n      <param name=\"values\">A numeric array.</param>\r\n      <param name=\"index\">The starting index position from which to create the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"values\">values</paramref> is null.</exception>\r\n      <exception cref=\"T:System.IndexOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n The length of <paramref name=\"values\">values</paramref> minus <paramref name=\"index\">index</paramref> is less than <see cref=\"System.Numerics.Vector`1.Count\"></see>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.CopyTo(`0[])\">\r\n      <summary>Copies the vector instance to a specified destination array.</summary>\r\n      <param name=\"destination\">The array to receive a copy of the vector values.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"destination\">destination</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current vector is greater than the number of elements available in the <paramref name=\"destination\">destination</paramref> array.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.CopyTo(`0[],System.Int32)\">\r\n      <summary>Copies the vector instance to a specified destination array starting at a specified index position.</summary>\r\n      <param name=\"destination\">The array to receive a copy of the vector values.</param>\r\n      <param name=\"startIndex\">The starting index in destination at which to begin the copy operation.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"destination\">destination</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than the number of elements available from <paramref name=\"startIndex\">startIndex</paramref> to the end of the <paramref name=\"destination\">destination</paramref> array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero or greater than the last index in <paramref name=\"destination\">destination</paramref>.</exception>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Count\">\r\n      <summary>Returns the number of elements stored in the vector.</summary>\r\n      <returns>The number of elements stored in the vector.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">Access to the property getter via reflection is not supported.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.Equals(System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether this instance is equal to a specified vector.</summary>\r\n      <param name=\"other\">The vector to compare with this instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"other\">other</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance is equal to a specified object.</summary>\r\n      <param name=\"obj\">The object to compare with this instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. The method returns false if <paramref name=\"obj\">obj</paramref> is null, or if <paramref name=\"obj\">obj</paramref> is a vector of a different type than the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Item(System.Int32)\">\r\n      <summary>Gets the element at a specified index.</summary>\r\n      <param name=\"index\">The index of the element to return.</param>\r\n      <returns>The element at index <paramref name=\"index\">index</paramref>.</returns>\r\n      <exception cref=\"T:System.IndexOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to <see cref=\"System.Numerics.Vector`1.Count\"></see>.</exception>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.One\">\r\n      <summary>Returns a vector containing all ones.</summary>\r\n      <returns>A vector containing all ones.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Addition(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_BitwiseAnd(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise And operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise And of <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_BitwiseOr(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise Or operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise Or of the elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Division(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Equality(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_ExclusiveOr(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise XOr operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise XOr of the elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt64}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt64\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt32}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt32\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt16}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt16\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Single}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Single\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.SByte}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.SByte\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Double}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Double\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int32}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int32\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int16}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int16\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Byte}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Byte\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int64}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int64\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Inequality(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether any single pair of elements in the specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if any element pairs in left and right are equal. false if no element pairs are equal.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(System.Numerics.Vector{`0},`0)\">\r\n      <summary>Multiplies a vector by a specified scalar value.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <param name=\"factor\">A scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(`0,System.Numerics.Vector{`0})\">\r\n      <summary>Multiplies a vector by the given scalar.</summary>\r\n      <param name=\"factor\">The scalar value.</param>\r\n      <param name=\"value\">The source vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_OnesComplement(System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector whose elements are obtained by taking the one&amp;#39;s complement of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <returns>The one&amp;#39;s complement vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Subtraction(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_UnaryNegation(System.Numerics.Vector{`0})\">\r\n      <summary>Negates a given vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of this vector using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString\">\r\n      <summary>Returns the string representation of this vector using default formatting.</summary>\r\n      <returns>The string representation of this vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString(System.String)\">\r\n      <summary>Returns the string representation of this vector using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Zero\">\r\n      <summary>Returns a vector containing all zeroes.</summary>\r\n      <returns>A vector containing all zeroes.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector\">\r\n      <summary>Provides a collection of static convenience methods for creating, manipulating, combining, and converting generic vectors.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Abs``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the absolute values of the given vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Add``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the sum of each pair of elements from two given vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AndNot``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise And Not operation on each pair of corresponding elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorByte``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned bytes.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorDouble``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a double-precision floating-point vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt16``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of 16-bit integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt32``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt64``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of long integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorSByte``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of signed bytes.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorSingle``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a single-precision floating-point vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt16``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned 16-bit integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt32``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt64``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned long integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.BitwiseAnd``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise And operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.BitwiseOr``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise Or operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Creates a new single-precision vector with elements selected between two specified single-precision source vectors based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Creates a new double-precision vector with elements selected between two specified double-precision source vectors based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Creates a new vector of a specified type with elements selected between two specified source vectors of the same type based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToDouble(System.Numerics.Vector{System.Int64})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToDouble(System.Numerics.Vector{System.UInt64})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToInt32(System.Numerics.Vector{System.Single})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToInt64(System.Numerics.Vector{System.Double})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToSingle(System.Numerics.Vector{System.Int32})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToSingle(System.Numerics.Vector{System.UInt32})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToUInt32(System.Numerics.Vector{System.Single})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToUInt64(System.Numerics.Vector{System.Double})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Divide``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the result of dividing the first vector&amp;#39;s elements by the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The divided vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Dot``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified double-precision vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified integral vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in two specified long integer vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified single-precision vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector of a specified type whose elements signal whether the elements in two specified vectors of the same type are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.EqualsAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether each pair of elements in the given vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.EqualsAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any single pair of elements in the given vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element pair in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> is equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are greater than their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are greater than their corresponding elements in a second single-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than their corresponding elements in the second vector of the same time.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are greater than the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> are greater than the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is greater than the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is greater than the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one vector are greater than or equal to their corresponding elements in the single-precision floating-point second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than or equal to their corresponding elements in the second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than or equal to their corresponding elements in the second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one vector are greater than or equal to their corresponding elements in the second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than or equal to their corresponding elements in the second vector of the same type.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqualAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are greater than or equal to all the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> are greater than or equal to the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqualAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is greater than or equal to the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is greater than or equal to the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector.IsHardwareAccelerated\">\r\n      <summary>Gets a value that indicates whether vector operations are subject to hardware acceleration through JIT intrinsic support.</summary>\r\n      <returns>true if vector operations are subject to hardware acceleration; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are less than their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are less than their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are less than their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision vector are less than their corresponding elements in a second single-precision vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector of a specified type whose elements signal whether the elements in one vector are less than their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all of the elements in the first vector are less than their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all of the elements in <paramref name=\"left\">left</paramref> are less than the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is less than the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is less than the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are less than or equal to their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are less than or equal to their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are less or equal to their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are less than or equal to their corresponding elements in a second single-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector are less than or equal to their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqualAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are less than or equal to their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all of the elements in <paramref name=\"left\">left</paramref> are less than or equal to the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqualAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is less than or equal to the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is less than or equal to the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Max``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the maximum of each pair of elements in the two given vectors.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The maximum vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Min``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the minimum of each pair of elements in the two given vectors.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The minimum vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(``0,System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are a scalar value multiplied by each of the values of a specified vector.</summary>\r\n      <param name=\"left\">The scalar value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the product of each pair of elements in two specified vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(System.Numerics.Vector{``0},``0)\">\r\n      <summary>Returns a new vector whose values are the values of a specified vector each multiplied by a scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int16},System.Numerics.Vector{System.Int16})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt16},System.Numerics.Vector{System.UInt16})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt32},System.Numerics.Vector{System.UInt32})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt64},System.Numerics.Vector{System.UInt64})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Negate``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the negation of the corresponding element in the specified vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.OnesComplement``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are obtained by taking the one&amp;#39;s complement of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.SquareRoot``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the square roots of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Subtract``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the difference between the elements in the second vector and their corresponding elements in the first vector.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.UInt16},System.Numerics.Vector{System.UInt32}@,System.Numerics.Vector{System.UInt32}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Double}@,System.Numerics.Vector{System.Double}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.SByte},System.Numerics.Vector{System.Int16}@,System.Numerics.Vector{System.Int16}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.UInt32},System.Numerics.Vector{System.UInt64}@,System.Numerics.Vector{System.UInt64}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Int16},System.Numerics.Vector{System.Int32}@,System.Numerics.Vector{System.Int32}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Byte},System.Numerics.Vector{System.UInt16}@,System.Numerics.Vector{System.UInt16}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int64}@,System.Numerics.Vector{System.Int64}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Xor``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise exclusive Or (XOr) operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector2\">\r\n      <summary>Represents a vector with two single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector2\"></see> object whose two elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to both elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.#ctor(System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector2.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector2.Y\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Abs(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Add(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Clamp(System.Numerics.Vector2,System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Distance(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.DistanceSquared(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Divide(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Divide(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Dot(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Equals(System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Length\">\r\n      <summary>Returns the length of the vector.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Lerp(System.Numerics.Vector2,System.Numerics.Vector2,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Max(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Min(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Negate(System.Numerics.Vector2)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Normalize(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"value\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.One\">\r\n      <summary>Gets a vector whose 2 elements are equal to one.</summary>\r\n      <returns>A vector whose two elements are equal to one (that is, it returns the vector (1,1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Addition(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Division(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Division(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Equality(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Inequality(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Subtraction(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_UnaryNegation(System.Numerics.Vector2)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Reflect(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the reflection of a vector off a surface that has the specified normal.</summary>\r\n      <param name=\"vector\">The source vector.</param>\r\n      <param name=\"normal\">The normal of the surface being reflected off.</param>\r\n      <returns>The reflected vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.SquareRoot(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Subtract(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Matrix3x2)\">\r\n      <summary>Transforms a vector by a specified 3x2 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.TransformNormal(System.Numerics.Vector2,System.Numerics.Matrix3x2)\">\r\n      <summary>Transforms a vector normal by the given 3x2 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.TransformNormal(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector normal by the given 4x4 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.UnitX\">\r\n      <summary>Gets the vector (1,0).</summary>\r\n      <returns>The vector (1,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.UnitY\">\r\n      <summary>Gets the vector (0,1).</summary>\r\n      <returns>The vector (0,1).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector2.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector2.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.Zero\">\r\n      <summary>Returns a vector whose 2 elements are equal to zero.</summary>\r\n      <returns>A vector whose two elements are equal to zero (that is, it returns the vector (0,0).</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector3\">\r\n      <summary>Represents a vector with three  single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector3\"></see> object whose three elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to all three elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Creates a   new <see cref=\"T:System.Numerics.Vector3\"></see> object from the specified <see cref=\"T:System.Numerics.Vector2\"></see> object and the specified value.</summary>\r\n      <param name=\"value\">The vector with two elements.</param>\r\n      <param name=\"z\">The additional value to assign to the <see cref=\"F:System.Numerics.Vector3.Z\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.Y\"></see> field.</param>\r\n      <param name=\"z\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.Z\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Abs(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Add(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Clamp(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Cross(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Computes the cross product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The cross product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Distance(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.DistanceSquared(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Divide(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Divide(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Dot(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Equals(System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Length\">\r\n      <summary>Returns the length of this vector object.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Lerp(System.Numerics.Vector3,System.Numerics.Vector3,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Max(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Min(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Negate(System.Numerics.Vector3)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Normalize(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"value\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.One\">\r\n      <summary>Gets a vector whose 3 elements are equal to one.</summary>\r\n      <returns>A vector whose three elements are equal to one (that is, it returns the vector (1,1,1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Addition(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Division(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Division(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Equality(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Inequality(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Subtraction(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_UnaryNegation(System.Numerics.Vector3)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Reflect(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the reflection of a vector off a surface that has the specified normal.</summary>\r\n      <param name=\"vector\">The source vector.</param>\r\n      <param name=\"normal\">The normal of the surface being reflected off.</param>\r\n      <returns>The reflected vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.SquareRoot(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Subtract(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Transform(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Transform(System.Numerics.Vector3,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.TransformNormal(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector normal by the given 4x4 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitX\">\r\n      <summary>Gets the vector (1,0,0).</summary>\r\n      <returns>The vector (1,0,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitY\">\r\n      <summary>Gets the vector (0,1,0).</summary>\r\n      <returns>The vector (0,1,0)..</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitZ\">\r\n      <summary>Gets the vector (0,0,1).</summary>\r\n      <returns>The vector (0,0,1).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.Z\">\r\n      <summary>The Z component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.Zero\">\r\n      <summary>Gets a vector whose 3 elements are equal to zero.</summary>\r\n      <returns>A vector whose three elements are equal to zero (that is, it returns the vector (0,0,0).</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector4\">\r\n      <summary>Represents a vector with four single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector4\"></see> object whose four elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to all four elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Constructs a new <see cref=\"T:System.Numerics.Vector4\"></see> object from the specified <see cref=\"T:System.Numerics.Vector3\"></see> object and a W component.</summary>\r\n      <param name=\"value\">The vector to use for the X, Y, and Z components.</param>\r\n      <param name=\"w\">The W component.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Numerics.Vector2,System.Single,System.Single)\">\r\n      <summary>Creates a   new <see cref=\"T:System.Numerics.Vector4\"></see> object from the specified <see cref=\"T:System.Numerics.Vector2\"></see> object and a Z and a W component.</summary>\r\n      <param name=\"value\">The vector to use for the X and Y components.</param>\r\n      <param name=\"z\">The Z component.</param>\r\n      <param name=\"w\">The W component.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.Y\"></see> field.</param>\r\n      <param name=\"z\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.Z\"></see> field.</param>\r\n      <param name=\"w\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.W\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Abs(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Add(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Clamp(System.Numerics.Vector4,System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Distance(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.DistanceSquared(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Divide(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Divide(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Dot(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Equals(System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Length\">\r\n      <summary>Returns the length of this vector object.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Lerp(System.Numerics.Vector4,System.Numerics.Vector4,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Max(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Min(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Single,System.Numerics.Vector4)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Negate(System.Numerics.Vector4)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Normalize(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"vector\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.One\">\r\n      <summary>Gets a vector whose 4 elements are equal to one.</summary>\r\n      <returns>Returns <see cref=\"System.Numerics.Vector4\"></see>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Addition(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Division(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Division(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Equality(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Inequality(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Single,System.Numerics.Vector4)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Subtraction(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_UnaryNegation(System.Numerics.Vector4)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.SquareRoot(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Subtract(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector4,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a four-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector4,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a four-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"vector\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector3,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a three-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a two-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector2,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a two-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a three-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitW\">\r\n      <summary>Gets the vector (0,0,0,1).</summary>\r\n      <returns>The vector (0,0,0,1).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitX\">\r\n      <summary>Gets the vector (1,0,0,0).</summary>\r\n      <returns>The vector (1,0,0,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitY\">\r\n      <summary>Gets the vector (0,1,0,0).</summary>\r\n      <returns>The vector (0,1,0,0)..</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitZ\">\r\n      <summary>Gets a vector whose 4 elements are equal to zero.</summary>\r\n      <returns>The vector (0,0,1,0).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.W\">\r\n      <summary>The W component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.Z\">\r\n      <summary>The Z component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.Zero\">\r\n      <summary>Gets a vector whose 4 elements are equal to zero.</summary>\r\n      <returns>A vector whose four elements are equal to zero (that is, it returns the vector (0,0,0,0).</returns>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/ref/netstandard2.0/System.Numerics.Vectors.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?><doc>\r\n  <assembly>\r\n    <name>System.Numerics.Vectors</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:System.Numerics.Matrix3x2\">\r\n      <summary>Represents a 3x2 matrix.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a 3x2 matrix from the specified components.</summary>\r\n      <param name=\"m11\">The value to assign to the first element in the first row.</param>\r\n      <param name=\"m12\">The value to assign to the second element in the first row.</param>\r\n      <param name=\"m21\">The value to assign to the first element in the second row.</param>\r\n      <param name=\"m22\">The value to assign to the second element in the second row.</param>\r\n      <param name=\"m31\">The value to assign to the first element in the third row.</param>\r\n      <param name=\"m32\">The value to assign to the second element in the third row.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Add(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateRotation(System.Single)\">\r\n      <summary>Creates a rotation matrix using the given rotation in radians.</summary>\r\n      <param name=\"radians\">The amount of rotation, in radians.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateRotation(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a rotation matrix using the specified rotation in radians and a center point.</summary>\r\n      <param name=\"radians\">The amount of rotation, in radians.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Single)\">\r\n      <summary>Creates a scaling matrix from the specified X and Y components.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix that scales uniformly with the specified scale with an offset from the specified center.</summary>\r\n      <param name=\"scale\">The uniform scale to use.</param>\r\n      <param name=\"centerPoint\">The center offset.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix that is offset by a given center point.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Single)\">\r\n      <summary>Creates a scaling matrix that scales uniformly with the given scale.</summary>\r\n      <param name=\"scale\">The uniform scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateScale(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale with an offset from the specified center point.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <param name=\"centerPoint\">The center offset.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateSkew(System.Single,System.Single)\">\r\n      <summary>Creates a skew matrix from the specified angles in radians.</summary>\r\n      <param name=\"radiansX\">The X angle, in radians.</param>\r\n      <param name=\"radiansY\">The Y angle, in radians.</param>\r\n      <returns>The skew matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateSkew(System.Single,System.Single,System.Numerics.Vector2)\">\r\n      <summary>Creates a skew matrix from the specified angles in radians and a center point.</summary>\r\n      <param name=\"radiansX\">The X angle, in radians.</param>\r\n      <param name=\"radiansY\">The Y angle, in radians.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The skew matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateTranslation(System.Numerics.Vector2)\">\r\n      <summary>Creates a translation matrix from the specified 2-dimensional vector.</summary>\r\n      <param name=\"position\">The translation position.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.CreateTranslation(System.Single,System.Single)\">\r\n      <summary>Creates a translation matrix from the specified X and Y components.</summary>\r\n      <param name=\"xPosition\">The X position.</param>\r\n      <param name=\"yPosition\">The Y position.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Equals(System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether this instance and another 3x2 matrix are equal.</summary>\r\n      <param name=\"other\">The other matrix.</param>\r\n      <returns>true if the two matrices are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.GetDeterminant\">\r\n      <summary>Calculates the determinant for this matrix.</summary>\r\n      <returns>The determinant.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.Identity\">\r\n      <summary>Gets the multiplicative identity matrix.</summary>\r\n      <returns>The multiplicative identify matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Invert(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2@)\">\r\n      <summary>Inverts the specified matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The matrix to invert.</param>\r\n      <param name=\"result\">When this method returns, contains the inverted matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was converted successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.IsIdentity\">\r\n      <summary>Indicates whether the current matrix is the identity matrix.</summary>\r\n      <returns>true if the current matrix is the identity matrix; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Lerp(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Performs a linear interpolation from one matrix to a second matrix based on a value that specifies the weighting of the second matrix.</summary>\r\n      <param name=\"matrix1\">The first matrix.</param>\r\n      <param name=\"matrix2\">The second matrix.</param>\r\n      <param name=\"amount\">The relative weighting of matrix2.</param>\r\n      <returns>The interpolated matrix.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M11\">\r\n      <summary>The first element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M12\">\r\n      <summary>The second element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M21\">\r\n      <summary>The first element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M22\">\r\n      <summary>The second element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M31\">\r\n      <summary>The first element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix3x2.M32\">\r\n      <summary>The second element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Multiply(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Multiply(System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Negate(System.Numerics.Matrix3x2)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Addition(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Equality(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Inequality(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are not equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Multiply(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Multiply(System.Numerics.Matrix3x2,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_Subtraction(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.op_UnaryNegation(System.Numerics.Matrix3x2)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.Subtract(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix3x2.ToString\">\r\n      <summary>Returns a string that represents this matrix.</summary>\r\n      <returns>The string representation of this matrix.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix3x2.Translation\">\r\n      <summary>Gets or sets the translation component of this matrix.</summary>\r\n      <returns>The translation component of the current instance.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Matrix4x4\">\r\n      <summary>Represents a 4x4 matrix.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.#ctor(System.Numerics.Matrix3x2)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Matrix4x4\"></see> object from a specified <see cref=\"T:System.Numerics.Matrix3x2\"></see> object.</summary>\r\n      <param name=\"value\">A 3x2 matrix.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a 4x4 matrix from the specified components.</summary>\r\n      <param name=\"m11\">The value to assign to the first element in the first row.</param>\r\n      <param name=\"m12\">The value to assign to the second element in the first row.</param>\r\n      <param name=\"m13\">The value to assign to the third element in the first row.</param>\r\n      <param name=\"m14\">The value to assign to the fourth element in the first row.</param>\r\n      <param name=\"m21\">The value to assign to the first element in the second row.</param>\r\n      <param name=\"m22\">The value to assign to the second element in the second row.</param>\r\n      <param name=\"m23\">The value to assign to the third element in the second row.</param>\r\n      <param name=\"m24\">The value to assign to the third element in the second row.</param>\r\n      <param name=\"m31\">The value to assign to the first element in the third row.</param>\r\n      <param name=\"m32\">The value to assign to the second element in the third row.</param>\r\n      <param name=\"m33\">The value to assign to the third element in the third row.</param>\r\n      <param name=\"m34\">The value to assign to the fourth element in the third row.</param>\r\n      <param name=\"m41\">The value to assign to the first element in the fourth row.</param>\r\n      <param name=\"m42\">The value to assign to the second element in the fourth row.</param>\r\n      <param name=\"m43\">The value to assign to the third element in the fourth row.</param>\r\n      <param name=\"m44\">The value to assign to the fourth element in the fourth row.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Add(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateBillboard(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a spherical billboard that rotates around a specified object position.</summary>\r\n      <param name=\"objectPosition\">The position of the object that the billboard will rotate around.</param>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"cameraUpVector\">The up vector of the camera.</param>\r\n      <param name=\"cameraForwardVector\">The forward vector of the camera.</param>\r\n      <returns>The created billboard.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateConstrainedBillboard(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a cylindrical billboard that rotates around a specified axis.</summary>\r\n      <param name=\"objectPosition\">The position of the object that the billboard will rotate around.</param>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"rotateAxis\">The axis to rotate the billboard around.</param>\r\n      <param name=\"cameraForwardVector\">The forward vector of the camera.</param>\r\n      <param name=\"objectForwardVector\">The forward vector of the object.</param>\r\n      <returns>The billboard matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromAxisAngle(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a matrix that rotates around an arbitrary vector.</summary>\r\n      <param name=\"axis\">The axis to rotate around.</param>\r\n      <param name=\"angle\">The angle to rotate around axis, in radians.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromQuaternion(System.Numerics.Quaternion)\">\r\n      <summary>Creates a rotation matrix from the specified Quaternion rotation value.</summary>\r\n      <param name=\"quaternion\">The source Quaternion.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateFromYawPitchRoll(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a rotation matrix from the specified yaw, pitch, and roll.</summary>\r\n      <param name=\"yaw\">The angle of rotation, in radians, around the Y axis.</param>\r\n      <param name=\"pitch\">The angle of rotation, in radians, around the X axis.</param>\r\n      <param name=\"roll\">The angle of rotation, in radians, around the Z axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateLookAt(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a view matrix.</summary>\r\n      <param name=\"cameraPosition\">The position of the camera.</param>\r\n      <param name=\"cameraTarget\">The target towards which the camera is pointing.</param>\r\n      <param name=\"cameraUpVector\">The direction that is &amp;quot;up&amp;quot; from the camera&amp;#39;s point of view.</param>\r\n      <returns>The view matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateOrthographic(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates an orthographic perspective matrix from the given view volume dimensions.</summary>\r\n      <param name=\"width\">The width of the view volume.</param>\r\n      <param name=\"height\">The height of the view volume.</param>\r\n      <param name=\"zNearPlane\">The minimum Z-value of the view volume.</param>\r\n      <param name=\"zFarPlane\">The maximum Z-value of the view volume.</param>\r\n      <returns>The orthographic projection matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateOrthographicOffCenter(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a customized orthographic projection matrix.</summary>\r\n      <param name=\"left\">The minimum X-value of the view volume.</param>\r\n      <param name=\"right\">The maximum X-value of the view volume.</param>\r\n      <param name=\"bottom\">The minimum Y-value of the view volume.</param>\r\n      <param name=\"top\">The maximum Y-value of the view volume.</param>\r\n      <param name=\"zNearPlane\">The minimum Z-value of the view volume.</param>\r\n      <param name=\"zFarPlane\">The maximum Z-value of the view volume.</param>\r\n      <returns>The orthographic projection matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspective(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a perspective projection matrix from the given view volume dimensions.</summary>\r\n      <param name=\"width\">The width of the view volume at the near view plane.</param>\r\n      <param name=\"height\">The height of the view volume at the near view plane.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspectiveFieldOfView(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a perspective projection matrix based on a field of view, aspect ratio, and near and far view plane distances.</summary>\r\n      <param name=\"fieldOfView\">The field of view in the y direction, in radians.</param>\r\n      <param name=\"aspectRatio\">The aspect ratio, defined as view space width divided by height.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"fieldOfView\">fieldOfView</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"fieldOfView\">fieldOfView</paramref> is greater than or equal to <see cref=\"System.Math.PI\"></see>.  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreatePerspectiveOffCenter(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a customized perspective projection matrix.</summary>\r\n      <param name=\"left\">The minimum x-value of the view volume at the near view plane.</param>\r\n      <param name=\"right\">The maximum x-value of the view volume at the near view plane.</param>\r\n      <param name=\"bottom\">The minimum y-value of the view volume at the near view plane.</param>\r\n      <param name=\"top\">The maximum y-value of the view volume at the near view plane.</param>\r\n      <param name=\"nearPlaneDistance\">The distance to the near view plane.</param>\r\n      <param name=\"farPlaneDistance\">The distance to the far view plane.</param>\r\n      <returns>The perspective projection matrix.</returns>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref> is less than or equal to zero.  \r\n -or-  \r\n <paramref name=\"nearPlaneDistance\">nearPlaneDistance</paramref> is greater than or equal to <paramref name=\"farPlaneDistance\">farPlaneDistance</paramref>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateReflection(System.Numerics.Plane)\">\r\n      <summary>Creates a matrix that reflects the coordinate system about a specified plane.</summary>\r\n      <param name=\"value\">The plane about which to create a reflection.</param>\r\n      <returns>A new matrix expressing the reflection.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationX(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the X axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the X axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationX(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a matrix for rotating points around the X axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the X axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationY(System.Single,System.Numerics.Vector3)\">\r\n      <summary>The amount, in radians, by which to rotate around the Y axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Y-axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationY(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the Y axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Y-axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationZ(System.Single)\">\r\n      <summary>Creates a matrix for rotating points around the Z axis.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Z-axis.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateRotationZ(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a matrix for rotating points around the Z axis from a center point.</summary>\r\n      <param name=\"radians\">The amount, in radians, by which to rotate around the Z-axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The rotation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix from the specified vector scale.</summary>\r\n      <param name=\"scales\">The scale to use.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single)\">\r\n      <summary>Creates a uniform scaling matrix that scale equally on each axis.</summary>\r\n      <param name=\"scale\">The uniform scaling factor.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix with a center point.</summary>\r\n      <param name=\"scales\">The vector that contains the amount to scale on each axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a uniform scaling matrix that scales equally on each axis with a center point.</summary>\r\n      <param name=\"scale\">The uniform scaling factor.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a scaling matrix from the specified X, Y, and Z components.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"zScale\">The value to scale by on the Z axis.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateScale(System.Single,System.Single,System.Single,System.Numerics.Vector3)\">\r\n      <summary>Creates a scaling matrix that is offset by a given center point.</summary>\r\n      <param name=\"xScale\">The value to scale by on the X axis.</param>\r\n      <param name=\"yScale\">The value to scale by on the Y axis.</param>\r\n      <param name=\"zScale\">The value to scale by on the Z axis.</param>\r\n      <param name=\"centerPoint\">The center point.</param>\r\n      <returns>The scaling matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateShadow(System.Numerics.Vector3,System.Numerics.Plane)\">\r\n      <summary>Creates a matrix that flattens geometry into a specified plane as if casting a shadow from a specified light source.</summary>\r\n      <param name=\"lightDirection\">The direction from which the light that will cast the shadow is coming.</param>\r\n      <param name=\"plane\">The plane onto which the new matrix should flatten geometry so as to cast a shadow.</param>\r\n      <returns>A new matrix that can be used to flatten geometry onto the specified plane from the specified direction.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateTranslation(System.Numerics.Vector3)\">\r\n      <summary>Creates a translation matrix from the specified 3-dimensional vector.</summary>\r\n      <param name=\"position\">The amount to translate in each axis.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateTranslation(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a translation matrix from the specified X, Y, and Z components.</summary>\r\n      <param name=\"xPosition\">The amount to translate on the X axis.</param>\r\n      <param name=\"yPosition\">The amount to translate on the Y axis.</param>\r\n      <param name=\"zPosition\">The amount to translate on the Z axis.</param>\r\n      <returns>The translation matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.CreateWorld(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a world matrix with the specified parameters.</summary>\r\n      <param name=\"position\">The position of the object.</param>\r\n      <param name=\"forward\">The forward direction of the object.</param>\r\n      <param name=\"up\">The upward direction of the object. Its value is usually [0, 1, 0].</param>\r\n      <returns>The world matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Decompose(System.Numerics.Matrix4x4,System.Numerics.Vector3@,System.Numerics.Quaternion@,System.Numerics.Vector3@)\">\r\n      <summary>Attempts to extract the scale, translation, and rotation components from the given scale, rotation, or translation matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The source matrix.</param>\r\n      <param name=\"scale\">When this method returns, contains the scaling component of the transformation matrix if the operation succeeded.</param>\r\n      <param name=\"rotation\">When this method returns, contains the rotation component of the transformation matrix if the operation succeeded.</param>\r\n      <param name=\"translation\">When the method returns, contains the translation component of the transformation matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was decomposed successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Equals(System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether this instance and another 4x4 matrix are equal.</summary>\r\n      <param name=\"other\">The other matrix.</param>\r\n      <returns>true if the two matrices are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.GetDeterminant\">\r\n      <summary>Calculates the determinant of the current 4x4 matrix.</summary>\r\n      <returns>The determinant.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.Identity\">\r\n      <summary>Gets the multiplicative identity matrix.</summary>\r\n      <returns>Gets the multiplicative identity matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Invert(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4@)\">\r\n      <summary>Inverts the specified matrix. The return value indicates whether the operation succeeded.</summary>\r\n      <param name=\"matrix\">The matrix to invert.</param>\r\n      <param name=\"result\">When this method returns, contains the inverted matrix if the operation succeeded.</param>\r\n      <returns>true if <paramref name=\"matrix\">matrix</paramref> was converted successfully; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.IsIdentity\">\r\n      <summary>Indicates whether the current matrix is the identity matrix.</summary>\r\n      <returns>true if the current matrix is the identity matrix; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Lerp(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Performs a linear interpolation from one matrix to a second matrix based on a value that specifies the weighting of the second matrix.</summary>\r\n      <param name=\"matrix1\">The first matrix.</param>\r\n      <param name=\"matrix2\">The second matrix.</param>\r\n      <param name=\"amount\">The relative weighting of matrix2.</param>\r\n      <returns>The interpolated matrix.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M11\">\r\n      <summary>The first element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M12\">\r\n      <summary>The second element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M13\">\r\n      <summary>The third element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M14\">\r\n      <summary>The fourth element of the first row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M21\">\r\n      <summary>The first element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M22\">\r\n      <summary>The second element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M23\">\r\n      <summary>The third element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M24\">\r\n      <summary>The fourth element of the second row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M31\">\r\n      <summary>The first element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M32\">\r\n      <summary>The second element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M33\">\r\n      <summary>The third element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M34\">\r\n      <summary>The fourth element of the third row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M41\">\r\n      <summary>The first element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M42\">\r\n      <summary>The second element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M43\">\r\n      <summary>The third element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Matrix4x4.M44\">\r\n      <summary>The fourth element of the fourth row.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Multiply(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Multiply(System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Negate(System.Numerics.Matrix4x4)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Addition(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix that contains the summed values.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Equality(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to care</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Inequality(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns a value that indicates whether the specified matrices are not equal.</summary>\r\n      <param name=\"value1\">The first matrix to compare.</param>\r\n      <param name=\"value2\">The second matrix to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Multiply(System.Numerics.Matrix4x4,System.Single)\">\r\n      <summary>Returns the matrix that results from scaling all the elements of a specified matrix by a scalar factor.</summary>\r\n      <param name=\"value1\">The matrix to scale.</param>\r\n      <param name=\"value2\">The scaling value to use.</param>\r\n      <returns>The scaled matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Multiply(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Returns the matrix that results from multiplying two matrices together.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The product matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_Subtraction(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.op_UnaryNegation(System.Numerics.Matrix4x4)\">\r\n      <summary>Negates the specified matrix by multiplying all its values by -1.</summary>\r\n      <param name=\"value\">The matrix to negate.</param>\r\n      <returns>The negated matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Subtract(System.Numerics.Matrix4x4,System.Numerics.Matrix4x4)\">\r\n      <summary>Subtracts each element in a second matrix from its corresponding element in a first matrix.</summary>\r\n      <param name=\"value1\">The first matrix.</param>\r\n      <param name=\"value2\">The second matrix.</param>\r\n      <returns>The matrix containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.ToString\">\r\n      <summary>Returns a string that represents this matrix.</summary>\r\n      <returns>The string representation of this matrix.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Transform(System.Numerics.Matrix4x4,System.Numerics.Quaternion)\">\r\n      <summary>Transforms the specified matrix by applying the specified Quaternion rotation.</summary>\r\n      <param name=\"value\">The matrix to transform.</param>\r\n      <param name=\"rotation\">The rotation t apply.</param>\r\n      <returns>The transformed matrix.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Matrix4x4.Translation\">\r\n      <summary>Gets or sets the translation component of this matrix.</summary>\r\n      <returns>The translation component of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Matrix4x4.Transpose(System.Numerics.Matrix4x4)\">\r\n      <summary>Transposes the rows and columns of a matrix.</summary>\r\n      <param name=\"matrix\">The matrix to transpose.</param>\r\n      <returns>The transposed matrix.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Plane\">\r\n      <summary>Represents a three-dimensional plane.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Numerics.Vector4)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from a specified four-dimensional vector.</summary>\r\n      <param name=\"value\">A vector whose first three elements describe the normal vector, and whose <see cref=\"F:System.Numerics.Vector4.W\"></see> defines the distance along that normal from the origin.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from a specified normal and the distance along the normal from the origin.</summary>\r\n      <param name=\"normal\">The plane&amp;#39;s normal vector.</param>\r\n      <param name=\"d\">The plane&amp;#39;s distance from the origin along its normal vector.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object from the X, Y, and Z components of its normal, and its distance from the origin on that normal.</summary>\r\n      <param name=\"x\">The X component of the normal.</param>\r\n      <param name=\"y\">The Y component of the normal.</param>\r\n      <param name=\"z\">The Z component of the normal.</param>\r\n      <param name=\"d\">The distance of the plane along its normal from the origin.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.CreateFromVertices(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Creates a <see cref=\"T:System.Numerics.Plane\"></see> object that contains three specified points.</summary>\r\n      <param name=\"point1\">The first point defining the plane.</param>\r\n      <param name=\"point2\">The second point defining the plane.</param>\r\n      <param name=\"point3\">The third point defining the plane.</param>\r\n      <returns>The plane containing the three points.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Plane.D\">\r\n      <summary>The distance of the plane along its normal from the origin.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Dot(System.Numerics.Plane,System.Numerics.Vector4)\">\r\n      <summary>Calculates the dot product of a plane and a 4-dimensional vector.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The four-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.DotCoordinate(System.Numerics.Plane,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of a specified three-dimensional vector and the normal vector of this plane plus the distance (<see cref=\"F:System.Numerics.Plane.D\"></see>) value of the plane.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The 3-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.DotNormal(System.Numerics.Plane,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of a specified three-dimensional vector and the <see cref=\"F:System.Numerics.Plane.Normal\"></see> vector of this plane.</summary>\r\n      <param name=\"plane\">The plane.</param>\r\n      <param name=\"value\">The three-dimensional vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Equals(System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether this instance and another plane object are equal.</summary>\r\n      <param name=\"other\">The other plane.</param>\r\n      <returns>true if the two planes are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Plane.Normal\">\r\n      <summary>The normal vector of the plane.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Normalize(System.Numerics.Plane)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Plane\"></see> object whose normal vector is the source plane&amp;#39;s normal vector normalized.</summary>\r\n      <param name=\"value\">The source plane.</param>\r\n      <returns>The normalized plane.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.op_Equality(System.Numerics.Plane,System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether two planes are equal.</summary>\r\n      <param name=\"value1\">The first plane to compare.</param>\r\n      <param name=\"value2\">The second plane to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.op_Inequality(System.Numerics.Plane,System.Numerics.Plane)\">\r\n      <summary>Returns a value that indicates whether two planes are not equal.</summary>\r\n      <param name=\"value1\">The first plane to compare.</param>\r\n      <param name=\"value2\">The second plane to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.ToString\">\r\n      <summary>Returns the string representation of this plane object.</summary>\r\n      <returns>A string that represents this <see cref=\"System.Numerics.Plane\"></see> object.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Transform(System.Numerics.Plane,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a normalized plane by a 4x4 matrix.</summary>\r\n      <param name=\"plane\">The normalized plane to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix to apply to plane.</param>\r\n      <returns>The transformed plane.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Plane.Transform(System.Numerics.Plane,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a normalized plane by a Quaternion rotation.</summary>\r\n      <param name=\"plane\">The normalized plane to transform.</param>\r\n      <param name=\"rotation\">The Quaternion rotation to apply to the plane.</param>\r\n      <returns>A new plane that results from applying the Quaternion rotation.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Quaternion\">\r\n      <summary>Represents a vector that is used to encode three-dimensional physical rotations.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a quaternion from the specified vector and rotation parts.</summary>\r\n      <param name=\"vectorPart\">The vector part of the quaternion.</param>\r\n      <param name=\"scalarPart\">The rotation part of the quaternion.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Constructs a quaternion from the specified components.</summary>\r\n      <param name=\"x\">The value to assign to the X component of the quaternion.</param>\r\n      <param name=\"y\">The value to assign to the Y component of the quaternion.</param>\r\n      <param name=\"z\">The value to assign to the Z component of the quaternion.</param>\r\n      <param name=\"w\">The value to assign to the W component of the quaternion.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Add(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Adds each element in one quaternion with its corresponding element in a second quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Concatenate(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Concatenates two quaternions.</summary>\r\n      <param name=\"value1\">The first quaternion rotation in the series.</param>\r\n      <param name=\"value2\">The second quaternion rotation in the series.</param>\r\n      <returns>A new quaternion representing the concatenation of the <paramref name=\"value1\">value1</paramref> rotation followed by the <paramref name=\"value2\">value2</paramref> rotation.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Conjugate(System.Numerics.Quaternion)\">\r\n      <summary>Returns the conjugate of a specified quaternion.</summary>\r\n      <param name=\"value\">The quaternion.</param>\r\n      <returns>A new quaternion that is the conjugate of value.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromAxisAngle(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Creates a quaternion from a vector and an angle to rotate about the vector.</summary>\r\n      <param name=\"axis\">The vector to rotate around.</param>\r\n      <param name=\"angle\">The angle, in radians, to rotate around the vector.</param>\r\n      <returns>The newly created quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromRotationMatrix(System.Numerics.Matrix4x4)\">\r\n      <summary>Creates a quaternion from the specified rotation matrix.</summary>\r\n      <param name=\"matrix\">The rotation matrix.</param>\r\n      <returns>The newly created quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.CreateFromYawPitchRoll(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a new quaternion from the given yaw, pitch, and roll.</summary>\r\n      <param name=\"yaw\">The yaw angle, in radians, around the Y axis.</param>\r\n      <param name=\"pitch\">The pitch angle, in radians, around the X axis.</param>\r\n      <param name=\"roll\">The roll angle, in radians, around the Z axis.</param>\r\n      <returns>The resulting quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Divide(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Divides one quaternion by a second quaternion.</summary>\r\n      <param name=\"value1\">The dividend.</param>\r\n      <param name=\"value2\">The divisor.</param>\r\n      <returns>The quaternion that results from dividing <paramref name=\"value1\">value1</paramref> by <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Dot(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Calculates the dot product of two quaternions.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Equals(System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether this instance and another quaternion are equal.</summary>\r\n      <param name=\"other\">The other quaternion.</param>\r\n      <returns>true if the two quaternions are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Quaternion.Identity\">\r\n      <summary>Gets a quaternion that represents no rotation.</summary>\r\n      <returns>A quaternion whose values are (0, 0, 0, 1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Inverse(System.Numerics.Quaternion)\">\r\n      <summary>Returns the inverse of a quaternion.</summary>\r\n      <param name=\"value\">The quaternion.</param>\r\n      <returns>The inverted quaternion.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Quaternion.IsIdentity\">\r\n      <summary>Gets a value that indicates whether the current instance is the identity quaternion.</summary>\r\n      <returns>true if the current instance is the identity quaternion; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Length\">\r\n      <summary>Calculates the length of the quaternion.</summary>\r\n      <returns>The computed length of the quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.LengthSquared\">\r\n      <summary>Calculates the squared length of the quaternion.</summary>\r\n      <returns>The length squared of the quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Lerp(System.Numerics.Quaternion,System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Performs a linear interpolation between two quaternions based on a value that specifies the weighting of the second quaternion.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <param name=\"amount\">The relative weight of quaternion2 in the interpolation.</param>\r\n      <returns>The interpolated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Multiply(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns the quaternion that results from multiplying two quaternions together.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The product quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Multiply(System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Returns the quaternion that results from scaling all the components of a specified quaternion by a scalar factor.</summary>\r\n      <param name=\"value1\">The source quaternion.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The scaled quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Negate(System.Numerics.Quaternion)\">\r\n      <summary>Reverses the sign of each component of the quaternion.</summary>\r\n      <param name=\"value\">The quaternion to negate.</param>\r\n      <returns>The negated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Normalize(System.Numerics.Quaternion)\">\r\n      <summary>Divides each component of a specified <see cref=\"T:System.Numerics.Quaternion\"></see> by its length.</summary>\r\n      <param name=\"value\">The quaternion to normalize.</param>\r\n      <returns>The normalized quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Addition(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Adds each element in one quaternion with its corresponding element in a second quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion that contains the summed values of <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Division(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Divides one quaternion by a second quaternion.</summary>\r\n      <param name=\"value1\">The dividend.</param>\r\n      <param name=\"value2\">The divisor.</param>\r\n      <returns>The quaternion that results from dividing <paramref name=\"value1\">value1</paramref> by <paramref name=\"value2\">value2</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Equality(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether two quaternions are equal.</summary>\r\n      <param name=\"value1\">The first quaternion to compare.</param>\r\n      <param name=\"value2\">The second quaternion to compare.</param>\r\n      <returns>true if the two quaternions are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Inequality(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns a value that indicates whether two quaternions are not equal.</summary>\r\n      <param name=\"value1\">The first quaternion to compare.</param>\r\n      <param name=\"value2\">The second quaternion to compare.</param>\r\n      <returns>true if <paramref name=\"value1\">value1</paramref> and <paramref name=\"value2\">value2</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Multiply(System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Returns the quaternion that results from scaling all the components of a specified quaternion by a scalar factor.</summary>\r\n      <param name=\"value1\">The source quaternion.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The scaled quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Multiply(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Returns the quaternion that results from multiplying two quaternions together.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The product quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_Subtraction(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Subtracts each element in a second quaternion from its corresponding element in a first quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.op_UnaryNegation(System.Numerics.Quaternion)\">\r\n      <summary>Reverses the sign of each component of the quaternion.</summary>\r\n      <param name=\"value\">The quaternion to negate.</param>\r\n      <returns>The negated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Slerp(System.Numerics.Quaternion,System.Numerics.Quaternion,System.Single)\">\r\n      <summary>Interpolates between two quaternions, using spherical linear interpolation.</summary>\r\n      <param name=\"quaternion1\">The first quaternion.</param>\r\n      <param name=\"quaternion2\">The second quaternion.</param>\r\n      <param name=\"amount\">The relative weight of the second quaternion in the interpolation.</param>\r\n      <returns>The interpolated quaternion.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.Subtract(System.Numerics.Quaternion,System.Numerics.Quaternion)\">\r\n      <summary>Subtracts each element in a second quaternion from its corresponding element in a first quaternion.</summary>\r\n      <param name=\"value1\">The first quaternion.</param>\r\n      <param name=\"value2\">The second quaternion.</param>\r\n      <returns>The quaternion containing the values that result from subtracting each element in <paramref name=\"value2\">value2</paramref> from its corresponding element in <paramref name=\"value1\">value1</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Quaternion.ToString\">\r\n      <summary>Returns a string that represents this quaternion.</summary>\r\n      <returns>The string representation of this quaternion.</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.W\">\r\n      <summary>The rotation component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.X\">\r\n      <summary>The X value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.Y\">\r\n      <summary>The Y value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Quaternion.Z\">\r\n      <summary>The Z value of the vector component of the quaternion.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector`1\">\r\n      <summary>Represents a single vector of a specified numeric type that is suitable for low-level optimization of parallel algorithms.</summary>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0)\">\r\n      <summary>Creates a vector whose components are of a specified type.</summary>\r\n      <param name=\"value\">The numeric type that defines the type of the components in the vector.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0[])\">\r\n      <summary>Creates a vector from a specified array.</summary>\r\n      <param name=\"values\">A numeric array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"values\">values</paramref> is null.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.#ctor(`0[],System.Int32)\">\r\n      <summary>Creates a vector from a specified array starting at a specified index position.</summary>\r\n      <param name=\"values\">A numeric array.</param>\r\n      <param name=\"index\">The starting index position from which to create the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"values\">values</paramref> is null.</exception>\r\n      <exception cref=\"T:System.IndexOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n The length of <paramref name=\"values\">values</paramref> minus <paramref name=\"index\">index</paramref> is less than <see cref=\"System.Numerics.Vector`1.Count\"></see>.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.CopyTo(`0[])\">\r\n      <summary>Copies the vector instance to a specified destination array.</summary>\r\n      <param name=\"destination\">The array to receive a copy of the vector values.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"destination\">destination</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current vector is greater than the number of elements available in the <paramref name=\"destination\">destination</paramref> array.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.CopyTo(`0[],System.Int32)\">\r\n      <summary>Copies the vector instance to a specified destination array starting at a specified index position.</summary>\r\n      <param name=\"destination\">The array to receive a copy of the vector values.</param>\r\n      <param name=\"startIndex\">The starting index in destination at which to begin the copy operation.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"destination\">destination</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than the number of elements available from <paramref name=\"startIndex\">startIndex</paramref> to the end of the <paramref name=\"destination\">destination</paramref> array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero or greater than the last index in <paramref name=\"destination\">destination</paramref>.</exception>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Count\">\r\n      <summary>Returns the number of elements stored in the vector.</summary>\r\n      <returns>The number of elements stored in the vector.</returns>\r\n      <exception cref=\"T:System.NotSupportedException\">Access to the property getter via reflection is not supported.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.Equals(System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether this instance is equal to a specified vector.</summary>\r\n      <param name=\"other\">The vector to compare with this instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"other\">other</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance is equal to a specified object.</summary>\r\n      <param name=\"obj\">The object to compare with this instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. The method returns false if <paramref name=\"obj\">obj</paramref> is null, or if <paramref name=\"obj\">obj</paramref> is a vector of a different type than the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Item(System.Int32)\">\r\n      <summary>Gets the element at a specified index.</summary>\r\n      <param name=\"index\">The index of the element to return.</param>\r\n      <returns>The element at index <paramref name=\"index\">index</paramref>.</returns>\r\n      <exception cref=\"T:System.IndexOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to <see cref=\"System.Numerics.Vector`1.Count\"></see>.</exception>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.One\">\r\n      <summary>Returns a vector containing all ones.</summary>\r\n      <returns>A vector containing all ones.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Addition(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_BitwiseAnd(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise And operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise And of <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_BitwiseOr(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise Or operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise Or of the elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Division(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Equality(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_ExclusiveOr(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector by performing a bitwise XOr operation on each of the elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from the bitwise XOr of the elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt64}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt64\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt32}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt32\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.UInt16}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.UInt16\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Single}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Single\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.SByte}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.SByte\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Double}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Double\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int32}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int32\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int16}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int16\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Byte}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Byte\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector{T})~System.Numerics.Vector{System.Int64}\">\r\n      <summary>Reinterprets the bits of the specified vector into a vector of type <see cref=\"T:System.Int64\"></see>.</summary>\r\n      <param name=\"value\">The vector to reinterpret.</param>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Inequality(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Returns a value that indicates whether any single pair of elements in the specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if any element pairs in left and right are equal. false if no element pairs are equal.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(System.Numerics.Vector{`0},`0)\">\r\n      <summary>Multiplies a vector by a specified scalar value.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <param name=\"factor\">A scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Multiply(`0,System.Numerics.Vector{`0})\">\r\n      <summary>Multiplies a vector by the given scalar.</summary>\r\n      <param name=\"factor\">The scalar value.</param>\r\n      <param name=\"value\">The source vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_OnesComplement(System.Numerics.Vector{`0})\">\r\n      <summary>Returns a new vector whose elements are obtained by taking the one&amp;#39;s complement of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <returns>The one&amp;#39;s complement vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_Subtraction(System.Numerics.Vector{`0},System.Numerics.Vector{`0})\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.op_UnaryNegation(System.Numerics.Vector{`0})\">\r\n      <summary>Negates a given vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of this vector using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString\">\r\n      <summary>Returns the string representation of this vector using default formatting.</summary>\r\n      <returns>The string representation of this vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector`1.ToString(System.String)\">\r\n      <summary>Returns the string representation of this vector using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector`1.Zero\">\r\n      <summary>Returns a vector containing all zeroes.</summary>\r\n      <returns>A vector containing all zeroes.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector\">\r\n      <summary>Provides a collection of static convenience methods for creating, manipulating, combining, and converting generic vectors.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Abs``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the absolute values of the given vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Add``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the sum of each pair of elements from two given vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AndNot``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise And Not operation on each pair of corresponding elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorByte``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned bytes.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorDouble``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a double-precision floating-point vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt16``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of 16-bit integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt32``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorInt64``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of long integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorSByte``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of signed bytes.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorSingle``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a single-precision floating-point vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt16``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned 16-bit integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt32``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.AsVectorUInt64``1(System.Numerics.Vector{``0})\">\r\n      <summary>Reinterprets the bits of a specified vector into those of a vector of unsigned long integers.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The reinterpreted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.BitwiseAnd``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise And operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.BitwiseOr``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise Or operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Creates a new single-precision vector with elements selected between two specified single-precision source vectors based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Creates a new double-precision vector with elements selected between two specified double-precision source vectors based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConditionalSelect``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Creates a new vector of a specified type with elements selected between two specified source vectors of the same type based on an integral mask vector.</summary>\r\n      <param name=\"condition\">The integral mask vector used to drive selection.</param>\r\n      <param name=\"left\">The first source vector.</param>\r\n      <param name=\"right\">The second source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The new vector with elements selected based on the mask.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToDouble(System.Numerics.Vector{System.Int64})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToDouble(System.Numerics.Vector{System.UInt64})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToInt32(System.Numerics.Vector{System.Single})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToInt64(System.Numerics.Vector{System.Double})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToSingle(System.Numerics.Vector{System.Int32})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToSingle(System.Numerics.Vector{System.UInt32})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToUInt32(System.Numerics.Vector{System.Single})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.ConvertToUInt64(System.Numerics.Vector{System.Double})\">\r\n      <param name=\"value\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Divide``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the result of dividing the first vector&amp;#39;s elements by the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The divided vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Dot``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified double-precision vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified integral vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in two specified long integer vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in two specified single-precision vectors are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Equals``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector of a specified type whose elements signal whether the elements in two specified vectors of the same type are equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.EqualsAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether each pair of elements in the given vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.EqualsAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any single pair of elements in the given vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element pair in <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> is equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are greater than their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are greater than their corresponding elements in a second single-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThan``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than their corresponding elements in the second vector of the same time.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are greater than the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> are greater than the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is greater than the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is greater than the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one vector are greater than or equal to their corresponding elements in the single-precision floating-point second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are greater than or equal to their corresponding elements in the second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are greater than or equal to their corresponding elements in the second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one vector are greater than or equal to their corresponding elements in the second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqual``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector of a specified type are greater than or equal to their corresponding elements in the second vector of the same type.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqualAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are greater than or equal to all the corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all elements in <paramref name=\"left\">left</paramref> are greater than or equal to the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.GreaterThanOrEqualAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is greater than or equal to the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is greater than or equal to the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector.IsHardwareAccelerated\">\r\n      <summary>Gets a value that indicates whether vector operations are subject to hardware acceleration through JIT intrinsic support.</summary>\r\n      <returns>true if vector operations are subject to hardware acceleration; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are less than their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are less than their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are less than their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision vector are less than their corresponding elements in a second single-precision vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThan``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector of a specified type whose elements signal whether the elements in one vector are less than their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all of the elements in the first vector are less than their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all of the elements in <paramref name=\"left\">left</paramref> are less than the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is less than the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is less than the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one double-precision floating-point vector are less than or equal to their corresponding elements in a second double-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one integral vector are less than or equal to their corresponding elements in a second integral vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <summary>Returns a new long integer vector whose elements signal whether the elements in one long integer vector are less or equal to their corresponding elements in a second long integer vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting long integer vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Single})\">\r\n      <summary>Returns a new integral vector whose elements signal whether the elements in one single-precision floating-point vector are less than or equal to their corresponding elements in a second single-precision floating-point vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>The resulting integral vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqual``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements signal whether the elements in one vector are less than or equal to their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqualAll``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether all elements in the first vector are less than or equal to their corresponding elements in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if all of the elements in <paramref name=\"left\">left</paramref> are less than or equal to the corresponding elements in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.LessThanOrEqualAny``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a value that indicates whether any element in the first vector is less than or equal to the corresponding element in the second vector.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>true if any element in <paramref name=\"left\">left</paramref> is less than or equal to the corresponding element in <paramref name=\"right\">right</paramref>; otherwise,  false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Max``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the maximum of each pair of elements in the two given vectors.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The maximum vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Min``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the minimum of each pair of elements in the two given vectors.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The minimum vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(``0,System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are a scalar value multiplied by each of the values of a specified vector.</summary>\r\n      <param name=\"left\">The scalar value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the product of each pair of elements in two specified vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Multiply``1(System.Numerics.Vector{``0},``0)\">\r\n      <summary>Returns a new vector whose values are the values of a specified vector each multiplied by a scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Double},System.Numerics.Vector{System.Double})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int16},System.Numerics.Vector{System.Int16})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int32})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.Int64},System.Numerics.Vector{System.Int64})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt16},System.Numerics.Vector{System.UInt16})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt32},System.Numerics.Vector{System.UInt32})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Narrow(System.Numerics.Vector{System.UInt64},System.Numerics.Vector{System.UInt64})\">\r\n      <param name=\"source1\"></param>\r\n      <param name=\"source2\"></param>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Negate``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the negation of the corresponding element in the specified vector.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.OnesComplement``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are obtained by taking the one&amp;#39;s complement of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.SquareRoot``1(System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose elements are the square roots of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">The source vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Subtract``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector whose values are the difference between the elements in the second vector and their corresponding elements in the first vector.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.UInt16},System.Numerics.Vector{System.UInt32}@,System.Numerics.Vector{System.UInt32}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Single},System.Numerics.Vector{System.Double}@,System.Numerics.Vector{System.Double}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.SByte},System.Numerics.Vector{System.Int16}@,System.Numerics.Vector{System.Int16}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.UInt32},System.Numerics.Vector{System.UInt64}@,System.Numerics.Vector{System.UInt64}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Int16},System.Numerics.Vector{System.Int32}@,System.Numerics.Vector{System.Int32}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Byte},System.Numerics.Vector{System.UInt16}@,System.Numerics.Vector{System.UInt16}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Widen(System.Numerics.Vector{System.Int32},System.Numerics.Vector{System.Int64}@,System.Numerics.Vector{System.Int64}@)\">\r\n      <param name=\"source\"></param>\r\n      <param name=\"dest1\"></param>\r\n      <param name=\"dest2\"></param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector.Xor``1(System.Numerics.Vector{``0},System.Numerics.Vector{``0})\">\r\n      <summary>Returns a new vector by performing a bitwise exclusive Or (XOr) operation on each pair of elements in two vectors.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <typeparam name=\"T\">The vector type. T can be any primitive numeric type.</typeparam>\r\n      <returns>The resulting vector.</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector2\">\r\n      <summary>Represents a vector with two single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector2\"></see> object whose two elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to both elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.#ctor(System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector2.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector2.Y\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Abs(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Add(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Clamp(System.Numerics.Vector2,System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Distance(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.DistanceSquared(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Divide(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Divide(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Dot(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Equals(System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Length\">\r\n      <summary>Returns the length of the vector.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Lerp(System.Numerics.Vector2,System.Numerics.Vector2,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Max(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Min(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Multiply(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Negate(System.Numerics.Vector2)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Normalize(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"value\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.One\">\r\n      <summary>Gets a vector whose 2 elements are equal to one.</summary>\r\n      <returns>A vector whose two elements are equal to one (that is, it returns the vector (1,1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Addition(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Division(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Division(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Equality(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Inequality(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Multiply(System.Single,System.Numerics.Vector2)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_Subtraction(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.op_UnaryNegation(System.Numerics.Vector2)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Reflect(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Returns the reflection of a vector off a surface that has the specified normal.</summary>\r\n      <param name=\"vector\">The source vector.</param>\r\n      <param name=\"normal\">The normal of the surface being reflected off.</param>\r\n      <returns>The reflected vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.SquareRoot(System.Numerics.Vector2)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Subtract(System.Numerics.Vector2,System.Numerics.Vector2)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Matrix3x2)\">\r\n      <summary>Transforms a vector by a specified 3x2 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.Transform(System.Numerics.Vector2,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.TransformNormal(System.Numerics.Vector2,System.Numerics.Matrix3x2)\">\r\n      <summary>Transforms a vector normal by the given 3x2 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector2.TransformNormal(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector normal by the given 4x4 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.UnitX\">\r\n      <summary>Gets the vector (1,0).</summary>\r\n      <returns>The vector (1,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.UnitY\">\r\n      <summary>Gets the vector (0,1).</summary>\r\n      <returns>The vector (0,1).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector2.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector2.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector2.Zero\">\r\n      <summary>Returns a vector whose 2 elements are equal to zero.</summary>\r\n      <returns>A vector whose two elements are equal to zero (that is, it returns the vector (0,0).</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector3\">\r\n      <summary>Represents a vector with three  single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector3\"></see> object whose three elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to all three elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Numerics.Vector2,System.Single)\">\r\n      <summary>Creates a   new <see cref=\"T:System.Numerics.Vector3\"></see> object from the specified <see cref=\"T:System.Numerics.Vector2\"></see> object and the specified value.</summary>\r\n      <param name=\"value\">The vector with two elements.</param>\r\n      <param name=\"z\">The additional value to assign to the <see cref=\"F:System.Numerics.Vector3.Z\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.#ctor(System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.Y\"></see> field.</param>\r\n      <param name=\"z\">The value to assign to the <see cref=\"F:System.Numerics.Vector3.Z\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Abs(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Add(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Clamp(System.Numerics.Vector3,System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Cross(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Computes the cross product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The cross product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Distance(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.DistanceSquared(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Divide(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Divide(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Dot(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Equals(System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Length\">\r\n      <summary>Returns the length of this vector object.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Lerp(System.Numerics.Vector3,System.Numerics.Vector3,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Max(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Min(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Multiply(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Negate(System.Numerics.Vector3)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Normalize(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"value\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.One\">\r\n      <summary>Gets a vector whose 3 elements are equal to one.</summary>\r\n      <returns>A vector whose three elements are equal to one (that is, it returns the vector (1,1,1).</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Addition(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Division(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Division(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Equality(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Inequality(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Multiply(System.Single,System.Numerics.Vector3)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_Subtraction(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.op_UnaryNegation(System.Numerics.Vector3)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Reflect(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Returns the reflection of a vector off a surface that has the specified normal.</summary>\r\n      <param name=\"vector\">The source vector.</param>\r\n      <param name=\"normal\">The normal of the surface being reflected off.</param>\r\n      <returns>The reflected vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.SquareRoot(System.Numerics.Vector3)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Subtract(System.Numerics.Vector3,System.Numerics.Vector3)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Transform(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.Transform(System.Numerics.Vector3,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector3.TransformNormal(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a vector normal by the given 4x4 matrix.</summary>\r\n      <param name=\"normal\">The source vector.</param>\r\n      <param name=\"matrix\">The matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitX\">\r\n      <summary>Gets the vector (1,0,0).</summary>\r\n      <returns>The vector (1,0,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitY\">\r\n      <summary>Gets the vector (0,1,0).</summary>\r\n      <returns>The vector (0,1,0)..</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.UnitZ\">\r\n      <summary>Gets the vector (0,0,1).</summary>\r\n      <returns>The vector (0,0,1).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector3.Z\">\r\n      <summary>The Z component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector3.Zero\">\r\n      <summary>Gets a vector whose 3 elements are equal to zero.</summary>\r\n      <returns>A vector whose three elements are equal to zero (that is, it returns the vector (0,0,0).</returns>\r\n    </member>\r\n    <member name=\"T:System.Numerics.Vector4\">\r\n      <summary>Represents a vector with four single-precision floating-point values.</summary>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Single)\">\r\n      <summary>Creates a new <see cref=\"T:System.Numerics.Vector4\"></see> object whose four elements have the same value.</summary>\r\n      <param name=\"value\">The value to assign to all four elements.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Numerics.Vector3,System.Single)\">\r\n      <summary>Constructs a new <see cref=\"T:System.Numerics.Vector4\"></see> object from the specified <see cref=\"T:System.Numerics.Vector3\"></see> object and a W component.</summary>\r\n      <param name=\"value\">The vector to use for the X, Y, and Z components.</param>\r\n      <param name=\"w\">The W component.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Numerics.Vector2,System.Single,System.Single)\">\r\n      <summary>Creates a   new <see cref=\"T:System.Numerics.Vector4\"></see> object from the specified <see cref=\"T:System.Numerics.Vector2\"></see> object and a Z and a W component.</summary>\r\n      <param name=\"value\">The vector to use for the X and Y components.</param>\r\n      <param name=\"z\">The Z component.</param>\r\n      <param name=\"w\">The W component.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.#ctor(System.Single,System.Single,System.Single,System.Single)\">\r\n      <summary>Creates a vector whose elements have the specified values.</summary>\r\n      <param name=\"x\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.X\"></see> field.</param>\r\n      <param name=\"y\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.Y\"></see> field.</param>\r\n      <param name=\"z\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.Z\"></see> field.</param>\r\n      <param name=\"w\">The value to assign to the <see cref=\"F:System.Numerics.Vector4.W\"></see> field.</param>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Abs(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the absolute values of each of the specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The absolute value vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Add(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Clamp(System.Numerics.Vector4,System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Restricts a vector between a minimum and a maximum value.</summary>\r\n      <param name=\"value1\">The vector to restrict.</param>\r\n      <param name=\"min\">The minimum value.</param>\r\n      <param name=\"max\">The maximum value.</param>\r\n      <returns>The restricted vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.CopyTo(System.Single[])\">\r\n      <summary>Copies the elements of the vector to a specified array.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.CopyTo(System.Single[],System.Int32)\">\r\n      <summary>Copies the elements of the vector to a specified array starting at a specified index position.</summary>\r\n      <param name=\"array\">The destination array.</param>\r\n      <param name=\"index\">The index at which to copy the first element of the vector.</param>\r\n      <exception cref=\"T:System.ArgumentNullException\"><paramref name=\"array\">array</paramref> is null.</exception>\r\n      <exception cref=\"T:System.ArgumentException\">The number of elements in the current instance is greater than in the array.</exception>\r\n      <exception cref=\"T:System.ArgumentOutOfRangeException\"><paramref name=\"index\">index</paramref> is less than zero.  \r\n -or-  \r\n <paramref name=\"index\">index</paramref> is greater than or equal to the array length.</exception>\r\n      <exception cref=\"T:System.RankException\"><paramref name=\"array\">array</paramref> is multidimensional.</exception>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Distance(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Computes the Euclidean distance between the two given points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.DistanceSquared(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns the Euclidean distance squared between two specified points.</summary>\r\n      <param name=\"value1\">The first point.</param>\r\n      <param name=\"value2\">The second point.</param>\r\n      <returns>The distance squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Divide(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector resulting from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Divide(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"divisor\">The scalar value.</param>\r\n      <returns>The vector that results from the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Dot(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns the dot product of two vectors.</summary>\r\n      <param name=\"vector1\">The first vector.</param>\r\n      <param name=\"vector2\">The second vector.</param>\r\n      <returns>The dot product.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Equals(System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether this instance and another vector are equal.</summary>\r\n      <param name=\"other\">The other vector.</param>\r\n      <returns>true if the two vectors are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Equals(System.Object)\">\r\n      <summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>\r\n      <param name=\"obj\">The object to compare with the current instance.</param>\r\n      <returns>true if the current instance and <paramref name=\"obj\">obj</paramref> are equal; otherwise, false. If <paramref name=\"obj\">obj</paramref> is null, the method returns false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.GetHashCode\">\r\n      <summary>Returns the hash code for this instance.</summary>\r\n      <returns>The hash code.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Length\">\r\n      <summary>Returns the length of this vector object.</summary>\r\n      <returns>The vector&amp;#39;s length.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.LengthSquared\">\r\n      <summary>Returns the length of the vector squared.</summary>\r\n      <returns>The vector&amp;#39;s length squared.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Lerp(System.Numerics.Vector4,System.Numerics.Vector4,System.Single)\">\r\n      <summary>Performs a linear interpolation between two vectors based on the given weighting.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <param name=\"amount\">A value between 0 and 1 that indicates the weight of value2.</param>\r\n      <returns>The interpolated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Max(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the maximum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The maximized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Min(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the minimum of each of the pairs of elements in two specified vectors.</summary>\r\n      <param name=\"value1\">The first vector.</param>\r\n      <param name=\"value2\">The second vector.</param>\r\n      <returns>The minimized vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Multiplies a vector by a specified scalar.</summary>\r\n      <param name=\"left\">The vector to multiply.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Multiply(System.Single,System.Numerics.Vector4)\">\r\n      <summary>Multiplies a scalar value by a specified vector.</summary>\r\n      <param name=\"left\">The scaled value.</param>\r\n      <param name=\"right\">The vector.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Negate(System.Numerics.Vector4)\">\r\n      <summary>Negates a specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Normalize(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector with the same direction as the specified vector, but with a length of one.</summary>\r\n      <param name=\"vector\">The vector to normalize.</param>\r\n      <returns>The normalized vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.One\">\r\n      <summary>Gets a vector whose 4 elements are equal to one.</summary>\r\n      <returns>Returns <see cref=\"System.Numerics.Vector4\"></see>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Addition(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Adds two vectors together.</summary>\r\n      <param name=\"left\">The first vector to add.</param>\r\n      <param name=\"right\">The second vector to add.</param>\r\n      <returns>The summed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Division(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Divides the first vector by the second.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from dividing <paramref name=\"left\">left</paramref> by <paramref name=\"right\">right</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Division(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Divides the specified vector by a specified scalar value.</summary>\r\n      <param name=\"value1\">The vector.</param>\r\n      <param name=\"value2\">The scalar value.</param>\r\n      <returns>The result of the division.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Equality(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether each pair of elements in two specified vectors is equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Inequality(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Returns a value that indicates whether two specified vectors are not equal.</summary>\r\n      <param name=\"left\">The first vector to compare.</param>\r\n      <param name=\"right\">The second vector to compare.</param>\r\n      <returns>true if <paramref name=\"left\">left</paramref> and <paramref name=\"right\">right</paramref> are not equal; otherwise, false.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Multiplies two vectors together.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The product vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Numerics.Vector4,System.Single)\">\r\n      <summary>Multiples the specified vector by the specified scalar value.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Multiply(System.Single,System.Numerics.Vector4)\">\r\n      <summary>Multiples the scalar value by the specified vector.</summary>\r\n      <param name=\"left\">The vector.</param>\r\n      <param name=\"right\">The scalar value.</param>\r\n      <returns>The scaled vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_Subtraction(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The vector that results from subtracting <paramref name=\"right\">right</paramref> from <paramref name=\"left\">left</paramref>.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.op_UnaryNegation(System.Numerics.Vector4)\">\r\n      <summary>Negates the specified vector.</summary>\r\n      <param name=\"value\">The vector to negate.</param>\r\n      <returns>The negated vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.SquareRoot(System.Numerics.Vector4)\">\r\n      <summary>Returns a vector whose elements are the square root of each of a specified vector&amp;#39;s elements.</summary>\r\n      <param name=\"value\">A vector.</param>\r\n      <returns>The square root vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Subtract(System.Numerics.Vector4,System.Numerics.Vector4)\">\r\n      <summary>Subtracts the second vector from the first.</summary>\r\n      <param name=\"left\">The first vector.</param>\r\n      <param name=\"right\">The second vector.</param>\r\n      <returns>The difference vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString\">\r\n      <summary>Returns the string representation of the current instance using default formatting.</summary>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString(System.String)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.ToString(System.String,System.IFormatProvider)\">\r\n      <summary>Returns the string representation of the current instance using the specified format string to format individual elements and the specified format provider to define culture-specific formatting.</summary>\r\n      <param name=\"format\">A  or  that defines the format of individual elements.</param>\r\n      <param name=\"formatProvider\">A format provider that supplies culture-specific formatting information.</param>\r\n      <returns>The string representation of the current instance.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector4,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a four-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector4,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a four-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"vector\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector3,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a three-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector2,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a two-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector2,System.Numerics.Quaternion)\">\r\n      <summary>Transforms a two-dimensional vector by the specified Quaternion rotation value.</summary>\r\n      <param name=\"value\">The vector to rotate.</param>\r\n      <param name=\"rotation\">The rotation to apply.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"M:System.Numerics.Vector4.Transform(System.Numerics.Vector3,System.Numerics.Matrix4x4)\">\r\n      <summary>Transforms a three-dimensional vector by a specified 4x4 matrix.</summary>\r\n      <param name=\"position\">The vector to transform.</param>\r\n      <param name=\"matrix\">The transformation matrix.</param>\r\n      <returns>The transformed vector.</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitW\">\r\n      <summary>Gets the vector (0,0,0,1).</summary>\r\n      <returns>The vector (0,0,0,1).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitX\">\r\n      <summary>Gets the vector (1,0,0,0).</summary>\r\n      <returns>The vector (1,0,0,0).</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitY\">\r\n      <summary>Gets the vector (0,1,0,0).</summary>\r\n      <returns>The vector (0,1,0,0)..</returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.UnitZ\">\r\n      <summary>Gets a vector whose 4 elements are equal to zero.</summary>\r\n      <returns>The vector (0,0,1,0).</returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.W\">\r\n      <summary>The W component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.X\">\r\n      <summary>The X component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.Y\">\r\n      <summary>The Y component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"F:System.Numerics.Vector4.Z\">\r\n      <summary>The Z component of the vector.</summary>\r\n      <returns></returns>\r\n    </member>\r\n    <member name=\"P:System.Numerics.Vector4.Zero\">\r\n      <summary>Gets a vector whose 4 elements are equal to zero.</summary>\r\n      <returns>A vector whose four elements are equal to zero (that is, it returns the vector (0,0,0,0).</returns>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/ref/uap10.0.16299/_._",
    "content": ""
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/ref/xamarinios10/_._",
    "content": ""
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/ref/xamarinmac20/_._",
    "content": ""
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/ref/xamarintvos10/_._",
    "content": ""
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/ref/xamarinwatchos10/_._",
    "content": ""
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/useSharedDesignerContext.txt",
    "content": ""
  },
  {
    "path": "packages/System.Numerics.Vectors.4.5.0/version.txt",
    "content": "30ab651fcb4354552bd4891619a0bdd81e0ebdbf\r\n"
  },
  {
    "path": "packages/System.Runtime.CompilerServices.Unsafe.6.0.0/LICENSE.TXT",
    "content": "The MIT License (MIT)\r\n\r\nCopyright (c) .NET Foundation and Contributors\r\n\r\nAll rights reserved.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n"
  },
  {
    "path": "packages/System.Runtime.CompilerServices.Unsafe.6.0.0/THIRD-PARTY-NOTICES.TXT",
    "content": ".NET Runtime uses third-party libraries or other resources that may be\r\ndistributed under licenses different than the .NET Runtime software.\r\n\r\nIn the event that we accidentally failed to list a required notice, please\r\nbring it to our attention. Post an issue or email us:\r\n\r\n           dotnet@microsoft.com\r\n\r\nThe attached notices are provided for information only.\r\n\r\nLicense notice for ASP.NET\r\n-------------------------------\r\n\r\nCopyright (c) .NET Foundation. All rights reserved.\r\nLicensed under the Apache License, Version 2.0.\r\n\r\nAvailable at\r\nhttps://github.com/dotnet/aspnetcore/blob/main/LICENSE.txt\r\n\r\nLicense notice for Slicing-by-8\r\n-------------------------------\r\n\r\nhttp://sourceforge.net/projects/slicing-by-8/\r\n\r\nCopyright (c) 2004-2006 Intel Corporation - All Rights Reserved\r\n\r\n\r\nThis software program is licensed subject to the BSD License,  available at\r\nhttp://www.opensource.org/licenses/bsd-license.html.\r\n\r\n\r\nLicense notice for Unicode data\r\n-------------------------------\r\n\r\nhttps://www.unicode.org/license.html\r\n\r\nCopyright © 1991-2020 Unicode, Inc. All rights reserved.\r\nDistributed under the Terms of Use in https://www.unicode.org/copyright.html.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining\r\na copy of the Unicode data files and any associated documentation\r\n(the \"Data Files\") or Unicode software and any associated documentation\r\n(the \"Software\") to deal in the Data Files or Software\r\nwithout restriction, including without limitation the rights to use,\r\ncopy, modify, merge, publish, distribute, and/or sell copies of\r\nthe Data Files or Software, and to permit persons to whom the Data Files\r\nor Software are furnished to do so, provided that either\r\n(a) this copyright and permission notice appear with all copies\r\nof the Data Files or Software, or\r\n(b) this copyright and permission notice appear in associated\r\nDocumentation.\r\n\r\nTHE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY OF\r\nANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\r\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r\nNONINFRINGEMENT OF THIRD PARTY RIGHTS.\r\nIN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS\r\nNOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL\r\nDAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,\r\nDATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\r\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THE DATA FILES OR SOFTWARE.\r\n\r\nExcept as contained in this notice, the name of a copyright holder\r\nshall not be used in advertising or otherwise to promote the sale,\r\nuse or other dealings in these Data Files or Software without prior\r\nwritten authorization of the copyright holder.\r\n\r\nLicense notice for Zlib\r\n-----------------------\r\n\r\nhttps://github.com/madler/zlib\r\nhttp://zlib.net/zlib_license.html\r\n\r\n/* zlib.h -- interface of the 'zlib' general purpose compression library\r\n  version 1.2.11, January 15th, 2017\r\n\r\n  Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler\r\n\r\n  This software is provided 'as-is', without any express or implied\r\n  warranty.  In no event will the authors be held liable for any damages\r\n  arising from the use of this software.\r\n\r\n  Permission is granted to anyone to use this software for any purpose,\r\n  including commercial applications, and to alter it and redistribute it\r\n  freely, subject to the following restrictions:\r\n\r\n  1. The origin of this software must not be misrepresented; you must not\r\n     claim that you wrote the original software. If you use this software\r\n     in a product, an acknowledgment in the product documentation would be\r\n     appreciated but is not required.\r\n  2. Altered source versions must be plainly marked as such, and must not be\r\n     misrepresented as being the original software.\r\n  3. This notice may not be removed or altered from any source distribution.\r\n\r\n  Jean-loup Gailly        Mark Adler\r\n  jloup@gzip.org          madler@alumni.caltech.edu\r\n\r\n*/\r\n\r\nLicense notice for Mono\r\n-------------------------------\r\n\r\nhttp://www.mono-project.com/docs/about-mono/\r\n\r\nCopyright (c) .NET Foundation Contributors\r\n\r\nMIT License\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software  and associated documentation files (the Software), to deal\r\nin the Software without restriction,  including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense,  and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so,  subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n\r\nLicense notice for International Organization for Standardization\r\n-----------------------------------------------------------------\r\n\r\nPortions (C) International Organization for Standardization 1986:\r\n     Permission to copy in any form is granted for use with\r\n     conforming SGML systems and applications as defined in\r\n     ISO 8879, provided this notice is included in all copies.\r\n\r\nLicense notice for Intel\r\n------------------------\r\n\r\n\"Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are met:\r\n\r\n1. Redistributions of source code must retain the above copyright notice, this\r\nlist of conditions and the following disclaimer.\r\n\r\n2. Redistributions in binary form must reproduce the above copyright notice,\r\nthis list of conditions and the following disclaimer in the documentation\r\nand/or other materials provided with the distribution.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\r\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\r\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\r\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\r\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\r\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\r\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\r\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r\n\r\nLicense notice for Xamarin and Novell\r\n-------------------------------------\r\n\r\nCopyright (c) 2015 Xamarin, Inc (http://www.xamarin.com)\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n\r\nCopyright (c) 2011 Novell, Inc (http://www.novell.com)\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n\r\nThird party notice for W3C\r\n--------------------------\r\n\r\n\"W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE\r\nStatus: This license takes effect 13 May, 2015.\r\nThis work is being provided by the copyright holders under the following license.\r\nLicense\r\nBy obtaining and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions.\r\nPermission to copy, modify, and distribute this work, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the work or portions thereof, including modifications:\r\nThe full text of this NOTICE in a location viewable to users of the redistributed or derivative work.\r\nAny pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software and Document Short Notice should be included.\r\nNotice of any changes or modifications, through a copyright statement on the new code or document such as \"This software or document includes material copied from or derived from [title and URI of the W3C document]. Copyright © [YEAR] W3C® (MIT, ERCIM, Keio, Beihang).\"\r\nDisclaimers\r\nTHIS WORK IS PROVIDED \"AS IS,\" AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.\r\nCOPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT.\r\nThe name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders.\"\r\n\r\nLicense notice for Bit Twiddling Hacks\r\n--------------------------------------\r\n\r\nBit Twiddling Hacks\r\n\r\nBy Sean Eron Anderson\r\nseander@cs.stanford.edu\r\n\r\nIndividually, the code snippets here are in the public domain (unless otherwise\r\nnoted) — feel free to use them however you please. The aggregate collection and\r\ndescriptions are © 1997-2005 Sean Eron Anderson. The code and descriptions are\r\ndistributed in the hope that they will be useful, but WITHOUT ANY WARRANTY and\r\nwithout even the implied warranty of merchantability or fitness for a particular\r\npurpose.\r\n\r\nLicense notice for Brotli\r\n--------------------------------------\r\n\r\nCopyright (c) 2009, 2010, 2013-2016 by the Brotli Authors.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n\r\ncompress_fragment.c:\r\nCopyright (c) 2011, Google Inc.\r\nAll rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are\r\nmet:\r\n\r\n    * Redistributions of source code must retain the above copyright\r\nnotice, this list of conditions and the following disclaimer.\r\n    * Redistributions in binary form must reproduce the above\r\ncopyright notice, this list of conditions and the following disclaimer\r\nin the documentation and/or other materials provided with the\r\ndistribution.\r\n    * Neither the name of Google Inc. nor the names of its\r\ncontributors may be used to endorse or promote products derived from\r\nthis software without specific prior written permission.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\r\n\"\"AS IS\"\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\r\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\r\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\r\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r\n\r\ndecode_fuzzer.c:\r\nCopyright (c) 2015 The Chromium Authors. All rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are\r\nmet:\r\n\r\n   * Redistributions of source code must retain the above copyright\r\nnotice, this list of conditions and the following disclaimer.\r\n   * Redistributions in binary form must reproduce the above\r\ncopyright notice, this list of conditions and the following disclaimer\r\nin the documentation and/or other materials provided with the\r\ndistribution.\r\n   * Neither the name of Google Inc. nor the names of its\r\ncontributors may be used to endorse or promote products derived from\r\nthis software without specific prior written permission.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\r\n\"\"AS IS\"\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\r\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\r\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\r\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\"\r\n\r\nLicense notice for Json.NET\r\n-------------------------------\r\n\r\nhttps://github.com/JamesNK/Newtonsoft.Json/blob/master/LICENSE.md\r\n\r\nThe MIT License (MIT)\r\n\r\nCopyright (c) 2007 James Newton-King\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy of\r\nthis software and associated documentation files (the \"Software\"), to deal in\r\nthe Software without restriction, including without limitation the rights to\r\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\r\nthe Software, and to permit persons to whom the Software is furnished to do so,\r\nsubject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\r\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n\r\nLicense notice for vectorized base64 encoding / decoding\r\n--------------------------------------------------------\r\n\r\nCopyright (c) 2005-2007, Nick Galbreath\r\nCopyright (c) 2013-2017, Alfred Klomp\r\nCopyright (c) 2015-2017, Wojciech Mula\r\nCopyright (c) 2016-2017, Matthieu Darbois\r\nAll rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are\r\nmet:\r\n\r\n- Redistributions of source code must retain the above copyright notice,\r\n  this list of conditions and the following disclaimer.\r\n\r\n- Redistributions in binary form must reproduce the above copyright\r\n  notice, this list of conditions and the following disclaimer in the\r\n  documentation and/or other materials provided with the distribution.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\r\nIS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\r\nTO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\r\nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\r\nHOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\r\nTO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\r\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\r\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\r\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\r\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r\n\r\nLicense notice for RFC 3492\r\n---------------------------\r\n\r\nThe punycode implementation is based on the sample code in RFC 3492\r\n\r\nCopyright (C) The Internet Society (2003).  All Rights Reserved.\r\n\r\nThis document and translations of it may be copied and furnished to\r\nothers, and derivative works that comment on or otherwise explain it\r\nor assist in its implementation may be prepared, copied, published\r\nand distributed, in whole or in part, without restriction of any\r\nkind, provided that the above copyright notice and this paragraph are\r\nincluded on all such copies and derivative works.  However, this\r\ndocument itself may not be modified in any way, such as by removing\r\nthe copyright notice or references to the Internet Society or other\r\nInternet organizations, except as needed for the purpose of\r\ndeveloping Internet standards in which case the procedures for\r\ncopyrights defined in the Internet Standards process must be\r\nfollowed, or as required to translate it into languages other than\r\nEnglish.\r\n\r\nThe limited permissions granted above are perpetual and will not be\r\nrevoked by the Internet Society or its successors or assigns.\r\n\r\nThis document and the information contained herein is provided on an\r\n\"AS IS\" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING\r\nTASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING\r\nBUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION\r\nHEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF\r\nMERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.\r\n\r\nLicense notice for Algorithm from Internet Draft document \"UUIDs and GUIDs\"\r\n---------------------------------------------------------------------------\r\n\r\nCopyright (c) 1990- 1993, 1996 Open Software Foundation, Inc.\r\nCopyright (c) 1989 by Hewlett-Packard Company, Palo Alto, Ca. &\r\nDigital Equipment Corporation, Maynard, Mass.\r\nTo anyone who acknowledges that this file is provided \"AS IS\"\r\nwithout any express or implied warranty: permission to use, copy,\r\nmodify, and distribute this file for any purpose is hereby\r\ngranted without fee, provided that the above copyright notices and\r\nthis notice appears in all source code copies, and that none of\r\nthe names of Open Software Foundation, Inc., Hewlett-Packard\r\nCompany, or Digital Equipment Corporation be used in advertising\r\nor publicity pertaining to distribution of the software without\r\nspecific, written prior permission.  Neither Open Software\r\nFoundation, Inc., Hewlett-Packard Company, Microsoft, nor Digital Equipment\r\nCorporation makes any representations about the suitability of\r\nthis software for any purpose.\r\n\r\nCopyright(C) The Internet Society 1997. All Rights Reserved.\r\n\r\nThis document and translations of it may be copied and furnished to others,\r\nand derivative works that comment on or otherwise explain it or assist in\r\nits implementation may be prepared, copied, published and distributed, in\r\nwhole or in part, without restriction of any kind, provided that the above\r\ncopyright notice and this paragraph are included on all such copies and\r\nderivative works.However, this document itself may not be modified in any\r\nway, such as by removing the copyright notice or references to the Internet\r\nSociety or other Internet organizations, except as needed for the purpose of\r\ndeveloping Internet standards in which case the procedures for copyrights\r\ndefined in the Internet Standards process must be followed, or as required\r\nto translate it into languages other than English.\r\n\r\nThe limited permissions granted above are perpetual and will not be revoked\r\nby the Internet Society or its successors or assigns.\r\n\r\nThis document and the information contained herein is provided on an \"AS IS\"\r\nbasis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING TASK FORCE\r\nDISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO\r\nANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY\r\nRIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A\r\nPARTICULAR PURPOSE.\r\n\r\nLicense notice for Algorithm from RFC 4122 -\r\nA Universally Unique IDentifier (UUID) URN Namespace\r\n----------------------------------------------------\r\n\r\nCopyright (c) 1990- 1993, 1996 Open Software Foundation, Inc.\r\nCopyright (c) 1989 by Hewlett-Packard Company, Palo Alto, Ca. &\r\nDigital Equipment Corporation, Maynard, Mass.\r\nCopyright (c) 1998 Microsoft.\r\nTo anyone who acknowledges that this file is provided \"AS IS\"\r\nwithout any express or implied warranty: permission to use, copy,\r\nmodify, and distribute this file for any purpose is hereby\r\ngranted without fee, provided that the above copyright notices and\r\nthis notice appears in all source code copies, and that none of\r\nthe names of Open Software Foundation, Inc., Hewlett-Packard\r\nCompany, Microsoft, or Digital Equipment Corporation be used in\r\nadvertising or publicity pertaining to distribution of the software\r\nwithout specific, written prior permission. Neither Open Software\r\nFoundation, Inc., Hewlett-Packard Company, Microsoft, nor Digital\r\nEquipment Corporation makes any representations about the\r\nsuitability of this software for any purpose.\"\r\n\r\nLicense notice for The LLVM Compiler Infrastructure\r\n---------------------------------------------------\r\n\r\nDeveloped by:\r\n\r\n    LLVM Team\r\n\r\n    University of Illinois at Urbana-Champaign\r\n\r\n    http://llvm.org\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy of\r\nthis software and associated documentation files (the \"Software\"), to deal with\r\nthe Software without restriction, including without limitation the rights to\r\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\r\nof the Software, and to permit persons to whom the Software is furnished to do\r\nso, subject to the following conditions:\r\n\r\n    * Redistributions of source code must retain the above copyright notice,\r\n      this list of conditions and the following disclaimers.\r\n\r\n    * Redistributions in binary form must reproduce the above copyright notice,\r\n      this list of conditions and the following disclaimers in the\r\n      documentation and/or other materials provided with the distribution.\r\n\r\n    * Neither the names of the LLVM Team, University of Illinois at\r\n      Urbana-Champaign, nor the names of its contributors may be used to\r\n      endorse or promote products derived from this Software without specific\r\n      prior written permission.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE\r\nCONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE\r\nSOFTWARE.\r\n\r\nLicense notice for Bob Jenkins\r\n------------------------------\r\n\r\nBy Bob Jenkins, 1996.  bob_jenkins@burtleburtle.net.  You may use this\r\ncode any way you wish, private, educational, or commercial.  It's free.\r\n\r\nLicense notice for Greg Parker\r\n------------------------------\r\n\r\nGreg Parker     gparker@cs.stanford.edu     December 2000\r\nThis code is in the public domain and may be copied or modified without\r\npermission.\r\n\r\nLicense notice for libunwind based code\r\n----------------------------------------\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining\r\na copy of this software and associated documentation files (the\r\n\"Software\"), to deal in the Software without restriction, including\r\nwithout limitation the rights to use, copy, modify, merge, publish,\r\ndistribute, sublicense, and/or sell copies of the Software, and to\r\npermit persons to whom the Software is furnished to do so, subject to\r\nthe following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be\r\nincluded in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n\r\nLicense notice for Printing Floating-Point Numbers (Dragon4)\r\n------------------------------------------------------------\r\n\r\n/******************************************************************************\r\n  Copyright (c) 2014 Ryan Juckett\r\n  http://www.ryanjuckett.com/\r\n\r\n  This software is provided 'as-is', without any express or implied\r\n  warranty. In no event will the authors be held liable for any damages\r\n  arising from the use of this software.\r\n\r\n  Permission is granted to anyone to use this software for any purpose,\r\n  including commercial applications, and to alter it and redistribute it\r\n  freely, subject to the following restrictions:\r\n\r\n  1. The origin of this software must not be misrepresented; you must not\r\n     claim that you wrote the original software. If you use this software\r\n     in a product, an acknowledgment in the product documentation would be\r\n     appreciated but is not required.\r\n\r\n  2. Altered source versions must be plainly marked as such, and must not be\r\n     misrepresented as being the original software.\r\n\r\n  3. This notice may not be removed or altered from any source\r\n     distribution.\r\n******************************************************************************/\r\n\r\nLicense notice for Printing Floating-point Numbers (Grisu3)\r\n-----------------------------------------------------------\r\n\r\nCopyright 2012 the V8 project authors. All rights reserved.\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are\r\nmet:\r\n\r\n    * Redistributions of source code must retain the above copyright\r\n      notice, this list of conditions and the following disclaimer.\r\n    * Redistributions in binary form must reproduce the above\r\n      copyright notice, this list of conditions and the following\r\n      disclaimer in the documentation and/or other materials provided\r\n      with the distribution.\r\n    * Neither the name of Google Inc. nor the names of its\r\n      contributors may be used to endorse or promote products derived\r\n      from this software without specific prior written permission.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\r\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\r\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\r\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\r\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r\n\r\nLicense notice for xxHash\r\n-------------------------\r\n\r\nxxHash Library\r\nCopyright (c) 2012-2014, Yann Collet\r\nAll rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without modification,\r\nare permitted provided that the following conditions are met:\r\n\r\n* Redistributions of source code must retain the above copyright notice, this\r\n  list of conditions and the following disclaimer.\r\n\r\n* Redistributions in binary form must reproduce the above copyright notice, this\r\n  list of conditions and the following disclaimer in the documentation and/or\r\n  other materials provided with the distribution.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\r\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\r\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\r\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\r\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\r\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\r\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\r\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\r\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r\n\r\nLicense notice for Berkeley SoftFloat Release 3e\r\n------------------------------------------------\r\n\r\nhttps://github.com/ucb-bar/berkeley-softfloat-3\r\nhttps://github.com/ucb-bar/berkeley-softfloat-3/blob/master/COPYING.txt\r\n\r\nLicense for Berkeley SoftFloat Release 3e\r\n\r\nJohn R. Hauser\r\n2018 January 20\r\n\r\nThe following applies to the whole of SoftFloat Release 3e as well as to\r\neach source file individually.\r\n\r\nCopyright 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 The Regents of the\r\nUniversity of California.  All rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are met:\r\n\r\n 1. Redistributions of source code must retain the above copyright notice,\r\n    this list of conditions, and the following disclaimer.\r\n\r\n 2. Redistributions in binary form must reproduce the above copyright\r\n    notice, this list of conditions, and the following disclaimer in the\r\n    documentation and/or other materials provided with the distribution.\r\n\r\n 3. Neither the name of the University nor the names of its contributors\r\n    may be used to endorse or promote products derived from this software\r\n    without specific prior written permission.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS \"AS IS\", AND ANY\r\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\r\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE\r\nDISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY\r\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\r\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\r\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\r\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\r\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r\n\r\nLicense notice for xoshiro RNGs\r\n--------------------------------\r\n\r\nWritten in 2018 by David Blackman and Sebastiano Vigna (vigna@acm.org)\r\n\r\nTo the extent possible under law, the author has dedicated all copyright\r\nand related and neighboring rights to this software to the public domain\r\nworldwide. This software is distributed without any warranty.\r\n\r\nSee <http://creativecommons.org/publicdomain/zero/1.0/>.\r\n\r\nLicense for fastmod (https://github.com/lemire/fastmod) and ibm-fpgen (https://github.com/nigeltao/parse-number-fxx-test-data)\r\n--------------------------------------\r\n\r\n   Copyright 2018 Daniel Lemire\r\n\r\n   Licensed under the Apache License, Version 2.0 (the \"License\");\r\n   you may not use this file except in compliance with the License.\r\n   You may obtain a copy of the License at\r\n\r\n       http://www.apache.org/licenses/LICENSE-2.0\r\n\r\n   Unless required by applicable law or agreed to in writing, software\r\n   distributed under the License is distributed on an \"AS IS\" BASIS,\r\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n   See the License for the specific language governing permissions and\r\n   limitations under the License.\r\n\r\nLicense notice for The C++ REST SDK\r\n-----------------------------------\r\n\r\nC++ REST SDK\r\n\r\nThe MIT License (MIT)\r\n\r\nCopyright (c) Microsoft Corporation\r\n\r\nAll rights reserved.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy of\r\nthis software and associated documentation files (the \"Software\"), to deal in\r\nthe Software without restriction, including without limitation the rights to\r\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\r\nthe Software, and to permit persons to whom the Software is furnished to do so,\r\nsubject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n\r\nLicense notice for MessagePack-CSharp\r\n-------------------------------------\r\n\r\nMessagePack for C#\r\n\r\nMIT License\r\n\r\nCopyright (c) 2017 Yoshifumi Kawai\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n\r\nLicense notice for lz4net\r\n-------------------------------------\r\n\r\nlz4net\r\n\r\nCopyright (c) 2013-2017, Milosz Krajewski\r\n\r\nAll rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\r\n\r\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\r\n\r\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r\n\r\nLicense notice for Nerdbank.Streams\r\n-----------------------------------\r\n\r\nThe MIT License (MIT)\r\n\r\nCopyright (c) Andrew Arnott\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n\r\nLicense notice for RapidJSON\r\n----------------------------\r\n\r\nTencent is pleased to support the open source community by making RapidJSON available.\r\n\r\nCopyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved.\r\n\r\nLicensed under the MIT License (the \"License\"); you may not use this file except\r\nin compliance with the License. You may obtain a copy of the License at\r\n\r\nhttp://opensource.org/licenses/MIT\r\n\r\nUnless required by applicable law or agreed to in writing, software distributed\r\nunder the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\r\nCONDITIONS OF ANY KIND, either express or implied. See the License for the\r\nspecific language governing permissions and limitations under the License.\r\n\r\nLicense notice for DirectX Math Library\r\n---------------------------------------\r\n\r\nhttps://github.com/microsoft/DirectXMath/blob/master/LICENSE\r\n\r\n                               The MIT License (MIT)\r\n\r\nCopyright (c) 2011-2020 Microsoft Corp\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy of this\r\nsoftware and associated documentation files (the \"Software\"), to deal in the Software\r\nwithout restriction, including without limitation the rights to use, copy, modify,\r\nmerge, publish, distribute, sublicense, and/or sell copies of the Software, and to\r\npermit persons to whom the Software is furnished to do so, subject to the following\r\nconditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all copies\r\nor substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,\r\nINCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\r\nPARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\r\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF\r\nCONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE\r\nOR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n\r\nLicense notice for ldap4net\r\n---------------------------\r\n\r\nThe MIT License (MIT)\r\n\r\nCopyright (c) 2018 Alexander Chermyanin\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n\r\nLicense notice for vectorized sorting code\r\n------------------------------------------\r\n\r\nMIT License\r\n\r\nCopyright (c) 2020 Dan Shechter\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n\r\nLicense notice for musl\r\n-----------------------\r\n\r\nmusl as a whole is licensed under the following standard MIT license:\r\n\r\nCopyright © 2005-2020 Rich Felker, et al.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining\r\na copy of this software and associated documentation files (the\r\n\"Software\"), to deal in the Software without restriction, including\r\nwithout limitation the rights to use, copy, modify, merge, publish,\r\ndistribute, sublicense, and/or sell copies of the Software, and to\r\npermit persons to whom the Software is furnished to do so, subject to\r\nthe following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be\r\nincluded in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\r\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\r\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\r\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\r\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n\r\n\r\nLicense notice for \"Faster Unsigned Division by Constants\"\r\n------------------------------\r\n\r\nReference implementations of computing and using the \"magic number\" approach to dividing\r\nby constants, including codegen instructions. The unsigned division incorporates the\r\n\"round down\" optimization per ridiculous_fish.\r\n\r\nThis is free and unencumbered software. Any copyright is dedicated to the Public Domain.\r\n\r\n\r\nLicense notice for mimalloc\r\n-----------------------------------\r\n\r\nMIT License\r\n\r\nCopyright (c) 2019 Microsoft Corporation, Daan Leijen\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n"
  },
  {
    "path": "packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
    "content": "<Project InitialTargets=\"NETStandardCompatError_System_Runtime_CompilerServices_Unsafe_netcoreapp3_1\">\r\n  <Target Name=\"NETStandardCompatError_System_Runtime_CompilerServices_Unsafe_netcoreapp3_1\"\r\n          Condition=\"'$(SuppressTfmSupportBuildWarnings)' == ''\">\r\n    <Error Text=\"System.Runtime.CompilerServices.Unsafe doesn't support $(TargetFramework). Consider updating your TargetFramework to netcoreapp3.1 or later.\" />\r\n  </Target>\r\n</Project>\r\n"
  },
  {
    "path": "packages/System.Runtime.CompilerServices.Unsafe.6.0.0/buildTransitive/netcoreapp3.1/_._",
    "content": ""
  },
  {
    "path": "packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<doc>\r\n  <assembly>\r\n    <name>System.Runtime.CompilerServices.Unsafe</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:System.Runtime.CompilerServices.Unsafe\">\r\n      <summary>Contains generic, low-level functionality for manipulating pointers.</summary>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.Int32)\">\r\n      <summary>Adds an element offset to the given reference.</summary>\r\n      <param name=\"source\">The reference to add the offset to.</param>\r\n      <param name=\"elementOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the addition of offset to pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.IntPtr)\">\r\n      <summary>Adds an element offset to the given reference.</summary>\r\n      <param name=\"source\">The reference to add the offset to.</param>\r\n      <param name=\"elementOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the addition of offset to pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.UIntPtr)\">\r\n      <summary>Adds an element offset to the given reference.</summary>\r\n      <param name=\"source\">The reference to add the offset to.</param>\r\n      <param name=\"elementOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the addition of offset to pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Add``1(System.Void*,System.Int32)\">\r\n      <summary>Adds an element offset to the given void pointer.</summary>\r\n      <param name=\"source\">The void pointer to add the offset to.</param>\r\n      <param name=\"elementOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of void pointer.</typeparam>\r\n      <returns>A new void pointer that reflects the addition of offset to the specified pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AddByteOffset``1(``0@,System.IntPtr)\">\r\n      <summary>Adds a byte offset to the given reference.</summary>\r\n      <param name=\"source\">The reference to add the offset to.</param>\r\n      <param name=\"byteOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the addition of byte offset to pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AddByteOffset``1(``0@,System.UIntPtr)\">\r\n      <summary>Adds a byte offset to the given reference.</summary>\r\n      <param name=\"source\">The reference to add the offset to.</param>\r\n      <param name=\"byteOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the addition of byte offset to pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AreSame``1(``0@,``0@)\">\r\n      <summary>Determines whether the specified references point to the same location.</summary>\r\n      <param name=\"left\">The first reference to compare.</param>\r\n      <param name=\"right\">The second reference to compare.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>\r\n        <see langword=\"true\" /> if <paramref name=\"left\" /> and <paramref name=\"right\" /> point to the same location; otherwise, <see langword=\"false\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.As``1(System.Object)\">\r\n      <summary>Casts the given object to the specified type.</summary>\r\n      <param name=\"o\">The object to cast.</param>\r\n      <typeparam name=\"T\">The type which the object will be cast to.</typeparam>\r\n      <returns>The original object, casted to the given type.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.As``2(``0@)\">\r\n      <summary>Reinterprets the given reference as a reference to a value of type <typeparamref name=\"TTo\" />.</summary>\r\n      <param name=\"source\">The reference to reinterpret.</param>\r\n      <typeparam name=\"TFrom\">The type of reference to reinterpret.</typeparam>\r\n      <typeparam name=\"TTo\">The desired type of the reference.</typeparam>\r\n      <returns>A reference to a value of type <typeparamref name=\"TTo\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AsPointer``1(``0@)\">\r\n      <summary>Returns a pointer to the given by-ref parameter.</summary>\r\n      <param name=\"value\">The object whose pointer is obtained.</param>\r\n      <typeparam name=\"T\">The type of object.</typeparam>\r\n      <returns>A pointer to the given value.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AsRef``1(``0@)\">\r\n      <summary>Reinterprets the given read-only reference as a reference.</summary>\r\n      <param name=\"source\">The read-only reference to reinterpret.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A reference to a value of type <typeparamref name=\"T\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AsRef``1(System.Void*)\">\r\n      <summary>Reinterprets the given location as a reference to a value of type <typeparamref name=\"T\" />.</summary>\r\n      <param name=\"source\">The location of the value to reference.</param>\r\n      <typeparam name=\"T\">The type of the interpreted location.</typeparam>\r\n      <returns>A reference to a value of type <typeparamref name=\"T\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.ByteOffset``1(``0@,``0@)\">\r\n      <summary>Determines the byte offset from origin to target from the given references.</summary>\r\n      <param name=\"origin\">The reference to origin.</param>\r\n      <param name=\"target\">The reference to target.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>Byte offset from origin to target i.e. <paramref name=\"target\" /> - <paramref name=\"origin\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Copy``1(``0@,System.Void*)\">\r\n      <summary>Copies a value of type <typeparamref name=\"T\" /> to the given location.</summary>\r\n      <param name=\"destination\">The location to copy to.</param>\r\n      <param name=\"source\">A pointer to the value to copy.</param>\r\n      <typeparam name=\"T\">The type of value to copy.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Copy``1(System.Void*,``0@)\">\r\n      <summary>Copies a value of type <typeparamref name=\"T\" /> to the given location.</summary>\r\n      <param name=\"destination\">The location to copy to.</param>\r\n      <param name=\"source\">A reference to the value to copy.</param>\r\n      <typeparam name=\"T\">The type of value to copy.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.CopyBlock(System.Byte@,System.Byte@,System.UInt32)\">\r\n      <summary>Copies bytes from the source address to the destination address.</summary>\r\n      <param name=\"destination\">The destination address to copy to.</param>\r\n      <param name=\"source\">The source address to copy from.</param>\r\n      <param name=\"byteCount\">The number of bytes to copy.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.CopyBlock(System.Void*,System.Void*,System.UInt32)\">\r\n      <summary>Copies bytes from the source address to the destination address.</summary>\r\n      <param name=\"destination\">The destination address to copy to.</param>\r\n      <param name=\"source\">The source address to copy from.</param>\r\n      <param name=\"byteCount\">The number of bytes to copy.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.CopyBlockUnaligned(System.Byte@,System.Byte@,System.UInt32)\">\r\n      <summary>Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"destination\">The destination address to copy to.</param>\r\n      <param name=\"source\">The source address to copy from.</param>\r\n      <param name=\"byteCount\">The number of bytes to copy.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.CopyBlockUnaligned(System.Void*,System.Void*,System.UInt32)\">\r\n      <summary>Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"destination\">The destination address to copy to.</param>\r\n      <param name=\"source\">The source address to copy from.</param>\r\n      <param name=\"byteCount\">The number of bytes to copy.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.InitBlock(System.Byte@,System.Byte,System.UInt32)\">\r\n      <summary>Initializes a block of memory at the given location with a given initial value.</summary>\r\n      <param name=\"startAddress\">The address of the start of the memory block to initialize.</param>\r\n      <param name=\"value\">The value to initialize the block to.</param>\r\n      <param name=\"byteCount\">The number of bytes to initialize.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.InitBlock(System.Void*,System.Byte,System.UInt32)\">\r\n      <summary>Initializes a block of memory at the given location with a given initial value.</summary>\r\n      <param name=\"startAddress\">The address of the start of the memory block to initialize.</param>\r\n      <param name=\"value\">The value to initialize the block to.</param>\r\n      <param name=\"byteCount\">The number of bytes to initialize.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.InitBlockUnaligned(System.Byte@,System.Byte,System.UInt32)\">\r\n      <summary>Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address.</summary>\r\n      <param name=\"startAddress\">The address of the start of the memory block to initialize.</param>\r\n      <param name=\"value\">The value to initialize the block to.</param>\r\n      <param name=\"byteCount\">The number of bytes to initialize.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.InitBlockUnaligned(System.Void*,System.Byte,System.UInt32)\">\r\n      <summary>Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address.</summary>\r\n      <param name=\"startAddress\">The address of the start of the memory block to initialize.</param>\r\n      <param name=\"value\">The value to initialize the block to.</param>\r\n      <param name=\"byteCount\">The number of bytes to initialize.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.IsAddressGreaterThan``1(``0@,``0@)\">\r\n      <summary>Returns a value that indicates whether a specified reference is greater than another specified reference.</summary>\r\n      <param name=\"left\">The first value to compare.</param>\r\n      <param name=\"right\">The second value to compare.</param>\r\n      <typeparam name=\"T\">The type of the reference.</typeparam>\r\n      <returns>\r\n        <see langword=\"true\" /> if <paramref name=\"left\" /> is greater than <paramref name=\"right\" />; otherwise, <see langword=\"false\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.IsAddressLessThan``1(``0@,``0@)\">\r\n      <summary>Returns a value that indicates whether a specified reference is less than another specified reference.</summary>\r\n      <param name=\"left\">The first value to compare.</param>\r\n      <param name=\"right\">The second value to compare.</param>\r\n      <typeparam name=\"T\">The type of the reference.</typeparam>\r\n      <returns>\r\n        <see langword=\"true\" /> if <paramref name=\"left\" /> is less than <paramref name=\"right\" />; otherwise, <see langword=\"false\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.IsNullRef``1(``0@)\">\r\n      <summary>Determines if a given reference to a value of type <typeparamref name=\"T\" /> is a null reference.</summary>\r\n      <param name=\"source\">The reference to check.</param>\r\n      <typeparam name=\"T\">The type of the reference.</typeparam>\r\n      <returns>\r\n        <see langword=\"true\" /> if <paramref name=\"source\" /> is a null reference; otherwise, <see langword=\"false\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.NullRef``1\">\r\n      <summary>Returns a reference to a value of type <typeparamref name=\"T\" /> that is a null reference.</summary>\r\n      <typeparam name=\"T\">The type of the reference.</typeparam>\r\n      <returns>A reference to a value of type <typeparamref name=\"T\" /> that is a null reference.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Read``1(System.Void*)\">\r\n      <summary>Reads a value of type <typeparamref name=\"T\" /> from the given location.</summary>\r\n      <param name=\"source\">The location to read from.</param>\r\n      <typeparam name=\"T\">The type to read.</typeparam>\r\n      <returns>An object of type <typeparamref name=\"T\" /> read from the given location.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.ReadUnaligned``1(System.Byte@)\">\r\n      <summary>Reads a value of type <typeparamref name=\"T\" /> from the given location without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"source\">The location to read from.</param>\r\n      <typeparam name=\"T\">The type to read.</typeparam>\r\n      <returns>An object of type <typeparamref name=\"T\" /> read from the given location.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.ReadUnaligned``1(System.Void*)\">\r\n      <summary>Reads a value of type <typeparamref name=\"T\" /> from the given location without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"source\">The location to read from.</param>\r\n      <typeparam name=\"T\">The type to read.</typeparam>\r\n      <returns>An object of type <typeparamref name=\"T\" /> read from the given location.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.SizeOf``1\">\r\n      <summary>Returns the size of an object of the given type parameter.</summary>\r\n      <typeparam name=\"T\">The type of object whose size is retrieved.</typeparam>\r\n      <returns>The size of an object of type <typeparamref name=\"T\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.SkipInit``1(``0@)\">\r\n      <summary>Bypasses definite assignment rules for a given value.</summary>\r\n      <param name=\"value\">The uninitialized object.</param>\r\n      <typeparam name=\"T\">The type of the uninitialized object.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.Int32)\">\r\n      <summary>Subtracts an element offset from the given reference.</summary>\r\n      <param name=\"source\">The reference to subtract the offset from.</param>\r\n      <param name=\"elementOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the subtraction of offset from pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.IntPtr)\">\r\n      <summary>Subtracts an element offset from the given reference.</summary>\r\n      <param name=\"source\">The reference to subtract the offset from.</param>\r\n      <param name=\"elementOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the subtraction of offset from pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.UIntPtr)\">\r\n      <summary>Subtracts an element offset from the given reference.</summary>\r\n      <param name=\"source\">The reference to subtract the offset from.</param>\r\n      <param name=\"elementOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the subraction of offset from pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Subtract``1(System.Void*,System.Int32)\">\r\n      <summary>Subtracts an element offset from the given void pointer.</summary>\r\n      <param name=\"source\">The void pointer to subtract the offset from.</param>\r\n      <param name=\"elementOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of the void pointer.</typeparam>\r\n      <returns>A new void pointer that reflects the subtraction of offset from the specified pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.SubtractByteOffset``1(``0@,System.IntPtr)\">\r\n      <summary>Subtracts a byte offset from the given reference.</summary>\r\n      <param name=\"source\">The reference to subtract the offset from.</param>\r\n      <param name=\"byteOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the subtraction of byte offset from pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.SubtractByteOffset``1(``0@,System.UIntPtr)\">\r\n      <summary>Subtracts a byte offset from the given reference.</summary>\r\n      <param name=\"source\">The reference to subtract the offset from.</param>\r\n      <param name=\"byteOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the subraction of byte offset from pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Unbox``1(System.Object)\">\r\n      <summary>Returns a <see langword=\"mutable ref\" /> to a boxed value.</summary>\r\n      <param name=\"box\">The value to unbox.</param>\r\n      <typeparam name=\"T\">The type to be unboxed.</typeparam>\r\n      <exception cref=\"T:System.NullReferenceException\">\r\n        <paramref name=\"box\" /> is <see langword=\"null\" />, and <typeparamref name=\"T\" /> is a non-nullable value type.</exception>\r\n      <exception cref=\"T:System.InvalidCastException\">\r\n        <paramref name=\"box\" /> is not a boxed value type.\r\n         \r\n-or-\r\n\r\n<paramref name=\"box\" /> is not a boxed <typeparamref name=\"T\" />.</exception>\r\n      <exception cref=\"T:System.TypeLoadException\">\r\n        <typeparamref name=\"T\" /> cannot be found.</exception>\r\n      <returns>A <see langword=\"mutable ref\" /> to the boxed value <paramref name=\"box\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Write``1(System.Void*,``0)\">\r\n      <summary>Writes a value of type <typeparamref name=\"T\" /> to the given location.</summary>\r\n      <param name=\"destination\">The location to write to.</param>\r\n      <param name=\"value\">The value to write.</param>\r\n      <typeparam name=\"T\">The type of value to write.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.WriteUnaligned``1(System.Byte@,``0)\">\r\n      <summary>Writes a value of type <typeparamref name=\"T\" /> to the given location without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"destination\">The location to write to.</param>\r\n      <param name=\"value\">The value to write.</param>\r\n      <typeparam name=\"T\">The type of value to write.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.WriteUnaligned``1(System.Void*,``0)\">\r\n      <summary>Writes a value of type <typeparamref name=\"T\" /> to the given location without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"destination\">The location to write to.</param>\r\n      <param name=\"value\">The value to write.</param>\r\n      <typeparam name=\"T\">The type of value to write.</typeparam>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<doc>\r\n  <assembly>\r\n    <name>System.Runtime.CompilerServices.Unsafe</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:System.Runtime.CompilerServices.Unsafe\">\r\n      <summary>Contains generic, low-level functionality for manipulating pointers.</summary>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.Int32)\">\r\n      <summary>Adds an element offset to the given reference.</summary>\r\n      <param name=\"source\">The reference to add the offset to.</param>\r\n      <param name=\"elementOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the addition of offset to pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.IntPtr)\">\r\n      <summary>Adds an element offset to the given reference.</summary>\r\n      <param name=\"source\">The reference to add the offset to.</param>\r\n      <param name=\"elementOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the addition of offset to pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.UIntPtr)\">\r\n      <summary>Adds an element offset to the given reference.</summary>\r\n      <param name=\"source\">The reference to add the offset to.</param>\r\n      <param name=\"elementOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the addition of offset to pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Add``1(System.Void*,System.Int32)\">\r\n      <summary>Adds an element offset to the given void pointer.</summary>\r\n      <param name=\"source\">The void pointer to add the offset to.</param>\r\n      <param name=\"elementOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of void pointer.</typeparam>\r\n      <returns>A new void pointer that reflects the addition of offset to the specified pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AddByteOffset``1(``0@,System.IntPtr)\">\r\n      <summary>Adds a byte offset to the given reference.</summary>\r\n      <param name=\"source\">The reference to add the offset to.</param>\r\n      <param name=\"byteOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the addition of byte offset to pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AddByteOffset``1(``0@,System.UIntPtr)\">\r\n      <summary>Adds a byte offset to the given reference.</summary>\r\n      <param name=\"source\">The reference to add the offset to.</param>\r\n      <param name=\"byteOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the addition of byte offset to pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AreSame``1(``0@,``0@)\">\r\n      <summary>Determines whether the specified references point to the same location.</summary>\r\n      <param name=\"left\">The first reference to compare.</param>\r\n      <param name=\"right\">The second reference to compare.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>\r\n        <see langword=\"true\" /> if <paramref name=\"left\" /> and <paramref name=\"right\" /> point to the same location; otherwise, <see langword=\"false\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.As``1(System.Object)\">\r\n      <summary>Casts the given object to the specified type.</summary>\r\n      <param name=\"o\">The object to cast.</param>\r\n      <typeparam name=\"T\">The type which the object will be cast to.</typeparam>\r\n      <returns>The original object, casted to the given type.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.As``2(``0@)\">\r\n      <summary>Reinterprets the given reference as a reference to a value of type <typeparamref name=\"TTo\" />.</summary>\r\n      <param name=\"source\">The reference to reinterpret.</param>\r\n      <typeparam name=\"TFrom\">The type of reference to reinterpret.</typeparam>\r\n      <typeparam name=\"TTo\">The desired type of the reference.</typeparam>\r\n      <returns>A reference to a value of type <typeparamref name=\"TTo\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AsPointer``1(``0@)\">\r\n      <summary>Returns a pointer to the given by-ref parameter.</summary>\r\n      <param name=\"value\">The object whose pointer is obtained.</param>\r\n      <typeparam name=\"T\">The type of object.</typeparam>\r\n      <returns>A pointer to the given value.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AsRef``1(``0@)\">\r\n      <summary>Reinterprets the given read-only reference as a reference.</summary>\r\n      <param name=\"source\">The read-only reference to reinterpret.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A reference to a value of type <typeparamref name=\"T\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AsRef``1(System.Void*)\">\r\n      <summary>Reinterprets the given location as a reference to a value of type <typeparamref name=\"T\" />.</summary>\r\n      <param name=\"source\">The location of the value to reference.</param>\r\n      <typeparam name=\"T\">The type of the interpreted location.</typeparam>\r\n      <returns>A reference to a value of type <typeparamref name=\"T\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.ByteOffset``1(``0@,``0@)\">\r\n      <summary>Determines the byte offset from origin to target from the given references.</summary>\r\n      <param name=\"origin\">The reference to origin.</param>\r\n      <param name=\"target\">The reference to target.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>Byte offset from origin to target i.e. <paramref name=\"target\" /> - <paramref name=\"origin\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Copy``1(``0@,System.Void*)\">\r\n      <summary>Copies a value of type <typeparamref name=\"T\" /> to the given location.</summary>\r\n      <param name=\"destination\">The location to copy to.</param>\r\n      <param name=\"source\">A pointer to the value to copy.</param>\r\n      <typeparam name=\"T\">The type of value to copy.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Copy``1(System.Void*,``0@)\">\r\n      <summary>Copies a value of type <typeparamref name=\"T\" /> to the given location.</summary>\r\n      <param name=\"destination\">The location to copy to.</param>\r\n      <param name=\"source\">A reference to the value to copy.</param>\r\n      <typeparam name=\"T\">The type of value to copy.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.CopyBlock(System.Byte@,System.Byte@,System.UInt32)\">\r\n      <summary>Copies bytes from the source address to the destination address.</summary>\r\n      <param name=\"destination\">The destination address to copy to.</param>\r\n      <param name=\"source\">The source address to copy from.</param>\r\n      <param name=\"byteCount\">The number of bytes to copy.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.CopyBlock(System.Void*,System.Void*,System.UInt32)\">\r\n      <summary>Copies bytes from the source address to the destination address.</summary>\r\n      <param name=\"destination\">The destination address to copy to.</param>\r\n      <param name=\"source\">The source address to copy from.</param>\r\n      <param name=\"byteCount\">The number of bytes to copy.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.CopyBlockUnaligned(System.Byte@,System.Byte@,System.UInt32)\">\r\n      <summary>Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"destination\">The destination address to copy to.</param>\r\n      <param name=\"source\">The source address to copy from.</param>\r\n      <param name=\"byteCount\">The number of bytes to copy.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.CopyBlockUnaligned(System.Void*,System.Void*,System.UInt32)\">\r\n      <summary>Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"destination\">The destination address to copy to.</param>\r\n      <param name=\"source\">The source address to copy from.</param>\r\n      <param name=\"byteCount\">The number of bytes to copy.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.InitBlock(System.Byte@,System.Byte,System.UInt32)\">\r\n      <summary>Initializes a block of memory at the given location with a given initial value.</summary>\r\n      <param name=\"startAddress\">The address of the start of the memory block to initialize.</param>\r\n      <param name=\"value\">The value to initialize the block to.</param>\r\n      <param name=\"byteCount\">The number of bytes to initialize.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.InitBlock(System.Void*,System.Byte,System.UInt32)\">\r\n      <summary>Initializes a block of memory at the given location with a given initial value.</summary>\r\n      <param name=\"startAddress\">The address of the start of the memory block to initialize.</param>\r\n      <param name=\"value\">The value to initialize the block to.</param>\r\n      <param name=\"byteCount\">The number of bytes to initialize.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.InitBlockUnaligned(System.Byte@,System.Byte,System.UInt32)\">\r\n      <summary>Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address.</summary>\r\n      <param name=\"startAddress\">The address of the start of the memory block to initialize.</param>\r\n      <param name=\"value\">The value to initialize the block to.</param>\r\n      <param name=\"byteCount\">The number of bytes to initialize.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.InitBlockUnaligned(System.Void*,System.Byte,System.UInt32)\">\r\n      <summary>Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address.</summary>\r\n      <param name=\"startAddress\">The address of the start of the memory block to initialize.</param>\r\n      <param name=\"value\">The value to initialize the block to.</param>\r\n      <param name=\"byteCount\">The number of bytes to initialize.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.IsAddressGreaterThan``1(``0@,``0@)\">\r\n      <summary>Returns a value that indicates whether a specified reference is greater than another specified reference.</summary>\r\n      <param name=\"left\">The first value to compare.</param>\r\n      <param name=\"right\">The second value to compare.</param>\r\n      <typeparam name=\"T\">The type of the reference.</typeparam>\r\n      <returns>\r\n        <see langword=\"true\" /> if <paramref name=\"left\" /> is greater than <paramref name=\"right\" />; otherwise, <see langword=\"false\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.IsAddressLessThan``1(``0@,``0@)\">\r\n      <summary>Returns a value that indicates whether a specified reference is less than another specified reference.</summary>\r\n      <param name=\"left\">The first value to compare.</param>\r\n      <param name=\"right\">The second value to compare.</param>\r\n      <typeparam name=\"T\">The type of the reference.</typeparam>\r\n      <returns>\r\n        <see langword=\"true\" /> if <paramref name=\"left\" /> is less than <paramref name=\"right\" />; otherwise, <see langword=\"false\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.IsNullRef``1(``0@)\">\r\n      <summary>Determines if a given reference to a value of type <typeparamref name=\"T\" /> is a null reference.</summary>\r\n      <param name=\"source\">The reference to check.</param>\r\n      <typeparam name=\"T\">The type of the reference.</typeparam>\r\n      <returns>\r\n        <see langword=\"true\" /> if <paramref name=\"source\" /> is a null reference; otherwise, <see langword=\"false\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.NullRef``1\">\r\n      <summary>Returns a reference to a value of type <typeparamref name=\"T\" /> that is a null reference.</summary>\r\n      <typeparam name=\"T\">The type of the reference.</typeparam>\r\n      <returns>A reference to a value of type <typeparamref name=\"T\" /> that is a null reference.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Read``1(System.Void*)\">\r\n      <summary>Reads a value of type <typeparamref name=\"T\" /> from the given location.</summary>\r\n      <param name=\"source\">The location to read from.</param>\r\n      <typeparam name=\"T\">The type to read.</typeparam>\r\n      <returns>An object of type <typeparamref name=\"T\" /> read from the given location.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.ReadUnaligned``1(System.Byte@)\">\r\n      <summary>Reads a value of type <typeparamref name=\"T\" /> from the given location without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"source\">The location to read from.</param>\r\n      <typeparam name=\"T\">The type to read.</typeparam>\r\n      <returns>An object of type <typeparamref name=\"T\" /> read from the given location.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.ReadUnaligned``1(System.Void*)\">\r\n      <summary>Reads a value of type <typeparamref name=\"T\" /> from the given location without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"source\">The location to read from.</param>\r\n      <typeparam name=\"T\">The type to read.</typeparam>\r\n      <returns>An object of type <typeparamref name=\"T\" /> read from the given location.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.SizeOf``1\">\r\n      <summary>Returns the size of an object of the given type parameter.</summary>\r\n      <typeparam name=\"T\">The type of object whose size is retrieved.</typeparam>\r\n      <returns>The size of an object of type <typeparamref name=\"T\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.SkipInit``1(``0@)\">\r\n      <summary>Bypasses definite assignment rules for a given value.</summary>\r\n      <param name=\"value\">The uninitialized object.</param>\r\n      <typeparam name=\"T\">The type of the uninitialized object.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.Int32)\">\r\n      <summary>Subtracts an element offset from the given reference.</summary>\r\n      <param name=\"source\">The reference to subtract the offset from.</param>\r\n      <param name=\"elementOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the subtraction of offset from pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.IntPtr)\">\r\n      <summary>Subtracts an element offset from the given reference.</summary>\r\n      <param name=\"source\">The reference to subtract the offset from.</param>\r\n      <param name=\"elementOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the subtraction of offset from pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.UIntPtr)\">\r\n      <summary>Subtracts an element offset from the given reference.</summary>\r\n      <param name=\"source\">The reference to subtract the offset from.</param>\r\n      <param name=\"elementOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the subraction of offset from pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Subtract``1(System.Void*,System.Int32)\">\r\n      <summary>Subtracts an element offset from the given void pointer.</summary>\r\n      <param name=\"source\">The void pointer to subtract the offset from.</param>\r\n      <param name=\"elementOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of the void pointer.</typeparam>\r\n      <returns>A new void pointer that reflects the subtraction of offset from the specified pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.SubtractByteOffset``1(``0@,System.IntPtr)\">\r\n      <summary>Subtracts a byte offset from the given reference.</summary>\r\n      <param name=\"source\">The reference to subtract the offset from.</param>\r\n      <param name=\"byteOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the subtraction of byte offset from pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.SubtractByteOffset``1(``0@,System.UIntPtr)\">\r\n      <summary>Subtracts a byte offset from the given reference.</summary>\r\n      <param name=\"source\">The reference to subtract the offset from.</param>\r\n      <param name=\"byteOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the subraction of byte offset from pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Unbox``1(System.Object)\">\r\n      <summary>Returns a <see langword=\"mutable ref\" /> to a boxed value.</summary>\r\n      <param name=\"box\">The value to unbox.</param>\r\n      <typeparam name=\"T\">The type to be unboxed.</typeparam>\r\n      <exception cref=\"T:System.NullReferenceException\">\r\n        <paramref name=\"box\" /> is <see langword=\"null\" />, and <typeparamref name=\"T\" /> is a non-nullable value type.</exception>\r\n      <exception cref=\"T:System.InvalidCastException\">\r\n        <paramref name=\"box\" /> is not a boxed value type.\r\n         \r\n-or-\r\n\r\n<paramref name=\"box\" /> is not a boxed <typeparamref name=\"T\" />.</exception>\r\n      <exception cref=\"T:System.TypeLoadException\">\r\n        <typeparamref name=\"T\" /> cannot be found.</exception>\r\n      <returns>A <see langword=\"mutable ref\" /> to the boxed value <paramref name=\"box\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Write``1(System.Void*,``0)\">\r\n      <summary>Writes a value of type <typeparamref name=\"T\" /> to the given location.</summary>\r\n      <param name=\"destination\">The location to write to.</param>\r\n      <param name=\"value\">The value to write.</param>\r\n      <typeparam name=\"T\">The type of value to write.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.WriteUnaligned``1(System.Byte@,``0)\">\r\n      <summary>Writes a value of type <typeparamref name=\"T\" /> to the given location without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"destination\">The location to write to.</param>\r\n      <param name=\"value\">The value to write.</param>\r\n      <typeparam name=\"T\">The type of value to write.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.WriteUnaligned``1(System.Void*,``0)\">\r\n      <summary>Writes a value of type <typeparamref name=\"T\" /> to the given location without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"destination\">The location to write to.</param>\r\n      <param name=\"value\">The value to write.</param>\r\n      <typeparam name=\"T\">The type of value to write.</typeparam>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<doc>\r\n  <assembly>\r\n    <name>System.Runtime.CompilerServices.Unsafe</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:System.Runtime.CompilerServices.Unsafe\">\r\n      <summary>Contains generic, low-level functionality for manipulating pointers.</summary>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.Int32)\">\r\n      <summary>Adds an element offset to the given reference.</summary>\r\n      <param name=\"source\">The reference to add the offset to.</param>\r\n      <param name=\"elementOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the addition of offset to pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.IntPtr)\">\r\n      <summary>Adds an element offset to the given reference.</summary>\r\n      <param name=\"source\">The reference to add the offset to.</param>\r\n      <param name=\"elementOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the addition of offset to pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.UIntPtr)\">\r\n      <summary>Adds an element offset to the given reference.</summary>\r\n      <param name=\"source\">The reference to add the offset to.</param>\r\n      <param name=\"elementOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the addition of offset to pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Add``1(System.Void*,System.Int32)\">\r\n      <summary>Adds an element offset to the given void pointer.</summary>\r\n      <param name=\"source\">The void pointer to add the offset to.</param>\r\n      <param name=\"elementOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of void pointer.</typeparam>\r\n      <returns>A new void pointer that reflects the addition of offset to the specified pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AddByteOffset``1(``0@,System.IntPtr)\">\r\n      <summary>Adds a byte offset to the given reference.</summary>\r\n      <param name=\"source\">The reference to add the offset to.</param>\r\n      <param name=\"byteOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the addition of byte offset to pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AddByteOffset``1(``0@,System.UIntPtr)\">\r\n      <summary>Adds a byte offset to the given reference.</summary>\r\n      <param name=\"source\">The reference to add the offset to.</param>\r\n      <param name=\"byteOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the addition of byte offset to pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AreSame``1(``0@,``0@)\">\r\n      <summary>Determines whether the specified references point to the same location.</summary>\r\n      <param name=\"left\">The first reference to compare.</param>\r\n      <param name=\"right\">The second reference to compare.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>\r\n        <see langword=\"true\" /> if <paramref name=\"left\" /> and <paramref name=\"right\" /> point to the same location; otherwise, <see langword=\"false\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.As``1(System.Object)\">\r\n      <summary>Casts the given object to the specified type.</summary>\r\n      <param name=\"o\">The object to cast.</param>\r\n      <typeparam name=\"T\">The type which the object will be cast to.</typeparam>\r\n      <returns>The original object, casted to the given type.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.As``2(``0@)\">\r\n      <summary>Reinterprets the given reference as a reference to a value of type <typeparamref name=\"TTo\" />.</summary>\r\n      <param name=\"source\">The reference to reinterpret.</param>\r\n      <typeparam name=\"TFrom\">The type of reference to reinterpret.</typeparam>\r\n      <typeparam name=\"TTo\">The desired type of the reference.</typeparam>\r\n      <returns>A reference to a value of type <typeparamref name=\"TTo\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AsPointer``1(``0@)\">\r\n      <summary>Returns a pointer to the given by-ref parameter.</summary>\r\n      <param name=\"value\">The object whose pointer is obtained.</param>\r\n      <typeparam name=\"T\">The type of object.</typeparam>\r\n      <returns>A pointer to the given value.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AsRef``1(``0@)\">\r\n      <summary>Reinterprets the given read-only reference as a reference.</summary>\r\n      <param name=\"source\">The read-only reference to reinterpret.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A reference to a value of type <typeparamref name=\"T\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AsRef``1(System.Void*)\">\r\n      <summary>Reinterprets the given location as a reference to a value of type <typeparamref name=\"T\" />.</summary>\r\n      <param name=\"source\">The location of the value to reference.</param>\r\n      <typeparam name=\"T\">The type of the interpreted location.</typeparam>\r\n      <returns>A reference to a value of type <typeparamref name=\"T\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.ByteOffset``1(``0@,``0@)\">\r\n      <summary>Determines the byte offset from origin to target from the given references.</summary>\r\n      <param name=\"origin\">The reference to origin.</param>\r\n      <param name=\"target\">The reference to target.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>Byte offset from origin to target i.e. <paramref name=\"target\" /> - <paramref name=\"origin\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Copy``1(``0@,System.Void*)\">\r\n      <summary>Copies a value of type <typeparamref name=\"T\" /> to the given location.</summary>\r\n      <param name=\"destination\">The location to copy to.</param>\r\n      <param name=\"source\">A pointer to the value to copy.</param>\r\n      <typeparam name=\"T\">The type of value to copy.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Copy``1(System.Void*,``0@)\">\r\n      <summary>Copies a value of type <typeparamref name=\"T\" /> to the given location.</summary>\r\n      <param name=\"destination\">The location to copy to.</param>\r\n      <param name=\"source\">A reference to the value to copy.</param>\r\n      <typeparam name=\"T\">The type of value to copy.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.CopyBlock(System.Byte@,System.Byte@,System.UInt32)\">\r\n      <summary>Copies bytes from the source address to the destination address.</summary>\r\n      <param name=\"destination\">The destination address to copy to.</param>\r\n      <param name=\"source\">The source address to copy from.</param>\r\n      <param name=\"byteCount\">The number of bytes to copy.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.CopyBlock(System.Void*,System.Void*,System.UInt32)\">\r\n      <summary>Copies bytes from the source address to the destination address.</summary>\r\n      <param name=\"destination\">The destination address to copy to.</param>\r\n      <param name=\"source\">The source address to copy from.</param>\r\n      <param name=\"byteCount\">The number of bytes to copy.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.CopyBlockUnaligned(System.Byte@,System.Byte@,System.UInt32)\">\r\n      <summary>Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"destination\">The destination address to copy to.</param>\r\n      <param name=\"source\">The source address to copy from.</param>\r\n      <param name=\"byteCount\">The number of bytes to copy.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.CopyBlockUnaligned(System.Void*,System.Void*,System.UInt32)\">\r\n      <summary>Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"destination\">The destination address to copy to.</param>\r\n      <param name=\"source\">The source address to copy from.</param>\r\n      <param name=\"byteCount\">The number of bytes to copy.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.InitBlock(System.Byte@,System.Byte,System.UInt32)\">\r\n      <summary>Initializes a block of memory at the given location with a given initial value.</summary>\r\n      <param name=\"startAddress\">The address of the start of the memory block to initialize.</param>\r\n      <param name=\"value\">The value to initialize the block to.</param>\r\n      <param name=\"byteCount\">The number of bytes to initialize.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.InitBlock(System.Void*,System.Byte,System.UInt32)\">\r\n      <summary>Initializes a block of memory at the given location with a given initial value.</summary>\r\n      <param name=\"startAddress\">The address of the start of the memory block to initialize.</param>\r\n      <param name=\"value\">The value to initialize the block to.</param>\r\n      <param name=\"byteCount\">The number of bytes to initialize.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.InitBlockUnaligned(System.Byte@,System.Byte,System.UInt32)\">\r\n      <summary>Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address.</summary>\r\n      <param name=\"startAddress\">The address of the start of the memory block to initialize.</param>\r\n      <param name=\"value\">The value to initialize the block to.</param>\r\n      <param name=\"byteCount\">The number of bytes to initialize.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.InitBlockUnaligned(System.Void*,System.Byte,System.UInt32)\">\r\n      <summary>Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address.</summary>\r\n      <param name=\"startAddress\">The address of the start of the memory block to initialize.</param>\r\n      <param name=\"value\">The value to initialize the block to.</param>\r\n      <param name=\"byteCount\">The number of bytes to initialize.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.IsAddressGreaterThan``1(``0@,``0@)\">\r\n      <summary>Returns a value that indicates whether a specified reference is greater than another specified reference.</summary>\r\n      <param name=\"left\">The first value to compare.</param>\r\n      <param name=\"right\">The second value to compare.</param>\r\n      <typeparam name=\"T\">The type of the reference.</typeparam>\r\n      <returns>\r\n        <see langword=\"true\" /> if <paramref name=\"left\" /> is greater than <paramref name=\"right\" />; otherwise, <see langword=\"false\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.IsAddressLessThan``1(``0@,``0@)\">\r\n      <summary>Returns a value that indicates whether a specified reference is less than another specified reference.</summary>\r\n      <param name=\"left\">The first value to compare.</param>\r\n      <param name=\"right\">The second value to compare.</param>\r\n      <typeparam name=\"T\">The type of the reference.</typeparam>\r\n      <returns>\r\n        <see langword=\"true\" /> if <paramref name=\"left\" /> is less than <paramref name=\"right\" />; otherwise, <see langword=\"false\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.IsNullRef``1(``0@)\">\r\n      <summary>Determines if a given reference to a value of type <typeparamref name=\"T\" /> is a null reference.</summary>\r\n      <param name=\"source\">The reference to check.</param>\r\n      <typeparam name=\"T\">The type of the reference.</typeparam>\r\n      <returns>\r\n        <see langword=\"true\" /> if <paramref name=\"source\" /> is a null reference; otherwise, <see langword=\"false\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.NullRef``1\">\r\n      <summary>Returns a reference to a value of type <typeparamref name=\"T\" /> that is a null reference.</summary>\r\n      <typeparam name=\"T\">The type of the reference.</typeparam>\r\n      <returns>A reference to a value of type <typeparamref name=\"T\" /> that is a null reference.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Read``1(System.Void*)\">\r\n      <summary>Reads a value of type <typeparamref name=\"T\" /> from the given location.</summary>\r\n      <param name=\"source\">The location to read from.</param>\r\n      <typeparam name=\"T\">The type to read.</typeparam>\r\n      <returns>An object of type <typeparamref name=\"T\" /> read from the given location.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.ReadUnaligned``1(System.Byte@)\">\r\n      <summary>Reads a value of type <typeparamref name=\"T\" /> from the given location without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"source\">The location to read from.</param>\r\n      <typeparam name=\"T\">The type to read.</typeparam>\r\n      <returns>An object of type <typeparamref name=\"T\" /> read from the given location.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.ReadUnaligned``1(System.Void*)\">\r\n      <summary>Reads a value of type <typeparamref name=\"T\" /> from the given location without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"source\">The location to read from.</param>\r\n      <typeparam name=\"T\">The type to read.</typeparam>\r\n      <returns>An object of type <typeparamref name=\"T\" /> read from the given location.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.SizeOf``1\">\r\n      <summary>Returns the size of an object of the given type parameter.</summary>\r\n      <typeparam name=\"T\">The type of object whose size is retrieved.</typeparam>\r\n      <returns>The size of an object of type <typeparamref name=\"T\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.SkipInit``1(``0@)\">\r\n      <summary>Bypasses definite assignment rules for a given value.</summary>\r\n      <param name=\"value\">The uninitialized object.</param>\r\n      <typeparam name=\"T\">The type of the uninitialized object.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.Int32)\">\r\n      <summary>Subtracts an element offset from the given reference.</summary>\r\n      <param name=\"source\">The reference to subtract the offset from.</param>\r\n      <param name=\"elementOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the subtraction of offset from pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.IntPtr)\">\r\n      <summary>Subtracts an element offset from the given reference.</summary>\r\n      <param name=\"source\">The reference to subtract the offset from.</param>\r\n      <param name=\"elementOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the subtraction of offset from pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.UIntPtr)\">\r\n      <summary>Subtracts an element offset from the given reference.</summary>\r\n      <param name=\"source\">The reference to subtract the offset from.</param>\r\n      <param name=\"elementOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the subraction of offset from pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Subtract``1(System.Void*,System.Int32)\">\r\n      <summary>Subtracts an element offset from the given void pointer.</summary>\r\n      <param name=\"source\">The void pointer to subtract the offset from.</param>\r\n      <param name=\"elementOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of the void pointer.</typeparam>\r\n      <returns>A new void pointer that reflects the subtraction of offset from the specified pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.SubtractByteOffset``1(``0@,System.IntPtr)\">\r\n      <summary>Subtracts a byte offset from the given reference.</summary>\r\n      <param name=\"source\">The reference to subtract the offset from.</param>\r\n      <param name=\"byteOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the subtraction of byte offset from pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.SubtractByteOffset``1(``0@,System.UIntPtr)\">\r\n      <summary>Subtracts a byte offset from the given reference.</summary>\r\n      <param name=\"source\">The reference to subtract the offset from.</param>\r\n      <param name=\"byteOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the subraction of byte offset from pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Unbox``1(System.Object)\">\r\n      <summary>Returns a <see langword=\"mutable ref\" /> to a boxed value.</summary>\r\n      <param name=\"box\">The value to unbox.</param>\r\n      <typeparam name=\"T\">The type to be unboxed.</typeparam>\r\n      <exception cref=\"T:System.NullReferenceException\">\r\n        <paramref name=\"box\" /> is <see langword=\"null\" />, and <typeparamref name=\"T\" /> is a non-nullable value type.</exception>\r\n      <exception cref=\"T:System.InvalidCastException\">\r\n        <paramref name=\"box\" /> is not a boxed value type.\r\n         \r\n-or-\r\n\r\n<paramref name=\"box\" /> is not a boxed <typeparamref name=\"T\" />.</exception>\r\n      <exception cref=\"T:System.TypeLoadException\">\r\n        <typeparamref name=\"T\" /> cannot be found.</exception>\r\n      <returns>A <see langword=\"mutable ref\" /> to the boxed value <paramref name=\"box\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Write``1(System.Void*,``0)\">\r\n      <summary>Writes a value of type <typeparamref name=\"T\" /> to the given location.</summary>\r\n      <param name=\"destination\">The location to write to.</param>\r\n      <param name=\"value\">The value to write.</param>\r\n      <typeparam name=\"T\">The type of value to write.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.WriteUnaligned``1(System.Byte@,``0)\">\r\n      <summary>Writes a value of type <typeparamref name=\"T\" /> to the given location without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"destination\">The location to write to.</param>\r\n      <param name=\"value\">The value to write.</param>\r\n      <typeparam name=\"T\">The type of value to write.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.WriteUnaligned``1(System.Void*,``0)\">\r\n      <summary>Writes a value of type <typeparamref name=\"T\" /> to the given location without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"destination\">The location to write to.</param>\r\n      <param name=\"value\">The value to write.</param>\r\n      <typeparam name=\"T\">The type of value to write.</typeparam>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Runtime.CompilerServices.Unsafe.6.0.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
    "content": "﻿<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<doc>\r\n  <assembly>\r\n    <name>System.Runtime.CompilerServices.Unsafe</name>\r\n  </assembly>\r\n  <members>\r\n    <member name=\"T:System.Runtime.CompilerServices.Unsafe\">\r\n      <summary>Contains generic, low-level functionality for manipulating pointers.</summary>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.Int32)\">\r\n      <summary>Adds an element offset to the given reference.</summary>\r\n      <param name=\"source\">The reference to add the offset to.</param>\r\n      <param name=\"elementOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the addition of offset to pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.IntPtr)\">\r\n      <summary>Adds an element offset to the given reference.</summary>\r\n      <param name=\"source\">The reference to add the offset to.</param>\r\n      <param name=\"elementOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the addition of offset to pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.UIntPtr)\">\r\n      <summary>Adds an element offset to the given reference.</summary>\r\n      <param name=\"source\">The reference to add the offset to.</param>\r\n      <param name=\"elementOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the addition of offset to pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Add``1(System.Void*,System.Int32)\">\r\n      <summary>Adds an element offset to the given void pointer.</summary>\r\n      <param name=\"source\">The void pointer to add the offset to.</param>\r\n      <param name=\"elementOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of void pointer.</typeparam>\r\n      <returns>A new void pointer that reflects the addition of offset to the specified pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AddByteOffset``1(``0@,System.IntPtr)\">\r\n      <summary>Adds a byte offset to the given reference.</summary>\r\n      <param name=\"source\">The reference to add the offset to.</param>\r\n      <param name=\"byteOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the addition of byte offset to pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AddByteOffset``1(``0@,System.UIntPtr)\">\r\n      <summary>Adds a byte offset to the given reference.</summary>\r\n      <param name=\"source\">The reference to add the offset to.</param>\r\n      <param name=\"byteOffset\">The offset to add.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the addition of byte offset to pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AreSame``1(``0@,``0@)\">\r\n      <summary>Determines whether the specified references point to the same location.</summary>\r\n      <param name=\"left\">The first reference to compare.</param>\r\n      <param name=\"right\">The second reference to compare.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>\r\n        <see langword=\"true\" /> if <paramref name=\"left\" /> and <paramref name=\"right\" /> point to the same location; otherwise, <see langword=\"false\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.As``1(System.Object)\">\r\n      <summary>Casts the given object to the specified type.</summary>\r\n      <param name=\"o\">The object to cast.</param>\r\n      <typeparam name=\"T\">The type which the object will be cast to.</typeparam>\r\n      <returns>The original object, casted to the given type.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.As``2(``0@)\">\r\n      <summary>Reinterprets the given reference as a reference to a value of type <typeparamref name=\"TTo\" />.</summary>\r\n      <param name=\"source\">The reference to reinterpret.</param>\r\n      <typeparam name=\"TFrom\">The type of reference to reinterpret.</typeparam>\r\n      <typeparam name=\"TTo\">The desired type of the reference.</typeparam>\r\n      <returns>A reference to a value of type <typeparamref name=\"TTo\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AsPointer``1(``0@)\">\r\n      <summary>Returns a pointer to the given by-ref parameter.</summary>\r\n      <param name=\"value\">The object whose pointer is obtained.</param>\r\n      <typeparam name=\"T\">The type of object.</typeparam>\r\n      <returns>A pointer to the given value.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AsRef``1(``0@)\">\r\n      <summary>Reinterprets the given read-only reference as a reference.</summary>\r\n      <param name=\"source\">The read-only reference to reinterpret.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A reference to a value of type <typeparamref name=\"T\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.AsRef``1(System.Void*)\">\r\n      <summary>Reinterprets the given location as a reference to a value of type <typeparamref name=\"T\" />.</summary>\r\n      <param name=\"source\">The location of the value to reference.</param>\r\n      <typeparam name=\"T\">The type of the interpreted location.</typeparam>\r\n      <returns>A reference to a value of type <typeparamref name=\"T\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.ByteOffset``1(``0@,``0@)\">\r\n      <summary>Determines the byte offset from origin to target from the given references.</summary>\r\n      <param name=\"origin\">The reference to origin.</param>\r\n      <param name=\"target\">The reference to target.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>Byte offset from origin to target i.e. <paramref name=\"target\" /> - <paramref name=\"origin\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Copy``1(``0@,System.Void*)\">\r\n      <summary>Copies a value of type <typeparamref name=\"T\" /> to the given location.</summary>\r\n      <param name=\"destination\">The location to copy to.</param>\r\n      <param name=\"source\">A pointer to the value to copy.</param>\r\n      <typeparam name=\"T\">The type of value to copy.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Copy``1(System.Void*,``0@)\">\r\n      <summary>Copies a value of type <typeparamref name=\"T\" /> to the given location.</summary>\r\n      <param name=\"destination\">The location to copy to.</param>\r\n      <param name=\"source\">A reference to the value to copy.</param>\r\n      <typeparam name=\"T\">The type of value to copy.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.CopyBlock(System.Byte@,System.Byte@,System.UInt32)\">\r\n      <summary>Copies bytes from the source address to the destination address.</summary>\r\n      <param name=\"destination\">The destination address to copy to.</param>\r\n      <param name=\"source\">The source address to copy from.</param>\r\n      <param name=\"byteCount\">The number of bytes to copy.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.CopyBlock(System.Void*,System.Void*,System.UInt32)\">\r\n      <summary>Copies bytes from the source address to the destination address.</summary>\r\n      <param name=\"destination\">The destination address to copy to.</param>\r\n      <param name=\"source\">The source address to copy from.</param>\r\n      <param name=\"byteCount\">The number of bytes to copy.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.CopyBlockUnaligned(System.Byte@,System.Byte@,System.UInt32)\">\r\n      <summary>Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"destination\">The destination address to copy to.</param>\r\n      <param name=\"source\">The source address to copy from.</param>\r\n      <param name=\"byteCount\">The number of bytes to copy.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.CopyBlockUnaligned(System.Void*,System.Void*,System.UInt32)\">\r\n      <summary>Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"destination\">The destination address to copy to.</param>\r\n      <param name=\"source\">The source address to copy from.</param>\r\n      <param name=\"byteCount\">The number of bytes to copy.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.InitBlock(System.Byte@,System.Byte,System.UInt32)\">\r\n      <summary>Initializes a block of memory at the given location with a given initial value.</summary>\r\n      <param name=\"startAddress\">The address of the start of the memory block to initialize.</param>\r\n      <param name=\"value\">The value to initialize the block to.</param>\r\n      <param name=\"byteCount\">The number of bytes to initialize.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.InitBlock(System.Void*,System.Byte,System.UInt32)\">\r\n      <summary>Initializes a block of memory at the given location with a given initial value.</summary>\r\n      <param name=\"startAddress\">The address of the start of the memory block to initialize.</param>\r\n      <param name=\"value\">The value to initialize the block to.</param>\r\n      <param name=\"byteCount\">The number of bytes to initialize.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.InitBlockUnaligned(System.Byte@,System.Byte,System.UInt32)\">\r\n      <summary>Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address.</summary>\r\n      <param name=\"startAddress\">The address of the start of the memory block to initialize.</param>\r\n      <param name=\"value\">The value to initialize the block to.</param>\r\n      <param name=\"byteCount\">The number of bytes to initialize.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.InitBlockUnaligned(System.Void*,System.Byte,System.UInt32)\">\r\n      <summary>Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address.</summary>\r\n      <param name=\"startAddress\">The address of the start of the memory block to initialize.</param>\r\n      <param name=\"value\">The value to initialize the block to.</param>\r\n      <param name=\"byteCount\">The number of bytes to initialize.</param>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.IsAddressGreaterThan``1(``0@,``0@)\">\r\n      <summary>Returns a value that indicates whether a specified reference is greater than another specified reference.</summary>\r\n      <param name=\"left\">The first value to compare.</param>\r\n      <param name=\"right\">The second value to compare.</param>\r\n      <typeparam name=\"T\">The type of the reference.</typeparam>\r\n      <returns>\r\n        <see langword=\"true\" /> if <paramref name=\"left\" /> is greater than <paramref name=\"right\" />; otherwise, <see langword=\"false\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.IsAddressLessThan``1(``0@,``0@)\">\r\n      <summary>Returns a value that indicates whether a specified reference is less than another specified reference.</summary>\r\n      <param name=\"left\">The first value to compare.</param>\r\n      <param name=\"right\">The second value to compare.</param>\r\n      <typeparam name=\"T\">The type of the reference.</typeparam>\r\n      <returns>\r\n        <see langword=\"true\" /> if <paramref name=\"left\" /> is less than <paramref name=\"right\" />; otherwise, <see langword=\"false\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.IsNullRef``1(``0@)\">\r\n      <summary>Determines if a given reference to a value of type <typeparamref name=\"T\" /> is a null reference.</summary>\r\n      <param name=\"source\">The reference to check.</param>\r\n      <typeparam name=\"T\">The type of the reference.</typeparam>\r\n      <returns>\r\n        <see langword=\"true\" /> if <paramref name=\"source\" /> is a null reference; otherwise, <see langword=\"false\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.NullRef``1\">\r\n      <summary>Returns a reference to a value of type <typeparamref name=\"T\" /> that is a null reference.</summary>\r\n      <typeparam name=\"T\">The type of the reference.</typeparam>\r\n      <returns>A reference to a value of type <typeparamref name=\"T\" /> that is a null reference.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Read``1(System.Void*)\">\r\n      <summary>Reads a value of type <typeparamref name=\"T\" /> from the given location.</summary>\r\n      <param name=\"source\">The location to read from.</param>\r\n      <typeparam name=\"T\">The type to read.</typeparam>\r\n      <returns>An object of type <typeparamref name=\"T\" /> read from the given location.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.ReadUnaligned``1(System.Byte@)\">\r\n      <summary>Reads a value of type <typeparamref name=\"T\" /> from the given location without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"source\">The location to read from.</param>\r\n      <typeparam name=\"T\">The type to read.</typeparam>\r\n      <returns>An object of type <typeparamref name=\"T\" /> read from the given location.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.ReadUnaligned``1(System.Void*)\">\r\n      <summary>Reads a value of type <typeparamref name=\"T\" /> from the given location without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"source\">The location to read from.</param>\r\n      <typeparam name=\"T\">The type to read.</typeparam>\r\n      <returns>An object of type <typeparamref name=\"T\" /> read from the given location.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.SizeOf``1\">\r\n      <summary>Returns the size of an object of the given type parameter.</summary>\r\n      <typeparam name=\"T\">The type of object whose size is retrieved.</typeparam>\r\n      <returns>The size of an object of type <typeparamref name=\"T\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.SkipInit``1(``0@)\">\r\n      <summary>Bypasses definite assignment rules for a given value.</summary>\r\n      <param name=\"value\">The uninitialized object.</param>\r\n      <typeparam name=\"T\">The type of the uninitialized object.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.Int32)\">\r\n      <summary>Subtracts an element offset from the given reference.</summary>\r\n      <param name=\"source\">The reference to subtract the offset from.</param>\r\n      <param name=\"elementOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the subtraction of offset from pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.IntPtr)\">\r\n      <summary>Subtracts an element offset from the given reference.</summary>\r\n      <param name=\"source\">The reference to subtract the offset from.</param>\r\n      <param name=\"elementOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the subtraction of offset from pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.UIntPtr)\">\r\n      <summary>Subtracts an element offset from the given reference.</summary>\r\n      <param name=\"source\">The reference to subtract the offset from.</param>\r\n      <param name=\"elementOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the subraction of offset from pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Subtract``1(System.Void*,System.Int32)\">\r\n      <summary>Subtracts an element offset from the given void pointer.</summary>\r\n      <param name=\"source\">The void pointer to subtract the offset from.</param>\r\n      <param name=\"elementOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of the void pointer.</typeparam>\r\n      <returns>A new void pointer that reflects the subtraction of offset from the specified pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.SubtractByteOffset``1(``0@,System.IntPtr)\">\r\n      <summary>Subtracts a byte offset from the given reference.</summary>\r\n      <param name=\"source\">The reference to subtract the offset from.</param>\r\n      <param name=\"byteOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the subtraction of byte offset from pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.SubtractByteOffset``1(``0@,System.UIntPtr)\">\r\n      <summary>Subtracts a byte offset from the given reference.</summary>\r\n      <param name=\"source\">The reference to subtract the offset from.</param>\r\n      <param name=\"byteOffset\">The offset to subtract.</param>\r\n      <typeparam name=\"T\">The type of reference.</typeparam>\r\n      <returns>A new reference that reflects the subraction of byte offset from pointer.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Unbox``1(System.Object)\">\r\n      <summary>Returns a <see langword=\"mutable ref\" /> to a boxed value.</summary>\r\n      <param name=\"box\">The value to unbox.</param>\r\n      <typeparam name=\"T\">The type to be unboxed.</typeparam>\r\n      <exception cref=\"T:System.NullReferenceException\">\r\n        <paramref name=\"box\" /> is <see langword=\"null\" />, and <typeparamref name=\"T\" /> is a non-nullable value type.</exception>\r\n      <exception cref=\"T:System.InvalidCastException\">\r\n        <paramref name=\"box\" /> is not a boxed value type.\r\n         \r\n-or-\r\n\r\n<paramref name=\"box\" /> is not a boxed <typeparamref name=\"T\" />.</exception>\r\n      <exception cref=\"T:System.TypeLoadException\">\r\n        <typeparamref name=\"T\" /> cannot be found.</exception>\r\n      <returns>A <see langword=\"mutable ref\" /> to the boxed value <paramref name=\"box\" />.</returns>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.Write``1(System.Void*,``0)\">\r\n      <summary>Writes a value of type <typeparamref name=\"T\" /> to the given location.</summary>\r\n      <param name=\"destination\">The location to write to.</param>\r\n      <param name=\"value\">The value to write.</param>\r\n      <typeparam name=\"T\">The type of value to write.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.WriteUnaligned``1(System.Byte@,``0)\">\r\n      <summary>Writes a value of type <typeparamref name=\"T\" /> to the given location without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"destination\">The location to write to.</param>\r\n      <param name=\"value\">The value to write.</param>\r\n      <typeparam name=\"T\">The type of value to write.</typeparam>\r\n    </member>\r\n    <member name=\"M:System.Runtime.CompilerServices.Unsafe.WriteUnaligned``1(System.Void*,``0)\">\r\n      <summary>Writes a value of type <typeparamref name=\"T\" /> to the given location without assuming architecture dependent alignment of the addresses.</summary>\r\n      <param name=\"destination\">The location to write to.</param>\r\n      <param name=\"value\">The value to write.</param>\r\n      <typeparam name=\"T\">The type of value to write.</typeparam>\r\n    </member>\r\n  </members>\r\n</doc>"
  },
  {
    "path": "packages/System.Runtime.CompilerServices.Unsafe.6.0.0/useSharedDesignerContext.txt",
    "content": ""
  },
  {
    "path": "packages/System.Security.Cryptography.Pkcs.6.0.1/LICENSE.TXT",
    "content": "The MIT License (MIT)\r\n\r\nCopyright (c) .NET Foundation and Contributors\r\n\r\nAll rights reserved.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n"
  },
  {
    "path": "packages/System.Security.Cryptography.Pkcs.6.0.1/THIRD-PARTY-NOTICES.TXT",
    "content": ".NET Runtime uses third-party libraries or other resources that may be\r\ndistributed under licenses different than the .NET Runtime software.\r\n\r\nIn the event that we accidentally failed to list a required notice, please\r\nbring it to our attention. Post an issue or email us:\r\n\r\n           dotnet@microsoft.com\r\n\r\nThe attached notices are provided for information only.\r\n\r\nLicense notice for ASP.NET\r\n-------------------------------\r\n\r\nCopyright (c) .NET Foundation. All rights reserved.\r\nLicensed under the Apache License, Version 2.0.\r\n\r\nAvailable at\r\nhttps://github.com/dotnet/aspnetcore/blob/main/LICENSE.txt\r\n\r\nLicense notice for Slicing-by-8\r\n-------------------------------\r\n\r\nhttp://sourceforge.net/projects/slicing-by-8/\r\n\r\nCopyright (c) 2004-2006 Intel Corporation - All Rights Reserved\r\n\r\n\r\nThis software program is licensed subject to the BSD License,  available at\r\nhttp://www.opensource.org/licenses/bsd-license.html.\r\n\r\n\r\nLicense notice for Unicode data\r\n-------------------------------\r\n\r\nhttps://www.unicode.org/license.html\r\n\r\nCopyright © 1991-2020 Unicode, Inc. All rights reserved.\r\nDistributed under the Terms of Use in https://www.unicode.org/copyright.html.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining\r\na copy of the Unicode data files and any associated documentation\r\n(the \"Data Files\") or Unicode software and any associated documentation\r\n(the \"Software\") to deal in the Data Files or Software\r\nwithout restriction, including without limitation the rights to use,\r\ncopy, modify, merge, publish, distribute, and/or sell copies of\r\nthe Data Files or Software, and to permit persons to whom the Data Files\r\nor Software are furnished to do so, provided that either\r\n(a) this copyright and permission notice appear with all copies\r\nof the Data Files or Software, or\r\n(b) this copyright and permission notice appear in associated\r\nDocumentation.\r\n\r\nTHE DATA FILES AND SOFTWARE ARE PROVIDED \"AS IS\", WITHOUT WARRANTY OF\r\nANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE\r\nWARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r\nNONINFRINGEMENT OF THIRD PARTY RIGHTS.\r\nIN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS\r\nNOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL\r\nDAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,\r\nDATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER\r\nTORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THE DATA FILES OR SOFTWARE.\r\n\r\nExcept as contained in this notice, the name of a copyright holder\r\nshall not be used in advertising or otherwise to promote the sale,\r\nuse or other dealings in these Data Files or Software without prior\r\nwritten authorization of the copyright holder.\r\n\r\nLicense notice for Zlib\r\n-----------------------\r\n\r\nhttps://github.com/madler/zlib\r\nhttp://zlib.net/zlib_license.html\r\n\r\n/* zlib.h -- interface of the 'zlib' general purpose compression library\r\n  version 1.2.11, January 15th, 2017\r\n\r\n  Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler\r\n\r\n  This software is provided 'as-is', without any express or implied\r\n  warranty.  In no event will the authors be held liable for any damages\r\n  arising from the use of this software.\r\n\r\n  Permission is granted to anyone to use this software for any purpose,\r\n  including commercial applications, and to alter it and redistribute it\r\n  freely, subject to the following restrictions:\r\n\r\n  1. The origin of this software must not be misrepresented; you must not\r\n     claim that you wrote the original software. If you use this software\r\n     in a product, an acknowledgment in the product documentation would be\r\n     appreciated but is not required.\r\n  2. Altered source versions must be plainly marked as such, and must not be\r\n     misrepresented as being the original software.\r\n  3. This notice may not be removed or altered from any source distribution.\r\n\r\n  Jean-loup Gailly        Mark Adler\r\n  jloup@gzip.org          madler@alumni.caltech.edu\r\n\r\n*/\r\n\r\nLicense notice for Mono\r\n-------------------------------\r\n\r\nhttp://www.mono-project.com/docs/about-mono/\r\n\r\nCopyright (c) .NET Foundation Contributors\r\n\r\nMIT License\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software  and associated documentation files (the Software), to deal\r\nin the Software without restriction,  including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense,  and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so,  subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n\r\nLicense notice for International Organization for Standardization\r\n-----------------------------------------------------------------\r\n\r\nPortions (C) International Organization for Standardization 1986:\r\n     Permission to copy in any form is granted for use with\r\n     conforming SGML systems and applications as defined in\r\n     ISO 8879, provided this notice is included in all copies.\r\n\r\nLicense notice for Intel\r\n------------------------\r\n\r\n\"Copyright (c) 2004-2006 Intel Corporation - All Rights Reserved\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are met:\r\n\r\n1. Redistributions of source code must retain the above copyright notice, this\r\nlist of conditions and the following disclaimer.\r\n\r\n2. Redistributions in binary form must reproduce the above copyright notice,\r\nthis list of conditions and the following disclaimer in the documentation\r\nand/or other materials provided with the distribution.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\r\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\r\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\r\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\r\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\r\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\r\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\r\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r\n\r\nLicense notice for Xamarin and Novell\r\n-------------------------------------\r\n\r\nCopyright (c) 2015 Xamarin, Inc (http://www.xamarin.com)\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n\r\nCopyright (c) 2011 Novell, Inc (http://www.novell.com)\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n\r\nThird party notice for W3C\r\n--------------------------\r\n\r\n\"W3C SOFTWARE AND DOCUMENT NOTICE AND LICENSE\r\nStatus: This license takes effect 13 May, 2015.\r\nThis work is being provided by the copyright holders under the following license.\r\nLicense\r\nBy obtaining and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions.\r\nPermission to copy, modify, and distribute this work, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the work or portions thereof, including modifications:\r\nThe full text of this NOTICE in a location viewable to users of the redistributed or derivative work.\r\nAny pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the W3C Software and Document Short Notice should be included.\r\nNotice of any changes or modifications, through a copyright statement on the new code or document such as \"This software or document includes material copied from or derived from [title and URI of the W3C document]. Copyright © [YEAR] W3C® (MIT, ERCIM, Keio, Beihang).\"\r\nDisclaimers\r\nTHIS WORK IS PROVIDED \"AS IS,\" AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENT WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.\r\nCOPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENT.\r\nThe name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the work without specific, written prior permission. Title to copyright in this work will at all times remain with copyright holders.\"\r\n\r\nLicense notice for Bit Twiddling Hacks\r\n--------------------------------------\r\n\r\nBit Twiddling Hacks\r\n\r\nBy Sean Eron Anderson\r\nseander@cs.stanford.edu\r\n\r\nIndividually, the code snippets here are in the public domain (unless otherwise\r\nnoted) — feel free to use them however you please. The aggregate collection and\r\ndescriptions are © 1997-2005 Sean Eron Anderson. The code and descriptions are\r\ndistributed in the hope that they will be useful, but WITHOUT ANY WARRANTY and\r\nwithout even the implied warranty of merchantability or fitness for a particular\r\npurpose.\r\n\r\nLicense notice for Brotli\r\n--------------------------------------\r\n\r\nCopyright (c) 2009, 2010, 2013-2016 by the Brotli Authors.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n\r\ncompress_fragment.c:\r\nCopyright (c) 2011, Google Inc.\r\nAll rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are\r\nmet:\r\n\r\n    * Redistributions of source code must retain the above copyright\r\nnotice, this list of conditions and the following disclaimer.\r\n    * Redistributions in binary form must reproduce the above\r\ncopyright notice, this list of conditions and the following disclaimer\r\nin the documentation and/or other materials provided with the\r\ndistribution.\r\n    * Neither the name of Google Inc. nor the names of its\r\ncontributors may be used to endorse or promote products derived from\r\nthis software without specific prior written permission.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\r\n\"\"AS IS\"\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\r\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\r\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\r\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r\n\r\ndecode_fuzzer.c:\r\nCopyright (c) 2015 The Chromium Authors. All rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are\r\nmet:\r\n\r\n   * Redistributions of source code must retain the above copyright\r\nnotice, this list of conditions and the following disclaimer.\r\n   * Redistributions in binary form must reproduce the above\r\ncopyright notice, this list of conditions and the following disclaimer\r\nin the documentation and/or other materials provided with the\r\ndistribution.\r\n   * Neither the name of Google Inc. nor the names of its\r\ncontributors may be used to endorse or promote products derived from\r\nthis software without specific prior written permission.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\r\n\"\"AS IS\"\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\r\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\r\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\r\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\"\r\n\r\nLicense notice for Json.NET\r\n-------------------------------\r\n\r\nhttps://github.com/JamesNK/Newtonsoft.Json/blob/master/LICENSE.md\r\n\r\nThe MIT License (MIT)\r\n\r\nCopyright (c) 2007 James Newton-King\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy of\r\nthis software and associated documentation files (the \"Software\"), to deal in\r\nthe Software without restriction, including without limitation the rights to\r\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\r\nthe Software, and to permit persons to whom the Software is furnished to do so,\r\nsubject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\r\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n\r\nLicense notice for vectorized base64 encoding / decoding\r\n--------------------------------------------------------\r\n\r\nCopyright (c) 2005-2007, Nick Galbreath\r\nCopyright (c) 2013-2017, Alfred Klomp\r\nCopyright (c) 2015-2017, Wojciech Mula\r\nCopyright (c) 2016-2017, Matthieu Darbois\r\nAll rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are\r\nmet:\r\n\r\n- Redistributions of source code must retain the above copyright notice,\r\n  this list of conditions and the following disclaimer.\r\n\r\n- Redistributions in binary form must reproduce the above copyright\r\n  notice, this list of conditions and the following disclaimer in the\r\n  documentation and/or other materials provided with the distribution.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\r\nIS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\r\nTO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A\r\nPARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\r\nHOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED\r\nTO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\r\nPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\r\nLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\r\nNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\r\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r\n\r\nLicense notice for RFC 3492\r\n---------------------------\r\n\r\nThe punycode implementation is based on the sample code in RFC 3492\r\n\r\nCopyright (C) The Internet Society (2003).  All Rights Reserved.\r\n\r\nThis document and translations of it may be copied and furnished to\r\nothers, and derivative works that comment on or otherwise explain it\r\nor assist in its implementation may be prepared, copied, published\r\nand distributed, in whole or in part, without restriction of any\r\nkind, provided that the above copyright notice and this paragraph are\r\nincluded on all such copies and derivative works.  However, this\r\ndocument itself may not be modified in any way, such as by removing\r\nthe copyright notice or references to the Internet Society or other\r\nInternet organizations, except as needed for the purpose of\r\ndeveloping Internet standards in which case the procedures for\r\ncopyrights defined in the Internet Standards process must be\r\nfollowed, or as required to translate it into languages other than\r\nEnglish.\r\n\r\nThe limited permissions granted above are perpetual and will not be\r\nrevoked by the Internet Society or its successors or assigns.\r\n\r\nThis document and the information contained herein is provided on an\r\n\"AS IS\" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING\r\nTASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING\r\nBUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION\r\nHEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF\r\nMERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.\r\n\r\nLicense notice for Algorithm from Internet Draft document \"UUIDs and GUIDs\"\r\n---------------------------------------------------------------------------\r\n\r\nCopyright (c) 1990- 1993, 1996 Open Software Foundation, Inc.\r\nCopyright (c) 1989 by Hewlett-Packard Company, Palo Alto, Ca. &\r\nDigital Equipment Corporation, Maynard, Mass.\r\nTo anyone who acknowledges that this file is provided \"AS IS\"\r\nwithout any express or implied warranty: permission to use, copy,\r\nmodify, and distribute this file for any purpose is hereby\r\ngranted without fee, provided that the above copyright notices and\r\nthis notice appears in all source code copies, and that none of\r\nthe names of Open Software Foundation, Inc., Hewlett-Packard\r\nCompany, or Digital Equipment Corporation be used in advertising\r\nor publicity pertaining to distribution of the software without\r\nspecific, written prior permission.  Neither Open Software\r\nFoundation, Inc., Hewlett-Packard Company, Microsoft, nor Digital Equipment\r\nCorporation makes any representations about the suitability of\r\nthis software for any purpose.\r\n\r\nCopyright(C) The Internet Society 1997. All Rights Reserved.\r\n\r\nThis document and translations of it may be copied and furnished to others,\r\nand derivative works that comment on or otherwise explain it or assist in\r\nits implementation may be prepared, copied, published and distributed, in\r\nwhole or in part, without restriction of any kind, provided that the above\r\ncopyright notice and this paragraph are included on all such copies and\r\nderivative works.However, this document itself may not be modified in any\r\nway, such as by removing the copyright notice or references to the Internet\r\nSociety or other Internet organizations, except as needed for the purpose of\r\ndeveloping Internet standards in which case the procedures for copyrights\r\ndefined in the Internet Standards process must be followed, or as required\r\nto translate it into languages other than English.\r\n\r\nThe limited permissions granted above are perpetual and will not be revoked\r\nby the Internet Society or its successors or assigns.\r\n\r\nThis document and the information contained herein is provided on an \"AS IS\"\r\nbasis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING TASK FORCE\r\nDISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO\r\nANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY\r\nRIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A\r\nPARTICULAR PURPOSE.\r\n\r\nLicense notice for Algorithm from RFC 4122 -\r\nA Universally Unique IDentifier (UUID) URN Namespace\r\n----------------------------------------------------\r\n\r\nCopyright (c) 1990- 1993, 1996 Open Software Foundation, Inc.\r\nCopyright (c) 1989 by Hewlett-Packard Company, Palo Alto, Ca. &\r\nDigital Equipment Corporation, Maynard, Mass.\r\nCopyright (c) 1998 Microsoft.\r\nTo anyone who acknowledges that this file is provided \"AS IS\"\r\nwithout any express or implied warranty: permission to use, copy,\r\nmodify, and distribute this file for any purpose is hereby\r\ngranted without fee, provided that the above copyright notices and\r\nthis notice appears in all source code copies, and that none of\r\nthe names of Open Software Foundation, Inc., Hewlett-Packard\r\nCompany, Microsoft, or Digital Equipment Corporation be used in\r\nadvertising or publicity pertaining to distribution of the software\r\nwithout specific, written prior permission. Neither Open Software\r\nFoundation, Inc., Hewlett-Packard Company, Microsoft, nor Digital\r\nEquipment Corporation makes any representations about the\r\nsuitability of this software for any purpose.\"\r\n\r\nLicense notice for The LLVM Compiler Infrastructure\r\n---------------------------------------------------\r\n\r\nDeveloped by:\r\n\r\n    LLVM Team\r\n\r\n    University of Illinois at Urbana-Champaign\r\n\r\n    http://llvm.org\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy of\r\nthis software and associated documentation files (the \"Software\"), to deal with\r\nthe Software without restriction, including without limitation the rights to\r\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\r\nof the Software, and to permit persons to whom the Software is furnished to do\r\nso, subject to the following conditions:\r\n\r\n    * Redistributions of source code must retain the above copyright notice,\r\n      this list of conditions and the following disclaimers.\r\n\r\n    * Redistributions in binary form must reproduce the above copyright notice,\r\n      this list of conditions and the following disclaimers in the\r\n      documentation and/or other materials provided with the distribution.\r\n\r\n    * Neither the names of the LLVM Team, University of Illinois at\r\n      Urbana-Champaign, nor the names of its contributors may be used to\r\n      endorse or promote products derived from this Software without specific\r\n      prior written permission.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE\r\nCONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE\r\nSOFTWARE.\r\n\r\nLicense notice for Bob Jenkins\r\n------------------------------\r\n\r\nBy Bob Jenkins, 1996.  bob_jenkins@burtleburtle.net.  You may use this\r\ncode any way you wish, private, educational, or commercial.  It's free.\r\n\r\nLicense notice for Greg Parker\r\n------------------------------\r\n\r\nGreg Parker     gparker@cs.stanford.edu     December 2000\r\nThis code is in the public domain and may be copied or modified without\r\npermission.\r\n\r\nLicense notice for libunwind based code\r\n----------------------------------------\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining\r\na copy of this software and associated documentation files (the\r\n\"Software\"), to deal in the Software without restriction, including\r\nwithout limitation the rights to use, copy, modify, merge, publish,\r\ndistribute, sublicense, and/or sell copies of the Software, and to\r\npermit persons to whom the Software is furnished to do so, subject to\r\nthe following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be\r\nincluded in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n\r\nLicense notice for Printing Floating-Point Numbers (Dragon4)\r\n------------------------------------------------------------\r\n\r\n/******************************************************************************\r\n  Copyright (c) 2014 Ryan Juckett\r\n  http://www.ryanjuckett.com/\r\n\r\n  This software is provided 'as-is', without any express or implied\r\n  warranty. In no event will the authors be held liable for any damages\r\n  arising from the use of this software.\r\n\r\n  Permission is granted to anyone to use this software for any purpose,\r\n  including commercial applications, and to alter it and redistribute it\r\n  freely, subject to the following restrictions:\r\n\r\n  1. The origin of this software must not be misrepresented; you must not\r\n     claim that you wrote the original software. If you use this software\r\n     in a product, an acknowledgment in the product documentation would be\r\n     appreciated but is not required.\r\n\r\n  2. Altered source versions must be plainly marked as such, and must not be\r\n     misrepresented as being the original software.\r\n\r\n  3. This notice may not be removed or altered from any source\r\n     distribution.\r\n******************************************************************************/\r\n\r\nLicense notice for Printing Floating-point Numbers (Grisu3)\r\n-----------------------------------------------------------\r\n\r\nCopyright 2012 the V8 project authors. All rights reserved.\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are\r\nmet:\r\n\r\n    * Redistributions of source code must retain the above copyright\r\n      notice, this list of conditions and the following disclaimer.\r\n    * Redistributions in binary form must reproduce the above\r\n      copyright notice, this list of conditions and the following\r\n      disclaimer in the documentation and/or other materials provided\r\n      with the distribution.\r\n    * Neither the name of Google Inc. nor the names of its\r\n      contributors may be used to endorse or promote products derived\r\n      from this software without specific prior written permission.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\r\n\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\r\nLIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\r\nA PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\r\nOWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r\nSPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\r\nLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r\nDATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r\nTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r\n\r\nLicense notice for xxHash\r\n-------------------------\r\n\r\nxxHash Library\r\nCopyright (c) 2012-2014, Yann Collet\r\nAll rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without modification,\r\nare permitted provided that the following conditions are met:\r\n\r\n* Redistributions of source code must retain the above copyright notice, this\r\n  list of conditions and the following disclaimer.\r\n\r\n* Redistributions in binary form must reproduce the above copyright notice, this\r\n  list of conditions and the following disclaimer in the documentation and/or\r\n  other materials provided with the distribution.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\r\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\r\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\r\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\r\nANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\r\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\r\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\r\nANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\r\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r\n\r\nLicense notice for Berkeley SoftFloat Release 3e\r\n------------------------------------------------\r\n\r\nhttps://github.com/ucb-bar/berkeley-softfloat-3\r\nhttps://github.com/ucb-bar/berkeley-softfloat-3/blob/master/COPYING.txt\r\n\r\nLicense for Berkeley SoftFloat Release 3e\r\n\r\nJohn R. Hauser\r\n2018 January 20\r\n\r\nThe following applies to the whole of SoftFloat Release 3e as well as to\r\neach source file individually.\r\n\r\nCopyright 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 The Regents of the\r\nUniversity of California.  All rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are met:\r\n\r\n 1. Redistributions of source code must retain the above copyright notice,\r\n    this list of conditions, and the following disclaimer.\r\n\r\n 2. Redistributions in binary form must reproduce the above copyright\r\n    notice, this list of conditions, and the following disclaimer in the\r\n    documentation and/or other materials provided with the distribution.\r\n\r\n 3. Neither the name of the University nor the names of its contributors\r\n    may be used to endorse or promote products derived from this software\r\n    without specific prior written permission.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS \"AS IS\", AND ANY\r\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\r\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE\r\nDISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY\r\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\r\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\r\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\r\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\r\nTHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r\n\r\nLicense notice for xoshiro RNGs\r\n--------------------------------\r\n\r\nWritten in 2018 by David Blackman and Sebastiano Vigna (vigna@acm.org)\r\n\r\nTo the extent possible under law, the author has dedicated all copyright\r\nand related and neighboring rights to this software to the public domain\r\nworldwide. This software is distributed without any warranty.\r\n\r\nSee <http://creativecommons.org/publicdomain/zero/1.0/>.\r\n\r\nLicense for fastmod (https://github.com/lemire/fastmod) and ibm-fpgen (https://github.com/nigeltao/parse-number-fxx-test-data)\r\n--------------------------------------\r\n\r\n   Copyright 2018 Daniel Lemire\r\n\r\n   Licensed under the Apache License, Version 2.0 (the \"License\");\r\n   you may not use this file except in compliance with the License.\r\n   You may obtain a copy of the License at\r\n\r\n       http://www.apache.org/licenses/LICENSE-2.0\r\n\r\n   Unless required by applicable law or agreed to in writing, software\r\n   distributed under the License is distributed on an \"AS IS\" BASIS,\r\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n   See the License for the specific language governing permissions and\r\n   limitations under the License.\r\n\r\nLicense notice for The C++ REST SDK\r\n-----------------------------------\r\n\r\nC++ REST SDK\r\n\r\nThe MIT License (MIT)\r\n\r\nCopyright (c) Microsoft Corporation\r\n\r\nAll rights reserved.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy of\r\nthis software and associated documentation files (the \"Software\"), to deal in\r\nthe Software without restriction, including without limitation the rights to\r\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\r\nthe Software, and to permit persons to whom the Software is furnished to do so,\r\nsubject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n\r\nLicense notice for MessagePack-CSharp\r\n-------------------------------------\r\n\r\nMessagePack for C#\r\n\r\nMIT License\r\n\r\nCopyright (c) 2017 Yoshifumi Kawai\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n\r\nLicense notice for lz4net\r\n-------------------------------------\r\n\r\nlz4net\r\n\r\nCopyright (c) 2013-2017, Milosz Krajewski\r\n\r\nAll rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\r\n\r\nRedistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\r\n\r\nRedistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r\n\r\nLicense notice for Nerdbank.Streams\r\n-----------------------------------\r\n\r\nThe MIT License (MIT)\r\n\r\nCopyright (c) Andrew Arnott\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n\r\nLicense notice for RapidJSON\r\n----------------------------\r\n\r\nTencent is pleased to support the open source community by making RapidJSON available.\r\n\r\nCopyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved.\r\n\r\nLicensed under the MIT License (the \"License\"); you may not use this file except\r\nin compliance with the License. You may obtain a copy of the License at\r\n\r\nhttp://opensource.org/licenses/MIT\r\n\r\nUnless required by applicable law or agreed to in writing, software distributed\r\nunder the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR\r\nCONDITIONS OF ANY KIND, either express or implied. See the License for the\r\nspecific language governing permissions and limitations under the License.\r\n\r\nLicense notice for DirectX Math Library\r\n---------------------------------------\r\n\r\nhttps://github.com/microsoft/DirectXMath/blob/master/LICENSE\r\n\r\n                               The MIT License (MIT)\r\n\r\nCopyright (c) 2011-2020 Microsoft Corp\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy of this\r\nsoftware and associated documentation files (the \"Software\"), to deal in the Software\r\nwithout restriction, including without limitation the rights to use, copy, modify,\r\nmerge, publish, distribute, sublicense, and/or sell copies of the Software, and to\r\npermit persons to whom the Software is furnished to do so, subject to the following\r\nconditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all copies\r\nor substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,\r\nINCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A\r\nPARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\r\nHOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF\r\nCONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE\r\nOR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n\r\nLicense notice for ldap4net\r\n---------------------------\r\n\r\nThe MIT License (MIT)\r\n\r\nCopyright (c) 2018 Alexander Chermyanin\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n\r\nLicense notice for vectorized sorting code\r\n------------------------------------------\r\n\r\nMIT License\r\n\r\nCopyright (c) 2020 Dan Shechter\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n\r\nLicense notice for musl\r\n-----------------------\r\n\r\nmusl as a whole is licensed under the following standard MIT license:\r\n\r\nCopyright © 2005-2020 Rich Felker, et al.\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining\r\na copy of this software and associated documentation files (the\r\n\"Software\"), to deal in the Software without restriction, including\r\nwithout limitation the rights to use, copy, modify, merge, publish,\r\ndistribute, sublicense, and/or sell copies of the Software, and to\r\npermit persons to whom the Software is furnished to do so, subject to\r\nthe following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be\r\nincluded in all copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\r\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\r\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\r\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\r\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r\n\r\n\r\nLicense notice for \"Faster Unsigned Division by Constants\"\r\n------------------------------\r\n\r\nReference implementations of computing and using the \"magic number\" approach to dividing\r\nby constants, including codegen instructions. The unsigned division incorporates the\r\n\"round down\" optimization per ridiculous_fish.\r\n\r\nThis is free and unencumbered software. Any copyright is dedicated to the Public Domain.\r\n\r\n\r\nLicense notice for mimalloc\r\n-----------------------------------\r\n\r\nMIT License\r\n\r\nCopyright (c) 2019 Microsoft Corporation, Daan Leijen\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n\r\nLicense for remote stack unwind (https://github.com/llvm/llvm-project/blob/main/lldb/source/Symbol/CompactUnwindInfo.cpp)\r\n--------------------------------------\r\n\r\nCopyright 2019 LLVM Project\r\n\r\nLicensed under the Apache License, Version 2.0 (the \"License\") with LLVM Exceptions;\r\nyou may not use this file except in compliance with the License.\r\nYou may obtain a copy of the License at\r\n\r\nhttps://llvm.org/LICENSE.txt\r\n\r\nUnless required by applicable law or agreed to in writing, software\r\ndistributed under the License is distributed on an \"AS IS\" BASIS,\r\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\nSee the License for the specific language governing permissions and\r\nlimitations under the License.\r\n\r\n"
  },
  {
    "path": "packages/System.Security.Cryptography.Pkcs.6.0.1/buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets",
    "content": "<Project InitialTargets=\"NETStandardCompatError_System_Security_Cryptography_Pkcs_netcoreapp3_1\">\r\n  <Target Name=\"NETStandardCompatError_System_Security_Cryptography_Pkcs_netcoreapp3_1\"\r\n          Condition=\"'$(SuppressTfmSupportBuildWarnings)' == ''\">\r\n    <Error Text=\"System.Security.Cryptography.Pkcs doesn't support $(TargetFramework). Consider updating your TargetFramework to netcoreapp3.1 or later.\" />\r\n  </Target>\r\n</Project>\r\n"
  },
  {
    "path": "packages/System.Security.Cryptography.Pkcs.6.0.1/buildTransitive/netcoreapp3.1/_._",
    "content": ""
  },
  {
    "path": "packages/System.Security.Cryptography.Pkcs.6.0.1/lib/net461/System.Security.Cryptography.Pkcs.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>System.Security.Cryptography.Pkcs</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.AllowNullAttribute\">\r\n            <summary>Specifies that null is allowed as an input even if the corresponding type disallows it.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.DisallowNullAttribute\">\r\n            <summary>Specifies that null is disallowed as an input even if the corresponding type allows it.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MaybeNullAttribute\">\r\n            <summary>Specifies that an output may be null even if the corresponding type disallows it.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.NotNullAttribute\">\r\n            <summary>Specifies that an output will not be null even if the corresponding type allows it. Specifies that an input argument was not null when the call returns.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute\">\r\n            <summary>Specifies that when a method returns <see cref=\"P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue\"/>, the parameter may be null even if the corresponding type disallows it.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.#ctor(System.Boolean)\">\r\n            <summary>Initializes the attribute with the specified return value condition.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter may be null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue\">\r\n            <summary>Gets the return value condition.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute\">\r\n            <summary>Specifies that when a method returns <see cref=\"P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue\"/>, the parameter will not be null even if the corresponding type allows it.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.#ctor(System.Boolean)\">\r\n            <summary>Initializes the attribute with the specified return value condition.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter will not be null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue\">\r\n            <summary>Gets the return value condition.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute\">\r\n            <summary>Specifies that the output will be non-null if the named parameter is non-null.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.#ctor(System.String)\">\r\n            <summary>Initializes the attribute with the associated parameter name.</summary>\r\n            <param name=\"parameterName\">\r\n            The associated parameter name.  The output will be non-null if the argument to the parameter specified is non-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.ParameterName\">\r\n            <summary>Gets the associated parameter name.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.DoesNotReturnAttribute\">\r\n            <summary>Applied to a method that will never return under any circumstance.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute\">\r\n            <summary>Specifies that the method will not return if the associated Boolean parameter is passed the specified value.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.#ctor(System.Boolean)\">\r\n            <summary>Initializes the attribute with the specified parameter value.</summary>\r\n            <param name=\"parameterValue\">\r\n            The condition parameter value. Code after the method will be considered unreachable by diagnostics if the argument to\r\n            the associated parameter matches this value.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.ParameterValue\">\r\n            <summary>Gets the condition parameter value.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute\">\r\n            <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String)\">\r\n            <summary>Initializes the attribute with a field or property member.</summary>\r\n            <param name=\"member\">\r\n            The field or property member that is promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String[])\">\r\n            <summary>Initializes the attribute with the list of field and property members.</summary>\r\n            <param name=\"members\">\r\n            The list of field and property members that are promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members\">\r\n            <summary>Gets field or property member names.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute\">\r\n            <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values when returning with the specified return value condition.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String)\">\r\n            <summary>Initializes the attribute with the specified return value condition and a field or property member.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter will not be null.\r\n            </param>\r\n            <param name=\"member\">\r\n            The field or property member that is promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String[])\">\r\n            <summary>Initializes the attribute with the specified return value condition and list of field and property members.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter will not be null.\r\n            </param>\r\n            <param name=\"members\">\r\n            The list of field and property members that are promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.ReturnValue\">\r\n            <summary>Gets the return value condition.</summary>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members\">\r\n            <summary>Gets field or property member names.</summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.OSPlatformAttribute\">\r\n            <summary>\r\n            Base type for all platform-specific API attributes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.TargetPlatformAttribute\">\r\n            <summary>\r\n            Records the platform that the project targeted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.SupportedOSPlatformAttribute\">\r\n             <summary>\r\n             Records the operating system (and minimum version) that supports an API. Multiple attributes can be\r\n             applied to indicate support on multiple operating systems.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.SupportedOSPlatformAttribute\" />\r\n             or use guards to prevent calls to APIs on unsupported operating systems.\r\n            \r\n             A given platform should only be specified once.\r\n             </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.UnsupportedOSPlatformAttribute\">\r\n            <summary>\r\n            Marks APIs that were removed in a given operating system version.\r\n            </summary>\r\n            <remarks>\r\n            Primarily used by OS bindings to indicate APIs that are only available in\r\n            earlier versions.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute\">\r\n             <summary>\r\n             Annotates a custom guard field, property or method with a supported platform name and optional version.\r\n             Multiple attributes can be applied to indicate guard for multiple supported platforms.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute\" /> to a field, property or method\r\n             and use that field, property or method in a conditional or assert statements in order to safely call platform specific APIs.\r\n            \r\n             The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard.\r\n             </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute\">\r\n             <summary>\r\n             Annotates the custom guard field, property or method with an unsupported platform name and optional version.\r\n             Multiple attributes can be applied to indicate guard for multiple unsupported platforms.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute\" /> to a field, property or method\r\n             and use that  field, property or method in a conditional or assert statements as a guard to safely call APIs unsupported on those platforms.\r\n            \r\n             The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard.\r\n             </remarks>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/System.Security.Cryptography.Pkcs.6.0.1/lib/net6.0/System.Security.Cryptography.Pkcs.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>System.Security.Cryptography.Pkcs</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decode(System.ReadOnlySpan{System.Byte})\">\r\n            <summary>\r\n              Decodes the provided data as a CMS/PKCS#7 EnvelopedData message.\r\n            </summary>\r\n            <param name=\"encodedMessage\">\r\n              The data to decode.\r\n            </param>\r\n            <exception cref=\"T:System.Security.Cryptography.CryptographicException\">\r\n              The <paramref name=\"encodedMessage\"/> parameter was not successfully decoded.\r\n            </exception>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Pkcs12CertBag.#ctor(System.Security.Cryptography.Oid,System.ReadOnlyMemory{System.Byte})\">\r\n            <summary>\r\n            Create a CertBag for a specified certificate type and encoding.\r\n            </summary>\r\n            <param name=\"certificateType\">The identifier for the certificate type</param>\r\n            <param name=\"encodedCertificate\">The encoded value</param>\r\n            <remarks>\r\n            No validation is done to ensure that the <paramref name=\"encodedCertificate\"/> value is\r\n            correct for the indicated <paramref name=\"certificateType\"/>.  Note that for X.509\r\n            public-key certificates the correct encoding for a CertBag value is to wrap the\r\n            DER-encoded certificate in an OCTET STRING.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.CreateFromHash(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Oid,System.Security.Cryptography.Oid,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Boolean,System.Security.Cryptography.X509Certificates.X509ExtensionCollection)\">\r\n            <summary>\r\n            Create a timestamp request using a pre-computed hash value.\r\n            </summary>\r\n            <param name=\"hash\">The pre-computed hash value to be timestamped.</param>\r\n            <param name=\"hashAlgorithmId\">\r\n              The Object Identifier (OID) for the hash algorithm which produced <paramref name=\"hash\"/>.\r\n            </param>\r\n            <param name=\"requestedPolicyId\">\r\n              The Object Identifier (OID) for a timestamp policy the Timestamp Authority (TSA) should use,\r\n              or <c>null</c> to express no preference.\r\n            </param>\r\n            <param name=\"nonce\">\r\n              An optional nonce (number used once) to uniquely identify this request to pair it with the response.\r\n              The value is interpreted as an unsigned big-endian integer and may be normalized to the encoding format.\r\n            </param>\r\n            <param name=\"requestSignerCertificates\">\r\n              Indicates whether the Timestamp Authority (TSA) must (<c>true</c>) or must not (<c>false</c>) include\r\n              the signing certificate in the issued timestamp token.\r\n            </param>\r\n            <param name=\"extensions\">RFC3161 extensions to present with the request.</param>\r\n            <returns>\r\n              An <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest\"/> representing the chosen values.\r\n            </returns>\r\n            <seealso cref=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.Encode\"/>\r\n            <seealso cref=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.TryEncode(System.Span{System.Byte},System.Int32@)\"/>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.AsSignedCms\">\r\n            <summary>\r\n            Get a SignedCms representation of the RFC3161 Timestamp Token.\r\n            </summary>\r\n            <returns>The SignedCms representation of the RFC3161 Timestamp Token.</returns>\r\n            <remarks>\r\n            Successive calls to this method return the same object.\r\n            The SignedCms class is mutable, but changes to that object are not reflected in the\r\n            <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken\"/> object which produced it.\r\n            The value from calling <see cref=\"M:System.Security.Cryptography.Pkcs.SignedCms.Encode\"/> can be interpreted again as an\r\n            <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken\"/> via another call to <see cref=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.TryDecode(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Pkcs.Rfc3161TimestampToken@,System.Int32@)\"/>.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\">\r\n            <summary>\r\n            Represents the timestamp token information class defined in RFC3161 as TSTInfo.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.#ctor(System.Security.Cryptography.Oid,System.Security.Cryptography.Oid,System.ReadOnlyMemory{System.Byte},System.ReadOnlyMemory{System.Byte},System.DateTimeOffset,System.Nullable{System.Int64},System.Boolean,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Security.Cryptography.X509Certificates.X509ExtensionCollection)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\" /> class with the specified parameters.\r\n            </summary>\r\n            <param name=\"policyId\">An OID representing the TSA's policy under which the response was produced.</param>\r\n            <param name=\"hashAlgorithmId\">A hash algorithm OID of the data to be timestamped.</param>\r\n            <param name=\"messageHash\">A hash value of the data to be timestamped.</param>\r\n            <param name=\"serialNumber\">An integer assigned by the TSA to the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\"/>.</param>\r\n            <param name=\"timestamp\">The timestamp encoded in the token.</param>\r\n            <param name=\"accuracyInMicroseconds\">The accuracy with which <paramref name=\"timestamp\"/> is compared. Also see <paramref name=\"isOrdering\"/>.</param>\r\n            <param name=\"isOrdering\"><see langword=\"true\" /> to ensure that every timestamp token from the same TSA can always be ordered based on the <paramref name=\"timestamp\"/>, regardless of the accuracy; <see langword=\"false\" /> to make <paramref name=\"timestamp\"/> indicate when token has been created by the TSA.</param>\r\n            <param name=\"nonce\">The nonce associated with this timestamp token. Using a nonce always allows to detect replays, and hence its use is recommended.</param>\r\n            <param name=\"timestampAuthorityName\">The hint in the TSA name identification. The actual identification of the entity that signed the response will always occur through the use of the certificate identifier.</param>\r\n            <param name=\"extensions\">The extension values associated with the timestamp.</param>\r\n            <remarks>If <paramref name=\"hashAlgorithmId\" />, <paramref name=\"messageHash\" />, <paramref name=\"policyId\" /> or <paramref name=\"nonce\" /> are present in the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest\"/>, then the same value should be used. If <paramref name=\"accuracyInMicroseconds\"/> is not provided, then the accuracy may be available through other means such as i.e. <paramref name=\"policyId\" />.</remarks>\r\n            <exception cref=\"T:System.Security.Cryptography.CryptographicException\">ASN.1 corrupted data.</exception>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Version\">\r\n            <summary>\r\n            Gets the version of the timestamp token.\r\n            </summary>\r\n            <value>The version of the timestamp token.</value>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.PolicyId\">\r\n            <summary>\r\n            Gets an OID representing the TSA's policy under which the response was produced.\r\n            </summary>\r\n            <value>An OID representing the TSA's policy under which the response was produced.</value>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.HashAlgorithmId\">\r\n            <summary>\r\n            Gets an OID of the hash algorithm.\r\n            </summary>\r\n            <value>An OID of the hash algorithm.</value>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetMessageHash\">\r\n            <summary>\r\n            Gets the data representing the message hash.\r\n            </summary>\r\n            <returns>The data representing the message hash.</returns>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetSerialNumber\">\r\n            <summary>\r\n            Gets an integer assigned by the TSA to the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\"/>.\r\n            </summary>\r\n            <returns>An integer assigned by the TSA to the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\">\r\n            <summary>\r\n            Gets the timestamp encoded in the token.\r\n            </summary>\r\n            <value>The timestamp encoded in the token.</value>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.AccuracyInMicroseconds\">\r\n            <summary>\r\n            Gets the accuracy with which <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/> is compared.\r\n            </summary>\r\n            <seealso cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.IsOrdering\" />\r\n            <value>The accuracy with which <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/> is compared.</value>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.IsOrdering\">\r\n            <summary>\r\n            Gets a value indicating if every timestamp token from the same TSA can always be ordered based on the <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/>, regardless of the accuracy; If <see langword=\"false\" />, <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/> indicates when the token has been created by the TSA.\r\n            </summary>\r\n            <value>A value indicating if every timestamp token from the same TSA can always be ordered based on the <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/>.</value>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetNonce\">\r\n            <summary>\r\n            Gets the nonce associated with this timestamp token.\r\n            </summary>\r\n            <returns>The nonce associated with this timestamp token.</returns>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.HasExtensions\">\r\n            <summary>\r\n            Gets a value indicating whether there are any extensions associated with this timestamp token.\r\n            </summary>\r\n            <value>A value indicating whether there are any extensions associated with this timestamp token.</value>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetTimestampAuthorityName\">\r\n            <summary>\r\n            Gets the data representing the hint in the TSA name identification.\r\n            </summary>\r\n            <returns>The data representing the hint in the TSA name identification.</returns>\r\n            <remarks>\r\n            The actual identification of the entity that signed the response\r\n            will always occur through the use of the certificate identifier (ESSCertID Attribute)\r\n            inside a SigningCertificate attribute which is part of the signer info.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetExtensions\">\r\n            <summary>\r\n            Gets the extension values associated with the timestamp.\r\n            </summary>\r\n            <returns>The extension values associated with the timestamp.</returns>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Encode\">\r\n            <summary>\r\n            Encodes this object into a TSTInfo value\r\n            </summary>\r\n            <returns>The encoded TSTInfo value.</returns>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.TryEncode(System.Span{System.Byte},System.Int32@)\">\r\n            <summary>\r\n            Attempts to encode this object as a TSTInfo value, writing the result into the provided buffer.\r\n            </summary>\r\n            <param name=\"destination\">The destination buffer.</param>\r\n            <param name=\"bytesWritten\">When this method returns <see langword=\"true\" />, contains the bytes written to the <paramref name=\"destination\" /> buffer.</param>\r\n            <returns><see langword=\"true\" /> if the operation succeeded; <see langword=\"false\" /> if the buffer size was insufficient.</returns>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.TryDecode(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo@,System.Int32@)\">\r\n            <summary>\r\n            Decodes an encoded TSTInfo value.\r\n            </summary>\r\n            <param name=\"encodedBytes\">The input or source buffer.</param>\r\n            <param name=\"timestampTokenInfo\">When this method returns <see langword=\"true\" />, the decoded data. When this method returns <see langword=\"false\" />, the value is <see langword=\"null\" />, meaning the data could not be decoded.</param>\r\n            <param name=\"bytesConsumed\">The number of bytes used for decoding.</param>\r\n            <returns><see langword=\"true\" /> if the operation succeeded; <see langword=\"false\" /> otherwise.</returns>\r\n        </member>\r\n        <member name=\"P:System.HexConverter.CharToHexLookup\">\r\n            <summary>Map from an ASCII char to its hex value, e.g. arr['b'] == 11. 0xFF means it's not a hex digit.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Arg_EmptyOrNullString_Named\">\r\n            <summary>The `{0}` string cannot be empty or null.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Arg_RankMultiDimNotSupported\">\r\n            <summary>Only single dimensional arrays are supported for the requested action.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_EncodeDestinationTooSmall\">\r\n            <summary>The destination is too small to hold the encoded value.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_InvalidOffLen\">\r\n            <summary>Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_InvalidOidValue\">\r\n            <summary>The OID value was invalid.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_InvalidValue\">\r\n            <summary>Value was invalid.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.ArgumentOutOfRange_Index\">\r\n            <summary>Index was out of range. Must be non-negative and less than the size of the collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.ArgumentOutOfRange_NeedPosNum\">\r\n            <summary>Positive number required.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AlgKdfRequiresChars\">\r\n            <summary>The KDF for algorithm '{0}' requires a char-based password input.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_EnumeratedValueRequiresNonFlagsEnum\">\r\n            <summary>ASN.1 Enumerated values only apply to enum types without the [Flags] attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_NamedBitListRequiresFlagsEnum\">\r\n            <summary>Named bit list operations require an enum with the [Flags] attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_NamedBitListValueTooBig\">\r\n            <summary>The encoded named bit list value is larger than the value size of the '{0}' enum.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_UniversalValueIsFixed\">\r\n            <summary>Tags with TagClass Universal must have the appropriate TagValue value for the data type being read or written.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_UnusedBitCountRange\">\r\n            <summary>Unused bit count must be between 0 and 7, inclusive.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AsnWriter_EncodeUnbalancedStack\">\r\n            <summary>Encode cannot be called while a Sequence or SetOf is still open.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AsnWriter_PopWrongTag\">\r\n            <summary>Cannot pop the requested tag as it is not currently in progress.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_BadHashValue\">\r\n            <summary>The hash value is not correct.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_BadSignature\">\r\n            <summary>Invalid signature.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_CannotDetermineSignatureAlgorithm\">\r\n            <summary>Could not determine signature algorithm for the signer certificate.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_IncompleteCertChain\">\r\n            <summary>The certificate chain is incomplete, the self-signed root authority could not be determined.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Invalid_Originator_Identifier_Choice\">\r\n            <summary>Invalid originator identifier choice {0} found in decoded CMS.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Invalid_Subject_Identifier_Type\">\r\n            <summary>The subject identifier type {0} is not valid.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_InvalidMessageType\">\r\n            <summary>Invalid cryptographic message type.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_InvalidSignerHashForSignatureAlg\">\r\n            <summary>SignerInfo digest algorithm '{0}' is not valid for signature algorithm '{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Key_Agree_Date_Not_Available\">\r\n            <summary>The Date property is not available for none KID key agree recipient.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_MessageNotEncrypted\">\r\n            <summary>The CMS message is not encrypted.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_MessageNotSigned\">\r\n            <summary>The CMS message is not signed.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_MissingAuthenticatedAttribute\">\r\n            <summary>The cryptographic message does not contain an expected authenticated attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoCounterCounterSigner\">\r\n            <summary>Only one level of counter-signatures are supported on this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoRecipients\">\r\n            <summary>The recipients collection is empty. You must specify at least one recipient. This platform does not implement the certificate picker UI.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoSignerCert\">\r\n            <summary>No signer certificate was provided. This platform does not implement the certificate picker UI.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoSignerCertSilent\">\r\n            <summary>No signer certificate was provided.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoSignerAtIndex\">\r\n            <summary>The signed cryptographic message does not have a signer for the specified signer index.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_RecipientNotFound\">\r\n            <summary>The enveloped-data message does not contain the specified recipient.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_RecipientType_NotSupported\">\r\n            <summary>The recipient type '{0}' is not supported for encryption or decryption on this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Sign_Empty_Content\">\r\n            <summary>Cannot create CMS signature for empty content.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Sign_No_Signature_First_Signer\">\r\n            <summary>CmsSigner has to be the first signer with NoSignature.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_SignerNotFound\">\r\n            <summary>Cannot find the original signer.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Signing_RequiresPrivateKey\">\r\n            <summary>A certificate with a private key is required.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Ktri_RSARequired\">\r\n            <summary>An RSA key is required to decrypt for a RecipientInfo with a KeyTransport recipient type.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Recipient_RSARequired_RSAPaddingModeSupplied\">\r\n            <summary>An RSA certificate is required for a CmsRecipient when used with RSAEncryptionPadding.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_TrustFailure\">\r\n            <summary>Certificate trust could not be established. The first reported error is: {0}</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_UnknownAlgorithm\">\r\n            <summary>Unknown algorithm '{0}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_UnknownKeySpec\">\r\n            <summary>Unable to determine the type of key handle from this keyspec {0}.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_WrongKeyUsage\">\r\n            <summary>The certificate is not valid for the requested usage.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_NotValidPublicOrPrivateKey\">\r\n            <summary>Key is not a valid public or private key.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_CannotProcessEncryptedSafeContents\">\r\n            <summary>This operation is not valid on an encrypted or enveloped Pkcs12SafeContents.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_CertBagNotX509\">\r\n            <summary>The Pkcs12CertBag contents are not an X.509 certificate.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_PfxIsSealed\">\r\n            <summary>The Pkcs12Builder can no longer be modified because one of the Seal methods was already invoked.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_PfxMustBeSealed\">\r\n            <summary>One of the Seal methods must be invoked on the Pkcs12Builder before invoking an Encode method.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_SafeContentsIsEncrypted\">\r\n            <summary>Cannot enumerate the contents of an encrypted or enveloped Pkcs12SafeContents.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_SafeContentsIsReadOnly\">\r\n            <summary>New Pkcs12SafeBag values cannot be added to a Pkcs12SafeContents that was read from existing data.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_WrongModeForDecrypt\">\r\n            <summary>This decryption operation applies to 'Pkcs12ConfidentialityMode.{0}', but the target object is in 'Pkcs12ConfidentialityMode.{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_WrongModeForVerify\">\r\n            <summary>This verification operation applies to 'Pkcs12IntegrityMode.{0}', but the target object is in 'Pkcs12IntegrityMode.{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_InvalidSignatureParameters\">\r\n            <summary>Invalid signature paramters.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs8_EncryptedReadFailed\">\r\n            <summary>The EncryptedPrivateKeyInfo structure was decoded but was not successfully interpreted, the password may be incorrect.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs9_AttributeMismatch\">\r\n            <summary>The parameter should be a PKCS 9 attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs9_MultipleSigningTimeNotAllowed\">\r\n            <summary>Cannot add multiple PKCS 9 signing time attributes.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersMissing\">\r\n            <summary>PSS parameters were not present.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersHashMismatch\">\r\n            <summary>This platform requires that the PSS hash algorithm ({0}) match the data digest algorithm ({1}).</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersMgfHashMismatch\">\r\n            <summary>This platform does not support the MGF hash algorithm ({0}) being different from the signature hash algorithm ({1}).</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersMgfNotSupported\">\r\n            <summary>Mask generation function '{0}' is not supported by this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersSaltMismatch\">\r\n            <summary>PSS salt size {0} is not supported by this platform with hash algorithm {1}.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_BadNonce\">\r\n            <summary>The response from the timestamping server did not match the request nonce.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_BadResponse\">\r\n            <summary>The response from the timestamping server was not understood.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_Failure\">\r\n            <summary>The timestamping server did not grant the request. The request status is '{0}' with failure info '{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_NoCertFound\">\r\n            <summary>The timestamping request required the TSA certificate in the response, but it was not found.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_UnexpectedCertFound\">\r\n            <summary>The timestamping request required the TSA certificate not be included in the response, but certificates were present.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.InvalidOperation_DuplicateItemNotAllowed\">\r\n            <summary>Duplicate items are not allowed in the collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.InvalidOperation_WrongOidInAsnCollection\">\r\n            <summary>AsnEncodedData element in the collection has wrong Oid value: expected = '{0}', actual = '{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.PlatformNotSupported_CryptographyPkcs\">\r\n            <summary>System.Security.Cryptography.Pkcs is only supported on Windows platforms.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AlgorithmNotSupported\">\r\n            <summary>Algorithm '{0}' is not supported on this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Der_Invalid_Encoding\">\r\n            <summary>ASN1 corrupted data.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Invalid_IA5String\">\r\n            <summary>The string contains a character not in the 7 bit ASCII character set.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_UnknownAlgorithmIdentifier\">\r\n            <summary>The algorithm identified by '{0}' is unknown, not valid for the requested usage, or was not handled.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_UnknownHashAlgorithm\">\r\n            <summary>'{0}' is not a known hash algorithm.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_WriteEncodedValue_OneValueAtATime\">\r\n            <summary>The input to WriteEncodedValue must represent a single encoded value with no trailing data.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoAttributeFound\">\r\n            <summary>Attribute not found.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoCertificateFound\">\r\n            <summary>Certificate not found.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_CertificateAlreadyInCollection\">\r\n            <summary>Certificate already present in the collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_InvalidSymmetricKey\">\r\n            <summary>The key in the enveloped message is not valid or could not be decoded.</summary>\r\n        </member>\r\n        <member name=\"P:Internal.Cryptography.DecryptorPal.RecipientInfos\">\r\n             <summary>\r\n             Return the managed representation of the recipients.\r\n            \r\n             .NET Framework compat: Unlike the desktop, we compute this once and then latch it. Since both RecipientInfo and RecipientInfoCollection are immutable objects, this should be\r\n             a safe optimization to make.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.DecryptorPal.TryDecrypt(System.Security.Cryptography.Pkcs.RecipientInfo,System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.AsymmetricAlgorithm,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Exception@)\">\r\n            <summary>\r\n            Attempt to decrypt the CMS using the specified \"cert\". If successful, return the ContentInfo that contains the decrypted content. If unsuccessful, return null and set \"exception\"\r\n            to a valid Exception object. Do not throw the exception as EnvelopedCms will want to continue decryption attempts against other recipients. Only if all the recipients fail to\r\n            decrypt will then EnvelopedCms throw the exception from the last failed attempt.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.Resize(System.Byte[],System.Int32)\">\r\n            <summary>\r\n            This is not just a convenience wrapper for Array.Resize(). In DEBUG builds, it forces the array to move in memory even if no resize is needed. This should be used by\r\n            helper methods that do anything of the form \"call a native api once to get the estimated size, call it again to get the data and return the data in a byte[] array.\"\r\n            Sometimes, that data consist of a native data structure containing pointers to other parts of the block. Using such a helper to retrieve such a block results in an intermittent\r\n            AV. By using this helper, you make that AV repro every time.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.TryFindMatchingCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Security.Cryptography.Pkcs.SubjectIdentifier)\">\r\n            <summary>\r\n            .NET Framework compat: We do not complain about multiple matches. Just take the first one and ignore the rest.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.ToSkiBytes(System.String)\">\r\n             <summary>\r\n             Asserts on bad or non-canonicalized input. Input must come from trusted sources.\r\n            \r\n             Subject Key Identifier is string-ized as an upper case hex string. This format is part of the public api behavior and cannot be changed.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.ToSerialBytes(System.String)\">\r\n             <summary>\r\n             Asserts on bad or non-canonicalized input. Input must come from trusted sources.\r\n            \r\n             Serial number is string-ized as a reversed upper case hex string. This format is part of the public api behavior and cannot be changed.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.UpperHexStringToByteArray(System.String)\">\r\n            <summary>\r\n            Asserts on bad input. Input must come from trusted sources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.UpperHexCharToNybble(System.Char)\">\r\n            <summary>\r\n            Asserts on bad input. Input must come from trusted sources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.CreateBestPkcs9AttributeObjectAvailable(System.Security.Cryptography.Oid,System.Byte[])\">\r\n            <summary>\r\n            Useful helper for \"upgrading\" well-known CMS attributes to type-specific objects such as Pkcs9DocumentName, Pkcs9DocumentDescription, etc.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.Encrypt(System.Security.Cryptography.Pkcs.CmsRecipientCollection,System.Security.Cryptography.Pkcs.ContentInfo,System.Security.Cryptography.Pkcs.AlgorithmIdentifier,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Security.Cryptography.CryptographicAttributeObjectCollection)\">\r\n            <summary>\r\n            Encrypt and encode a CMS. Return value is the RFC-compliant representation of the CMS that can be transmitted \"on the wire.\"\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.Decode(System.ReadOnlySpan{System.Byte},System.Int32@,System.Security.Cryptography.Pkcs.ContentInfo@,System.Security.Cryptography.Pkcs.AlgorithmIdentifier@,System.Security.Cryptography.X509Certificates.X509Certificate2Collection@,System.Security.Cryptography.CryptographicAttributeObjectCollection@)\">\r\n            <summary>\r\n            Decode an encoded CMS.\r\n               Call RecipientInfos on the returned pal object to get the recipients.\r\n               Call TryDecrypt() on the returned pal object to attempt a decrypt for a single recipient.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetEncodedMessageType(System.ReadOnlySpan{System.Byte})\">\r\n            <summary>\r\n            Implements the ContentInfo.GetContentType() behavior.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.AddCertsFromStoreForDecryption(System.Security.Cryptography.X509Certificates.X509Certificate2Collection)\">\r\n            <summary>\r\n            EnvelopedCms.Decrypt() looks for qualifying certs from the \"MY\" store (as well as any \"extraStore\" passed to Decrypt()).\r\n            This method encapsulates exactly what a particular OS considers to be \"the MY store.\"\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateRecipientsNotFoundException\">\r\n            <summary>\r\n            If EnvelopedCms.Decrypt() fails to find any matching certs for any recipients, it throws CryptographicException(CRYPT_E_RECIPIENT_NOT_FOUND) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateRecipientInfosAfterEncryptException\">\r\n            <summary>\r\n            If you call RecipientInfos after an Encrypt(), the framework throws CryptographicException(CRYPT_E_INVALID_MSG_TYPE) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateDecryptAfterEncryptException\">\r\n            <summary>\r\n            If you call Decrypt() after an Encrypt(), the framework throws CryptographicException(CRYPT_E_INVALID_MSG_TYPE) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateDecryptTwiceException\">\r\n            <summary>\r\n            If you call Decrypt() after a Encrypt(), the framework throws CryptographicException(CRYPT_E_INVALID_MSG_TYPE) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetSubjectKeyIdentifier(System.Security.Cryptography.X509Certificates.X509Certificate2)\">\r\n            <summary>\r\n            Retrieve the certificate's subject key identifier value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetPrivateKeyForSigning``1(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Boolean)\">\r\n            <summary>\r\n            Retrieve a private key object for the certificate to use with signing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetPrivateKeyForDecryption``1(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Boolean)\">\r\n            <summary>\r\n            Retrieve a private key object for the certificate to use with decryption.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Internal.Cryptography.PkcsPal.Instance\">\r\n            <summary>\r\n            Get the one instance of PkcsPal.\r\n            </summary>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/System.Security.Cryptography.Pkcs.6.0.1/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>System.Security.Cryptography.Pkcs</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decode(System.ReadOnlySpan{System.Byte})\">\r\n            <summary>\r\n              Decodes the provided data as a CMS/PKCS#7 EnvelopedData message.\r\n            </summary>\r\n            <param name=\"encodedMessage\">\r\n              The data to decode.\r\n            </param>\r\n            <exception cref=\"T:System.Security.Cryptography.CryptographicException\">\r\n              The <paramref name=\"encodedMessage\"/> parameter was not successfully decoded.\r\n            </exception>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Pkcs12CertBag.#ctor(System.Security.Cryptography.Oid,System.ReadOnlyMemory{System.Byte})\">\r\n            <summary>\r\n            Create a CertBag for a specified certificate type and encoding.\r\n            </summary>\r\n            <param name=\"certificateType\">The identifier for the certificate type</param>\r\n            <param name=\"encodedCertificate\">The encoded value</param>\r\n            <remarks>\r\n            No validation is done to ensure that the <paramref name=\"encodedCertificate\"/> value is\r\n            correct for the indicated <paramref name=\"certificateType\"/>.  Note that for X.509\r\n            public-key certificates the correct encoding for a CertBag value is to wrap the\r\n            DER-encoded certificate in an OCTET STRING.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.CreateFromHash(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Oid,System.Security.Cryptography.Oid,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Boolean,System.Security.Cryptography.X509Certificates.X509ExtensionCollection)\">\r\n            <summary>\r\n            Create a timestamp request using a pre-computed hash value.\r\n            </summary>\r\n            <param name=\"hash\">The pre-computed hash value to be timestamped.</param>\r\n            <param name=\"hashAlgorithmId\">\r\n              The Object Identifier (OID) for the hash algorithm which produced <paramref name=\"hash\"/>.\r\n            </param>\r\n            <param name=\"requestedPolicyId\">\r\n              The Object Identifier (OID) for a timestamp policy the Timestamp Authority (TSA) should use,\r\n              or <c>null</c> to express no preference.\r\n            </param>\r\n            <param name=\"nonce\">\r\n              An optional nonce (number used once) to uniquely identify this request to pair it with the response.\r\n              The value is interpreted as an unsigned big-endian integer and may be normalized to the encoding format.\r\n            </param>\r\n            <param name=\"requestSignerCertificates\">\r\n              Indicates whether the Timestamp Authority (TSA) must (<c>true</c>) or must not (<c>false</c>) include\r\n              the signing certificate in the issued timestamp token.\r\n            </param>\r\n            <param name=\"extensions\">RFC3161 extensions to present with the request.</param>\r\n            <returns>\r\n              An <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest\"/> representing the chosen values.\r\n            </returns>\r\n            <seealso cref=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.Encode\"/>\r\n            <seealso cref=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.TryEncode(System.Span{System.Byte},System.Int32@)\"/>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.AsSignedCms\">\r\n            <summary>\r\n            Get a SignedCms representation of the RFC3161 Timestamp Token.\r\n            </summary>\r\n            <returns>The SignedCms representation of the RFC3161 Timestamp Token.</returns>\r\n            <remarks>\r\n            Successive calls to this method return the same object.\r\n            The SignedCms class is mutable, but changes to that object are not reflected in the\r\n            <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken\"/> object which produced it.\r\n            The value from calling <see cref=\"M:System.Security.Cryptography.Pkcs.SignedCms.Encode\"/> can be interpreted again as an\r\n            <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken\"/> via another call to <see cref=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.TryDecode(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Pkcs.Rfc3161TimestampToken@,System.Int32@)\"/>.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\">\r\n            <summary>\r\n            Represents the timestamp token information class defined in RFC3161 as TSTInfo.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.#ctor(System.Security.Cryptography.Oid,System.Security.Cryptography.Oid,System.ReadOnlyMemory{System.Byte},System.ReadOnlyMemory{System.Byte},System.DateTimeOffset,System.Nullable{System.Int64},System.Boolean,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Security.Cryptography.X509Certificates.X509ExtensionCollection)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\" /> class with the specified parameters.\r\n            </summary>\r\n            <param name=\"policyId\">An OID representing the TSA's policy under which the response was produced.</param>\r\n            <param name=\"hashAlgorithmId\">A hash algorithm OID of the data to be timestamped.</param>\r\n            <param name=\"messageHash\">A hash value of the data to be timestamped.</param>\r\n            <param name=\"serialNumber\">An integer assigned by the TSA to the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\"/>.</param>\r\n            <param name=\"timestamp\">The timestamp encoded in the token.</param>\r\n            <param name=\"accuracyInMicroseconds\">The accuracy with which <paramref name=\"timestamp\"/> is compared. Also see <paramref name=\"isOrdering\"/>.</param>\r\n            <param name=\"isOrdering\"><see langword=\"true\" /> to ensure that every timestamp token from the same TSA can always be ordered based on the <paramref name=\"timestamp\"/>, regardless of the accuracy; <see langword=\"false\" /> to make <paramref name=\"timestamp\"/> indicate when token has been created by the TSA.</param>\r\n            <param name=\"nonce\">The nonce associated with this timestamp token. Using a nonce always allows to detect replays, and hence its use is recommended.</param>\r\n            <param name=\"timestampAuthorityName\">The hint in the TSA name identification. The actual identification of the entity that signed the response will always occur through the use of the certificate identifier.</param>\r\n            <param name=\"extensions\">The extension values associated with the timestamp.</param>\r\n            <remarks>If <paramref name=\"hashAlgorithmId\" />, <paramref name=\"messageHash\" />, <paramref name=\"policyId\" /> or <paramref name=\"nonce\" /> are present in the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest\"/>, then the same value should be used. If <paramref name=\"accuracyInMicroseconds\"/> is not provided, then the accuracy may be available through other means such as i.e. <paramref name=\"policyId\" />.</remarks>\r\n            <exception cref=\"T:System.Security.Cryptography.CryptographicException\">ASN.1 corrupted data.</exception>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Version\">\r\n            <summary>\r\n            Gets the version of the timestamp token.\r\n            </summary>\r\n            <value>The version of the timestamp token.</value>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.PolicyId\">\r\n            <summary>\r\n            Gets an OID representing the TSA's policy under which the response was produced.\r\n            </summary>\r\n            <value>An OID representing the TSA's policy under which the response was produced.</value>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.HashAlgorithmId\">\r\n            <summary>\r\n            Gets an OID of the hash algorithm.\r\n            </summary>\r\n            <value>An OID of the hash algorithm.</value>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetMessageHash\">\r\n            <summary>\r\n            Gets the data representing the message hash.\r\n            </summary>\r\n            <returns>The data representing the message hash.</returns>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetSerialNumber\">\r\n            <summary>\r\n            Gets an integer assigned by the TSA to the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\"/>.\r\n            </summary>\r\n            <returns>An integer assigned by the TSA to the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\">\r\n            <summary>\r\n            Gets the timestamp encoded in the token.\r\n            </summary>\r\n            <value>The timestamp encoded in the token.</value>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.AccuracyInMicroseconds\">\r\n            <summary>\r\n            Gets the accuracy with which <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/> is compared.\r\n            </summary>\r\n            <seealso cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.IsOrdering\" />\r\n            <value>The accuracy with which <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/> is compared.</value>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.IsOrdering\">\r\n            <summary>\r\n            Gets a value indicating if every timestamp token from the same TSA can always be ordered based on the <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/>, regardless of the accuracy; If <see langword=\"false\" />, <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/> indicates when the token has been created by the TSA.\r\n            </summary>\r\n            <value>A value indicating if every timestamp token from the same TSA can always be ordered based on the <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/>.</value>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetNonce\">\r\n            <summary>\r\n            Gets the nonce associated with this timestamp token.\r\n            </summary>\r\n            <returns>The nonce associated with this timestamp token.</returns>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.HasExtensions\">\r\n            <summary>\r\n            Gets a value indicating whether there are any extensions associated with this timestamp token.\r\n            </summary>\r\n            <value>A value indicating whether there are any extensions associated with this timestamp token.</value>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetTimestampAuthorityName\">\r\n            <summary>\r\n            Gets the data representing the hint in the TSA name identification.\r\n            </summary>\r\n            <returns>The data representing the hint in the TSA name identification.</returns>\r\n            <remarks>\r\n            The actual identification of the entity that signed the response\r\n            will always occur through the use of the certificate identifier (ESSCertID Attribute)\r\n            inside a SigningCertificate attribute which is part of the signer info.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetExtensions\">\r\n            <summary>\r\n            Gets the extension values associated with the timestamp.\r\n            </summary>\r\n            <returns>The extension values associated with the timestamp.</returns>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Encode\">\r\n            <summary>\r\n            Encodes this object into a TSTInfo value\r\n            </summary>\r\n            <returns>The encoded TSTInfo value.</returns>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.TryEncode(System.Span{System.Byte},System.Int32@)\">\r\n            <summary>\r\n            Attempts to encode this object as a TSTInfo value, writing the result into the provided buffer.\r\n            </summary>\r\n            <param name=\"destination\">The destination buffer.</param>\r\n            <param name=\"bytesWritten\">When this method returns <see langword=\"true\" />, contains the bytes written to the <paramref name=\"destination\" /> buffer.</param>\r\n            <returns><see langword=\"true\" /> if the operation succeeded; <see langword=\"false\" /> if the buffer size was insufficient.</returns>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.TryDecode(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo@,System.Int32@)\">\r\n            <summary>\r\n            Decodes an encoded TSTInfo value.\r\n            </summary>\r\n            <param name=\"encodedBytes\">The input or source buffer.</param>\r\n            <param name=\"timestampTokenInfo\">When this method returns <see langword=\"true\" />, the decoded data. When this method returns <see langword=\"false\" />, the value is <see langword=\"null\" />, meaning the data could not be decoded.</param>\r\n            <param name=\"bytesConsumed\">The number of bytes used for decoding.</param>\r\n            <returns><see langword=\"true\" /> if the operation succeeded; <see langword=\"false\" /> otherwise.</returns>\r\n        </member>\r\n        <member name=\"P:System.HexConverter.CharToHexLookup\">\r\n            <summary>Map from an ASCII char to its hex value, e.g. arr['b'] == 11. 0xFF means it's not a hex digit.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Arg_EmptyOrNullString_Named\">\r\n            <summary>The `{0}` string cannot be empty or null.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Arg_RankMultiDimNotSupported\">\r\n            <summary>Only single dimensional arrays are supported for the requested action.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_EncodeDestinationTooSmall\">\r\n            <summary>The destination is too small to hold the encoded value.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_InvalidOffLen\">\r\n            <summary>Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_InvalidOidValue\">\r\n            <summary>The OID value was invalid.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_InvalidValue\">\r\n            <summary>Value was invalid.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.ArgumentOutOfRange_Index\">\r\n            <summary>Index was out of range. Must be non-negative and less than the size of the collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.ArgumentOutOfRange_NeedPosNum\">\r\n            <summary>Positive number required.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AlgKdfRequiresChars\">\r\n            <summary>The KDF for algorithm '{0}' requires a char-based password input.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_EnumeratedValueRequiresNonFlagsEnum\">\r\n            <summary>ASN.1 Enumerated values only apply to enum types without the [Flags] attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_NamedBitListRequiresFlagsEnum\">\r\n            <summary>Named bit list operations require an enum with the [Flags] attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_NamedBitListValueTooBig\">\r\n            <summary>The encoded named bit list value is larger than the value size of the '{0}' enum.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_UniversalValueIsFixed\">\r\n            <summary>Tags with TagClass Universal must have the appropriate TagValue value for the data type being read or written.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_UnusedBitCountRange\">\r\n            <summary>Unused bit count must be between 0 and 7, inclusive.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AsnWriter_EncodeUnbalancedStack\">\r\n            <summary>Encode cannot be called while a Sequence or SetOf is still open.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AsnWriter_PopWrongTag\">\r\n            <summary>Cannot pop the requested tag as it is not currently in progress.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_BadHashValue\">\r\n            <summary>The hash value is not correct.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_BadSignature\">\r\n            <summary>Invalid signature.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_CannotDetermineSignatureAlgorithm\">\r\n            <summary>Could not determine signature algorithm for the signer certificate.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_IncompleteCertChain\">\r\n            <summary>The certificate chain is incomplete, the self-signed root authority could not be determined.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Invalid_Originator_Identifier_Choice\">\r\n            <summary>Invalid originator identifier choice {0} found in decoded CMS.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Invalid_Subject_Identifier_Type\">\r\n            <summary>The subject identifier type {0} is not valid.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_InvalidMessageType\">\r\n            <summary>Invalid cryptographic message type.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_InvalidSignerHashForSignatureAlg\">\r\n            <summary>SignerInfo digest algorithm '{0}' is not valid for signature algorithm '{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Key_Agree_Date_Not_Available\">\r\n            <summary>The Date property is not available for none KID key agree recipient.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_MessageNotEncrypted\">\r\n            <summary>The CMS message is not encrypted.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_MessageNotSigned\">\r\n            <summary>The CMS message is not signed.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_MissingAuthenticatedAttribute\">\r\n            <summary>The cryptographic message does not contain an expected authenticated attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoCounterCounterSigner\">\r\n            <summary>Only one level of counter-signatures are supported on this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoRecipients\">\r\n            <summary>The recipients collection is empty. You must specify at least one recipient. This platform does not implement the certificate picker UI.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoSignerCert\">\r\n            <summary>No signer certificate was provided. This platform does not implement the certificate picker UI.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoSignerCertSilent\">\r\n            <summary>No signer certificate was provided.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoSignerAtIndex\">\r\n            <summary>The signed cryptographic message does not have a signer for the specified signer index.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_RecipientNotFound\">\r\n            <summary>The enveloped-data message does not contain the specified recipient.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_RecipientType_NotSupported\">\r\n            <summary>The recipient type '{0}' is not supported for encryption or decryption on this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Sign_Empty_Content\">\r\n            <summary>Cannot create CMS signature for empty content.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Sign_No_Signature_First_Signer\">\r\n            <summary>CmsSigner has to be the first signer with NoSignature.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_SignerNotFound\">\r\n            <summary>Cannot find the original signer.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Signing_RequiresPrivateKey\">\r\n            <summary>A certificate with a private key is required.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Ktri_RSARequired\">\r\n            <summary>An RSA key is required to decrypt for a RecipientInfo with a KeyTransport recipient type.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Recipient_RSARequired_RSAPaddingModeSupplied\">\r\n            <summary>An RSA certificate is required for a CmsRecipient when used with RSAEncryptionPadding.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_TrustFailure\">\r\n            <summary>Certificate trust could not be established. The first reported error is: {0}</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_UnknownAlgorithm\">\r\n            <summary>Unknown algorithm '{0}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_UnknownKeySpec\">\r\n            <summary>Unable to determine the type of key handle from this keyspec {0}.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_WrongKeyUsage\">\r\n            <summary>The certificate is not valid for the requested usage.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_NotValidPublicOrPrivateKey\">\r\n            <summary>Key is not a valid public or private key.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_CannotProcessEncryptedSafeContents\">\r\n            <summary>This operation is not valid on an encrypted or enveloped Pkcs12SafeContents.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_CertBagNotX509\">\r\n            <summary>The Pkcs12CertBag contents are not an X.509 certificate.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_PfxIsSealed\">\r\n            <summary>The Pkcs12Builder can no longer be modified because one of the Seal methods was already invoked.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_PfxMustBeSealed\">\r\n            <summary>One of the Seal methods must be invoked on the Pkcs12Builder before invoking an Encode method.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_SafeContentsIsEncrypted\">\r\n            <summary>Cannot enumerate the contents of an encrypted or enveloped Pkcs12SafeContents.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_SafeContentsIsReadOnly\">\r\n            <summary>New Pkcs12SafeBag values cannot be added to a Pkcs12SafeContents that was read from existing data.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_WrongModeForDecrypt\">\r\n            <summary>This decryption operation applies to 'Pkcs12ConfidentialityMode.{0}', but the target object is in 'Pkcs12ConfidentialityMode.{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_WrongModeForVerify\">\r\n            <summary>This verification operation applies to 'Pkcs12IntegrityMode.{0}', but the target object is in 'Pkcs12IntegrityMode.{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_InvalidSignatureParameters\">\r\n            <summary>Invalid signature paramters.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs8_EncryptedReadFailed\">\r\n            <summary>The EncryptedPrivateKeyInfo structure was decoded but was not successfully interpreted, the password may be incorrect.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs9_AttributeMismatch\">\r\n            <summary>The parameter should be a PKCS 9 attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs9_MultipleSigningTimeNotAllowed\">\r\n            <summary>Cannot add multiple PKCS 9 signing time attributes.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersMissing\">\r\n            <summary>PSS parameters were not present.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersHashMismatch\">\r\n            <summary>This platform requires that the PSS hash algorithm ({0}) match the data digest algorithm ({1}).</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersMgfHashMismatch\">\r\n            <summary>This platform does not support the MGF hash algorithm ({0}) being different from the signature hash algorithm ({1}).</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersMgfNotSupported\">\r\n            <summary>Mask generation function '{0}' is not supported by this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersSaltMismatch\">\r\n            <summary>PSS salt size {0} is not supported by this platform with hash algorithm {1}.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_BadNonce\">\r\n            <summary>The response from the timestamping server did not match the request nonce.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_BadResponse\">\r\n            <summary>The response from the timestamping server was not understood.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_Failure\">\r\n            <summary>The timestamping server did not grant the request. The request status is '{0}' with failure info '{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_NoCertFound\">\r\n            <summary>The timestamping request required the TSA certificate in the response, but it was not found.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_UnexpectedCertFound\">\r\n            <summary>The timestamping request required the TSA certificate not be included in the response, but certificates were present.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.InvalidOperation_DuplicateItemNotAllowed\">\r\n            <summary>Duplicate items are not allowed in the collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.InvalidOperation_WrongOidInAsnCollection\">\r\n            <summary>AsnEncodedData element in the collection has wrong Oid value: expected = '{0}', actual = '{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.PlatformNotSupported_CryptographyPkcs\">\r\n            <summary>System.Security.Cryptography.Pkcs is only supported on Windows platforms.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AlgorithmNotSupported\">\r\n            <summary>Algorithm '{0}' is not supported on this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Der_Invalid_Encoding\">\r\n            <summary>ASN1 corrupted data.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Invalid_IA5String\">\r\n            <summary>The string contains a character not in the 7 bit ASCII character set.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_UnknownAlgorithmIdentifier\">\r\n            <summary>The algorithm identified by '{0}' is unknown, not valid for the requested usage, or was not handled.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_UnknownHashAlgorithm\">\r\n            <summary>'{0}' is not a known hash algorithm.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_WriteEncodedValue_OneValueAtATime\">\r\n            <summary>The input to WriteEncodedValue must represent a single encoded value with no trailing data.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoAttributeFound\">\r\n            <summary>Attribute not found.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoCertificateFound\">\r\n            <summary>Certificate not found.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_CertificateAlreadyInCollection\">\r\n            <summary>Certificate already present in the collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_InvalidSymmetricKey\">\r\n            <summary>The key in the enveloped message is not valid or could not be decoded.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute\">\r\n            <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String)\">\r\n            <summary>Initializes the attribute with a field or property member.</summary>\r\n            <param name=\"member\">\r\n            The field or property member that is promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String[])\">\r\n            <summary>Initializes the attribute with the list of field and property members.</summary>\r\n            <param name=\"members\">\r\n            The list of field and property members that are promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members\">\r\n            <summary>Gets field or property member names.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute\">\r\n            <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values when returning with the specified return value condition.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String)\">\r\n            <summary>Initializes the attribute with the specified return value condition and a field or property member.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter will not be null.\r\n            </param>\r\n            <param name=\"member\">\r\n            The field or property member that is promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String[])\">\r\n            <summary>Initializes the attribute with the specified return value condition and list of field and property members.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter will not be null.\r\n            </param>\r\n            <param name=\"members\">\r\n            The list of field and property members that are promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.ReturnValue\">\r\n            <summary>Gets the return value condition.</summary>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members\">\r\n            <summary>Gets field or property member names.</summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.OSPlatformAttribute\">\r\n            <summary>\r\n            Base type for all platform-specific API attributes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.TargetPlatformAttribute\">\r\n            <summary>\r\n            Records the platform that the project targeted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.SupportedOSPlatformAttribute\">\r\n             <summary>\r\n             Records the operating system (and minimum version) that supports an API. Multiple attributes can be\r\n             applied to indicate support on multiple operating systems.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.SupportedOSPlatformAttribute\" />\r\n             or use guards to prevent calls to APIs on unsupported operating systems.\r\n            \r\n             A given platform should only be specified once.\r\n             </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.UnsupportedOSPlatformAttribute\">\r\n            <summary>\r\n            Marks APIs that were removed in a given operating system version.\r\n            </summary>\r\n            <remarks>\r\n            Primarily used by OS bindings to indicate APIs that are only available in\r\n            earlier versions.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute\">\r\n             <summary>\r\n             Annotates a custom guard field, property or method with a supported platform name and optional version.\r\n             Multiple attributes can be applied to indicate guard for multiple supported platforms.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute\" /> to a field, property or method\r\n             and use that field, property or method in a conditional or assert statements in order to safely call platform specific APIs.\r\n            \r\n             The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard.\r\n             </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute\">\r\n             <summary>\r\n             Annotates the custom guard field, property or method with an unsupported platform name and optional version.\r\n             Multiple attributes can be applied to indicate guard for multiple unsupported platforms.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute\" /> to a field, property or method\r\n             and use that  field, property or method in a conditional or assert statements as a guard to safely call APIs unsupported on those platforms.\r\n            \r\n             The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard.\r\n             </remarks>\r\n        </member>\r\n        <member name=\"P:Internal.Cryptography.DecryptorPal.RecipientInfos\">\r\n             <summary>\r\n             Return the managed representation of the recipients.\r\n            \r\n             .NET Framework compat: Unlike the desktop, we compute this once and then latch it. Since both RecipientInfo and RecipientInfoCollection are immutable objects, this should be\r\n             a safe optimization to make.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.DecryptorPal.TryDecrypt(System.Security.Cryptography.Pkcs.RecipientInfo,System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.AsymmetricAlgorithm,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Exception@)\">\r\n            <summary>\r\n            Attempt to decrypt the CMS using the specified \"cert\". If successful, return the ContentInfo that contains the decrypted content. If unsuccessful, return null and set \"exception\"\r\n            to a valid Exception object. Do not throw the exception as EnvelopedCms will want to continue decryption attempts against other recipients. Only if all the recipients fail to\r\n            decrypt will then EnvelopedCms throw the exception from the last failed attempt.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.Resize(System.Byte[],System.Int32)\">\r\n            <summary>\r\n            This is not just a convenience wrapper for Array.Resize(). In DEBUG builds, it forces the array to move in memory even if no resize is needed. This should be used by\r\n            helper methods that do anything of the form \"call a native api once to get the estimated size, call it again to get the data and return the data in a byte[] array.\"\r\n            Sometimes, that data consist of a native data structure containing pointers to other parts of the block. Using such a helper to retrieve such a block results in an intermittent\r\n            AV. By using this helper, you make that AV repro every time.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.TryFindMatchingCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Security.Cryptography.Pkcs.SubjectIdentifier)\">\r\n            <summary>\r\n            .NET Framework compat: We do not complain about multiple matches. Just take the first one and ignore the rest.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.ToSkiBytes(System.String)\">\r\n             <summary>\r\n             Asserts on bad or non-canonicalized input. Input must come from trusted sources.\r\n            \r\n             Subject Key Identifier is string-ized as an upper case hex string. This format is part of the public api behavior and cannot be changed.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.ToSerialBytes(System.String)\">\r\n             <summary>\r\n             Asserts on bad or non-canonicalized input. Input must come from trusted sources.\r\n            \r\n             Serial number is string-ized as a reversed upper case hex string. This format is part of the public api behavior and cannot be changed.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.UpperHexStringToByteArray(System.String)\">\r\n            <summary>\r\n            Asserts on bad input. Input must come from trusted sources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.UpperHexCharToNybble(System.Char)\">\r\n            <summary>\r\n            Asserts on bad input. Input must come from trusted sources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.CreateBestPkcs9AttributeObjectAvailable(System.Security.Cryptography.Oid,System.Byte[])\">\r\n            <summary>\r\n            Useful helper for \"upgrading\" well-known CMS attributes to type-specific objects such as Pkcs9DocumentName, Pkcs9DocumentDescription, etc.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.Encrypt(System.Security.Cryptography.Pkcs.CmsRecipientCollection,System.Security.Cryptography.Pkcs.ContentInfo,System.Security.Cryptography.Pkcs.AlgorithmIdentifier,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Security.Cryptography.CryptographicAttributeObjectCollection)\">\r\n            <summary>\r\n            Encrypt and encode a CMS. Return value is the RFC-compliant representation of the CMS that can be transmitted \"on the wire.\"\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.Decode(System.ReadOnlySpan{System.Byte},System.Int32@,System.Security.Cryptography.Pkcs.ContentInfo@,System.Security.Cryptography.Pkcs.AlgorithmIdentifier@,System.Security.Cryptography.X509Certificates.X509Certificate2Collection@,System.Security.Cryptography.CryptographicAttributeObjectCollection@)\">\r\n            <summary>\r\n            Decode an encoded CMS.\r\n               Call RecipientInfos on the returned pal object to get the recipients.\r\n               Call TryDecrypt() on the returned pal object to attempt a decrypt for a single recipient.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetEncodedMessageType(System.ReadOnlySpan{System.Byte})\">\r\n            <summary>\r\n            Implements the ContentInfo.GetContentType() behavior.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.AddCertsFromStoreForDecryption(System.Security.Cryptography.X509Certificates.X509Certificate2Collection)\">\r\n            <summary>\r\n            EnvelopedCms.Decrypt() looks for qualifying certs from the \"MY\" store (as well as any \"extraStore\" passed to Decrypt()).\r\n            This method encapsulates exactly what a particular OS considers to be \"the MY store.\"\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateRecipientsNotFoundException\">\r\n            <summary>\r\n            If EnvelopedCms.Decrypt() fails to find any matching certs for any recipients, it throws CryptographicException(CRYPT_E_RECIPIENT_NOT_FOUND) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateRecipientInfosAfterEncryptException\">\r\n            <summary>\r\n            If you call RecipientInfos after an Encrypt(), the framework throws CryptographicException(CRYPT_E_INVALID_MSG_TYPE) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateDecryptAfterEncryptException\">\r\n            <summary>\r\n            If you call Decrypt() after an Encrypt(), the framework throws CryptographicException(CRYPT_E_INVALID_MSG_TYPE) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateDecryptTwiceException\">\r\n            <summary>\r\n            If you call Decrypt() after a Encrypt(), the framework throws CryptographicException(CRYPT_E_INVALID_MSG_TYPE) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetSubjectKeyIdentifier(System.Security.Cryptography.X509Certificates.X509Certificate2)\">\r\n            <summary>\r\n            Retrieve the certificate's subject key identifier value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetPrivateKeyForSigning``1(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Boolean)\">\r\n            <summary>\r\n            Retrieve a private key object for the certificate to use with signing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetPrivateKeyForDecryption``1(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Boolean)\">\r\n            <summary>\r\n            Retrieve a private key object for the certificate to use with decryption.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Internal.Cryptography.PkcsPal.Instance\">\r\n            <summary>\r\n            Get the one instance of PkcsPal.\r\n            </summary>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/System.Security.Cryptography.Pkcs.6.0.1/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>System.Security.Cryptography.Pkcs</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decode(System.ReadOnlySpan{System.Byte})\">\r\n            <summary>\r\n              Decodes the provided data as a CMS/PKCS#7 EnvelopedData message.\r\n            </summary>\r\n            <param name=\"encodedMessage\">\r\n              The data to decode.\r\n            </param>\r\n            <exception cref=\"T:System.Security.Cryptography.CryptographicException\">\r\n              The <paramref name=\"encodedMessage\"/> parameter was not successfully decoded.\r\n            </exception>\r\n        </member>\r\n        <member name=\"P:System.HexConverter.CharToHexLookup\">\r\n            <summary>Map from an ASCII char to its hex value, e.g. arr['b'] == 11. 0xFF means it's not a hex digit.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Arg_EmptyOrNullString_Named\">\r\n            <summary>The `{0}` string cannot be empty or null.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Arg_RankMultiDimNotSupported\">\r\n            <summary>Only single dimensional arrays are supported for the requested action.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_EncodeDestinationTooSmall\">\r\n            <summary>The destination is too small to hold the encoded value.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_InvalidOffLen\">\r\n            <summary>Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_InvalidOidValue\">\r\n            <summary>The OID value was invalid.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_InvalidValue\">\r\n            <summary>Value was invalid.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.ArgumentOutOfRange_Index\">\r\n            <summary>Index was out of range. Must be non-negative and less than the size of the collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.ArgumentOutOfRange_NeedPosNum\">\r\n            <summary>Positive number required.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AlgKdfRequiresChars\">\r\n            <summary>The KDF for algorithm '{0}' requires a char-based password input.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_EnumeratedValueRequiresNonFlagsEnum\">\r\n            <summary>ASN.1 Enumerated values only apply to enum types without the [Flags] attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_NamedBitListRequiresFlagsEnum\">\r\n            <summary>Named bit list operations require an enum with the [Flags] attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_NamedBitListValueTooBig\">\r\n            <summary>The encoded named bit list value is larger than the value size of the '{0}' enum.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_UniversalValueIsFixed\">\r\n            <summary>Tags with TagClass Universal must have the appropriate TagValue value for the data type being read or written.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_UnusedBitCountRange\">\r\n            <summary>Unused bit count must be between 0 and 7, inclusive.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AsnWriter_EncodeUnbalancedStack\">\r\n            <summary>Encode cannot be called while a Sequence or SetOf is still open.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AsnWriter_PopWrongTag\">\r\n            <summary>Cannot pop the requested tag as it is not currently in progress.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_BadHashValue\">\r\n            <summary>The hash value is not correct.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_BadSignature\">\r\n            <summary>Invalid signature.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_CannotDetermineSignatureAlgorithm\">\r\n            <summary>Could not determine signature algorithm for the signer certificate.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_IncompleteCertChain\">\r\n            <summary>The certificate chain is incomplete, the self-signed root authority could not be determined.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Invalid_Originator_Identifier_Choice\">\r\n            <summary>Invalid originator identifier choice {0} found in decoded CMS.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Invalid_Subject_Identifier_Type\">\r\n            <summary>The subject identifier type {0} is not valid.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_InvalidMessageType\">\r\n            <summary>Invalid cryptographic message type.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_InvalidSignerHashForSignatureAlg\">\r\n            <summary>SignerInfo digest algorithm '{0}' is not valid for signature algorithm '{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Key_Agree_Date_Not_Available\">\r\n            <summary>The Date property is not available for none KID key agree recipient.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_MessageNotEncrypted\">\r\n            <summary>The CMS message is not encrypted.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_MessageNotSigned\">\r\n            <summary>The CMS message is not signed.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_MissingAuthenticatedAttribute\">\r\n            <summary>The cryptographic message does not contain an expected authenticated attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoCounterCounterSigner\">\r\n            <summary>Only one level of counter-signatures are supported on this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoRecipients\">\r\n            <summary>The recipients collection is empty. You must specify at least one recipient. This platform does not implement the certificate picker UI.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoSignerCert\">\r\n            <summary>No signer certificate was provided. This platform does not implement the certificate picker UI.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoSignerCertSilent\">\r\n            <summary>No signer certificate was provided.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoSignerAtIndex\">\r\n            <summary>The signed cryptographic message does not have a signer for the specified signer index.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_RecipientNotFound\">\r\n            <summary>The enveloped-data message does not contain the specified recipient.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_RecipientType_NotSupported\">\r\n            <summary>The recipient type '{0}' is not supported for encryption or decryption on this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Sign_Empty_Content\">\r\n            <summary>Cannot create CMS signature for empty content.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Sign_No_Signature_First_Signer\">\r\n            <summary>CmsSigner has to be the first signer with NoSignature.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_SignerNotFound\">\r\n            <summary>Cannot find the original signer.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Signing_RequiresPrivateKey\">\r\n            <summary>A certificate with a private key is required.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Ktri_RSARequired\">\r\n            <summary>An RSA key is required to decrypt for a RecipientInfo with a KeyTransport recipient type.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Recipient_RSARequired_RSAPaddingModeSupplied\">\r\n            <summary>An RSA certificate is required for a CmsRecipient when used with RSAEncryptionPadding.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_TrustFailure\">\r\n            <summary>Certificate trust could not be established. The first reported error is: {0}</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_UnknownAlgorithm\">\r\n            <summary>Unknown algorithm '{0}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_UnknownKeySpec\">\r\n            <summary>Unable to determine the type of key handle from this keyspec {0}.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_WrongKeyUsage\">\r\n            <summary>The certificate is not valid for the requested usage.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_NotValidPublicOrPrivateKey\">\r\n            <summary>Key is not a valid public or private key.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_CannotProcessEncryptedSafeContents\">\r\n            <summary>This operation is not valid on an encrypted or enveloped Pkcs12SafeContents.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_CertBagNotX509\">\r\n            <summary>The Pkcs12CertBag contents are not an X.509 certificate.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_PfxIsSealed\">\r\n            <summary>The Pkcs12Builder can no longer be modified because one of the Seal methods was already invoked.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_PfxMustBeSealed\">\r\n            <summary>One of the Seal methods must be invoked on the Pkcs12Builder before invoking an Encode method.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_SafeContentsIsEncrypted\">\r\n            <summary>Cannot enumerate the contents of an encrypted or enveloped Pkcs12SafeContents.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_SafeContentsIsReadOnly\">\r\n            <summary>New Pkcs12SafeBag values cannot be added to a Pkcs12SafeContents that was read from existing data.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_WrongModeForDecrypt\">\r\n            <summary>This decryption operation applies to 'Pkcs12ConfidentialityMode.{0}', but the target object is in 'Pkcs12ConfidentialityMode.{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_WrongModeForVerify\">\r\n            <summary>This verification operation applies to 'Pkcs12IntegrityMode.{0}', but the target object is in 'Pkcs12IntegrityMode.{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_InvalidSignatureParameters\">\r\n            <summary>Invalid signature paramters.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs8_EncryptedReadFailed\">\r\n            <summary>The EncryptedPrivateKeyInfo structure was decoded but was not successfully interpreted, the password may be incorrect.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs9_AttributeMismatch\">\r\n            <summary>The parameter should be a PKCS 9 attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs9_MultipleSigningTimeNotAllowed\">\r\n            <summary>Cannot add multiple PKCS 9 signing time attributes.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersMissing\">\r\n            <summary>PSS parameters were not present.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersHashMismatch\">\r\n            <summary>This platform requires that the PSS hash algorithm ({0}) match the data digest algorithm ({1}).</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersMgfHashMismatch\">\r\n            <summary>This platform does not support the MGF hash algorithm ({0}) being different from the signature hash algorithm ({1}).</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersMgfNotSupported\">\r\n            <summary>Mask generation function '{0}' is not supported by this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersSaltMismatch\">\r\n            <summary>PSS salt size {0} is not supported by this platform with hash algorithm {1}.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_BadNonce\">\r\n            <summary>The response from the timestamping server did not match the request nonce.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_BadResponse\">\r\n            <summary>The response from the timestamping server was not understood.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_Failure\">\r\n            <summary>The timestamping server did not grant the request. The request status is '{0}' with failure info '{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_NoCertFound\">\r\n            <summary>The timestamping request required the TSA certificate in the response, but it was not found.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_UnexpectedCertFound\">\r\n            <summary>The timestamping request required the TSA certificate not be included in the response, but certificates were present.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.InvalidOperation_DuplicateItemNotAllowed\">\r\n            <summary>Duplicate items are not allowed in the collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.InvalidOperation_WrongOidInAsnCollection\">\r\n            <summary>AsnEncodedData element in the collection has wrong Oid value: expected = '{0}', actual = '{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.PlatformNotSupported_CryptographyPkcs\">\r\n            <summary>System.Security.Cryptography.Pkcs is only supported on Windows platforms.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AlgorithmNotSupported\">\r\n            <summary>Algorithm '{0}' is not supported on this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Der_Invalid_Encoding\">\r\n            <summary>ASN1 corrupted data.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Invalid_IA5String\">\r\n            <summary>The string contains a character not in the 7 bit ASCII character set.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_UnknownAlgorithmIdentifier\">\r\n            <summary>The algorithm identified by '{0}' is unknown, not valid for the requested usage, or was not handled.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_UnknownHashAlgorithm\">\r\n            <summary>'{0}' is not a known hash algorithm.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_WriteEncodedValue_OneValueAtATime\">\r\n            <summary>The input to WriteEncodedValue must represent a single encoded value with no trailing data.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoAttributeFound\">\r\n            <summary>Attribute not found.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoCertificateFound\">\r\n            <summary>Certificate not found.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_CertificateAlreadyInCollection\">\r\n            <summary>Certificate already present in the collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_InvalidSymmetricKey\">\r\n            <summary>The key in the enveloped message is not valid or could not be decoded.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.AllowNullAttribute\">\r\n            <summary>Specifies that null is allowed as an input even if the corresponding type disallows it.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.DisallowNullAttribute\">\r\n            <summary>Specifies that null is disallowed as an input even if the corresponding type allows it.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MaybeNullAttribute\">\r\n            <summary>Specifies that an output may be null even if the corresponding type disallows it.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.NotNullAttribute\">\r\n            <summary>Specifies that an output will not be null even if the corresponding type allows it. Specifies that an input argument was not null when the call returns.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute\">\r\n            <summary>Specifies that when a method returns <see cref=\"P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue\"/>, the parameter may be null even if the corresponding type disallows it.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.#ctor(System.Boolean)\">\r\n            <summary>Initializes the attribute with the specified return value condition.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter may be null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue\">\r\n            <summary>Gets the return value condition.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute\">\r\n            <summary>Specifies that when a method returns <see cref=\"P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue\"/>, the parameter will not be null even if the corresponding type allows it.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.#ctor(System.Boolean)\">\r\n            <summary>Initializes the attribute with the specified return value condition.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter will not be null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue\">\r\n            <summary>Gets the return value condition.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute\">\r\n            <summary>Specifies that the output will be non-null if the named parameter is non-null.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.#ctor(System.String)\">\r\n            <summary>Initializes the attribute with the associated parameter name.</summary>\r\n            <param name=\"parameterName\">\r\n            The associated parameter name.  The output will be non-null if the argument to the parameter specified is non-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.ParameterName\">\r\n            <summary>Gets the associated parameter name.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.DoesNotReturnAttribute\">\r\n            <summary>Applied to a method that will never return under any circumstance.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute\">\r\n            <summary>Specifies that the method will not return if the associated Boolean parameter is passed the specified value.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.#ctor(System.Boolean)\">\r\n            <summary>Initializes the attribute with the specified parameter value.</summary>\r\n            <param name=\"parameterValue\">\r\n            The condition parameter value. Code after the method will be considered unreachable by diagnostics if the argument to\r\n            the associated parameter matches this value.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.ParameterValue\">\r\n            <summary>Gets the condition parameter value.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute\">\r\n            <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String)\">\r\n            <summary>Initializes the attribute with a field or property member.</summary>\r\n            <param name=\"member\">\r\n            The field or property member that is promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String[])\">\r\n            <summary>Initializes the attribute with the list of field and property members.</summary>\r\n            <param name=\"members\">\r\n            The list of field and property members that are promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members\">\r\n            <summary>Gets field or property member names.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute\">\r\n            <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values when returning with the specified return value condition.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String)\">\r\n            <summary>Initializes the attribute with the specified return value condition and a field or property member.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter will not be null.\r\n            </param>\r\n            <param name=\"member\">\r\n            The field or property member that is promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String[])\">\r\n            <summary>Initializes the attribute with the specified return value condition and list of field and property members.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter will not be null.\r\n            </param>\r\n            <param name=\"members\">\r\n            The list of field and property members that are promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.ReturnValue\">\r\n            <summary>Gets the return value condition.</summary>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members\">\r\n            <summary>Gets field or property member names.</summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.OSPlatformAttribute\">\r\n            <summary>\r\n            Base type for all platform-specific API attributes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.TargetPlatformAttribute\">\r\n            <summary>\r\n            Records the platform that the project targeted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.SupportedOSPlatformAttribute\">\r\n             <summary>\r\n             Records the operating system (and minimum version) that supports an API. Multiple attributes can be\r\n             applied to indicate support on multiple operating systems.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.SupportedOSPlatformAttribute\" />\r\n             or use guards to prevent calls to APIs on unsupported operating systems.\r\n            \r\n             A given platform should only be specified once.\r\n             </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.UnsupportedOSPlatformAttribute\">\r\n            <summary>\r\n            Marks APIs that were removed in a given operating system version.\r\n            </summary>\r\n            <remarks>\r\n            Primarily used by OS bindings to indicate APIs that are only available in\r\n            earlier versions.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute\">\r\n             <summary>\r\n             Annotates a custom guard field, property or method with a supported platform name and optional version.\r\n             Multiple attributes can be applied to indicate guard for multiple supported platforms.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute\" /> to a field, property or method\r\n             and use that field, property or method in a conditional or assert statements in order to safely call platform specific APIs.\r\n            \r\n             The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard.\r\n             </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute\">\r\n             <summary>\r\n             Annotates the custom guard field, property or method with an unsupported platform name and optional version.\r\n             Multiple attributes can be applied to indicate guard for multiple unsupported platforms.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute\" /> to a field, property or method\r\n             and use that  field, property or method in a conditional or assert statements as a guard to safely call APIs unsupported on those platforms.\r\n            \r\n             The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard.\r\n             </remarks>\r\n        </member>\r\n        <member name=\"P:Internal.Cryptography.DecryptorPal.RecipientInfos\">\r\n             <summary>\r\n             Return the managed representation of the recipients.\r\n            \r\n             .NET Framework compat: Unlike the desktop, we compute this once and then latch it. Since both RecipientInfo and RecipientInfoCollection are immutable objects, this should be\r\n             a safe optimization to make.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.DecryptorPal.TryDecrypt(System.Security.Cryptography.Pkcs.RecipientInfo,System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.AsymmetricAlgorithm,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Exception@)\">\r\n            <summary>\r\n            Attempt to decrypt the CMS using the specified \"cert\". If successful, return the ContentInfo that contains the decrypted content. If unsuccessful, return null and set \"exception\"\r\n            to a valid Exception object. Do not throw the exception as EnvelopedCms will want to continue decryption attempts against other recipients. Only if all the recipients fail to\r\n            decrypt will then EnvelopedCms throw the exception from the last failed attempt.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.Resize(System.Byte[],System.Int32)\">\r\n            <summary>\r\n            This is not just a convenience wrapper for Array.Resize(). In DEBUG builds, it forces the array to move in memory even if no resize is needed. This should be used by\r\n            helper methods that do anything of the form \"call a native api once to get the estimated size, call it again to get the data and return the data in a byte[] array.\"\r\n            Sometimes, that data consist of a native data structure containing pointers to other parts of the block. Using such a helper to retrieve such a block results in an intermittent\r\n            AV. By using this helper, you make that AV repro every time.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.TryFindMatchingCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Security.Cryptography.Pkcs.SubjectIdentifier)\">\r\n            <summary>\r\n            .NET Framework compat: We do not complain about multiple matches. Just take the first one and ignore the rest.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.ToSkiBytes(System.String)\">\r\n             <summary>\r\n             Asserts on bad or non-canonicalized input. Input must come from trusted sources.\r\n            \r\n             Subject Key Identifier is string-ized as an upper case hex string. This format is part of the public api behavior and cannot be changed.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.ToSerialBytes(System.String)\">\r\n             <summary>\r\n             Asserts on bad or non-canonicalized input. Input must come from trusted sources.\r\n            \r\n             Serial number is string-ized as a reversed upper case hex string. This format is part of the public api behavior and cannot be changed.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.UpperHexStringToByteArray(System.String)\">\r\n            <summary>\r\n            Asserts on bad input. Input must come from trusted sources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.UpperHexCharToNybble(System.Char)\">\r\n            <summary>\r\n            Asserts on bad input. Input must come from trusted sources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.CreateBestPkcs9AttributeObjectAvailable(System.Security.Cryptography.Oid,System.Byte[])\">\r\n            <summary>\r\n            Useful helper for \"upgrading\" well-known CMS attributes to type-specific objects such as Pkcs9DocumentName, Pkcs9DocumentDescription, etc.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.Encrypt(System.Security.Cryptography.Pkcs.CmsRecipientCollection,System.Security.Cryptography.Pkcs.ContentInfo,System.Security.Cryptography.Pkcs.AlgorithmIdentifier,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Security.Cryptography.CryptographicAttributeObjectCollection)\">\r\n            <summary>\r\n            Encrypt and encode a CMS. Return value is the RFC-compliant representation of the CMS that can be transmitted \"on the wire.\"\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.Decode(System.ReadOnlySpan{System.Byte},System.Int32@,System.Security.Cryptography.Pkcs.ContentInfo@,System.Security.Cryptography.Pkcs.AlgorithmIdentifier@,System.Security.Cryptography.X509Certificates.X509Certificate2Collection@,System.Security.Cryptography.CryptographicAttributeObjectCollection@)\">\r\n            <summary>\r\n            Decode an encoded CMS.\r\n               Call RecipientInfos on the returned pal object to get the recipients.\r\n               Call TryDecrypt() on the returned pal object to attempt a decrypt for a single recipient.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetEncodedMessageType(System.ReadOnlySpan{System.Byte})\">\r\n            <summary>\r\n            Implements the ContentInfo.GetContentType() behavior.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.AddCertsFromStoreForDecryption(System.Security.Cryptography.X509Certificates.X509Certificate2Collection)\">\r\n            <summary>\r\n            EnvelopedCms.Decrypt() looks for qualifying certs from the \"MY\" store (as well as any \"extraStore\" passed to Decrypt()).\r\n            This method encapsulates exactly what a particular OS considers to be \"the MY store.\"\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateRecipientsNotFoundException\">\r\n            <summary>\r\n            If EnvelopedCms.Decrypt() fails to find any matching certs for any recipients, it throws CryptographicException(CRYPT_E_RECIPIENT_NOT_FOUND) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateRecipientInfosAfterEncryptException\">\r\n            <summary>\r\n            If you call RecipientInfos after an Encrypt(), the framework throws CryptographicException(CRYPT_E_INVALID_MSG_TYPE) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateDecryptAfterEncryptException\">\r\n            <summary>\r\n            If you call Decrypt() after an Encrypt(), the framework throws CryptographicException(CRYPT_E_INVALID_MSG_TYPE) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateDecryptTwiceException\">\r\n            <summary>\r\n            If you call Decrypt() after a Encrypt(), the framework throws CryptographicException(CRYPT_E_INVALID_MSG_TYPE) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetSubjectKeyIdentifier(System.Security.Cryptography.X509Certificates.X509Certificate2)\">\r\n            <summary>\r\n            Retrieve the certificate's subject key identifier value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetPrivateKeyForSigning``1(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Boolean)\">\r\n            <summary>\r\n            Retrieve a private key object for the certificate to use with signing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetPrivateKeyForDecryption``1(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Boolean)\">\r\n            <summary>\r\n            Retrieve a private key object for the certificate to use with decryption.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Internal.Cryptography.PkcsPal.Instance\">\r\n            <summary>\r\n            Get the one instance of PkcsPal.\r\n            </summary>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/System.Security.Cryptography.Pkcs.6.0.1/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>System.Security.Cryptography.Pkcs</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decode(System.ReadOnlySpan{System.Byte})\">\r\n            <summary>\r\n              Decodes the provided data as a CMS/PKCS#7 EnvelopedData message.\r\n            </summary>\r\n            <param name=\"encodedMessage\">\r\n              The data to decode.\r\n            </param>\r\n            <exception cref=\"T:System.Security.Cryptography.CryptographicException\">\r\n              The <paramref name=\"encodedMessage\"/> parameter was not successfully decoded.\r\n            </exception>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Pkcs12CertBag.#ctor(System.Security.Cryptography.Oid,System.ReadOnlyMemory{System.Byte})\">\r\n            <summary>\r\n            Create a CertBag for a specified certificate type and encoding.\r\n            </summary>\r\n            <param name=\"certificateType\">The identifier for the certificate type</param>\r\n            <param name=\"encodedCertificate\">The encoded value</param>\r\n            <remarks>\r\n            No validation is done to ensure that the <paramref name=\"encodedCertificate\"/> value is\r\n            correct for the indicated <paramref name=\"certificateType\"/>.  Note that for X.509\r\n            public-key certificates the correct encoding for a CertBag value is to wrap the\r\n            DER-encoded certificate in an OCTET STRING.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.CreateFromHash(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Oid,System.Security.Cryptography.Oid,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Boolean,System.Security.Cryptography.X509Certificates.X509ExtensionCollection)\">\r\n            <summary>\r\n            Create a timestamp request using a pre-computed hash value.\r\n            </summary>\r\n            <param name=\"hash\">The pre-computed hash value to be timestamped.</param>\r\n            <param name=\"hashAlgorithmId\">\r\n              The Object Identifier (OID) for the hash algorithm which produced <paramref name=\"hash\"/>.\r\n            </param>\r\n            <param name=\"requestedPolicyId\">\r\n              The Object Identifier (OID) for a timestamp policy the Timestamp Authority (TSA) should use,\r\n              or <c>null</c> to express no preference.\r\n            </param>\r\n            <param name=\"nonce\">\r\n              An optional nonce (number used once) to uniquely identify this request to pair it with the response.\r\n              The value is interpreted as an unsigned big-endian integer and may be normalized to the encoding format.\r\n            </param>\r\n            <param name=\"requestSignerCertificates\">\r\n              Indicates whether the Timestamp Authority (TSA) must (<c>true</c>) or must not (<c>false</c>) include\r\n              the signing certificate in the issued timestamp token.\r\n            </param>\r\n            <param name=\"extensions\">RFC3161 extensions to present with the request.</param>\r\n            <returns>\r\n              An <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest\"/> representing the chosen values.\r\n            </returns>\r\n            <seealso cref=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.Encode\"/>\r\n            <seealso cref=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.TryEncode(System.Span{System.Byte},System.Int32@)\"/>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.AsSignedCms\">\r\n            <summary>\r\n            Get a SignedCms representation of the RFC3161 Timestamp Token.\r\n            </summary>\r\n            <returns>The SignedCms representation of the RFC3161 Timestamp Token.</returns>\r\n            <remarks>\r\n            Successive calls to this method return the same object.\r\n            The SignedCms class is mutable, but changes to that object are not reflected in the\r\n            <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken\"/> object which produced it.\r\n            The value from calling <see cref=\"M:System.Security.Cryptography.Pkcs.SignedCms.Encode\"/> can be interpreted again as an\r\n            <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken\"/> via another call to <see cref=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.TryDecode(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Pkcs.Rfc3161TimestampToken@,System.Int32@)\"/>.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\">\r\n            <summary>\r\n            Represents the timestamp token information class defined in RFC3161 as TSTInfo.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.#ctor(System.Security.Cryptography.Oid,System.Security.Cryptography.Oid,System.ReadOnlyMemory{System.Byte},System.ReadOnlyMemory{System.Byte},System.DateTimeOffset,System.Nullable{System.Int64},System.Boolean,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Security.Cryptography.X509Certificates.X509ExtensionCollection)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\" /> class with the specified parameters.\r\n            </summary>\r\n            <param name=\"policyId\">An OID representing the TSA's policy under which the response was produced.</param>\r\n            <param name=\"hashAlgorithmId\">A hash algorithm OID of the data to be timestamped.</param>\r\n            <param name=\"messageHash\">A hash value of the data to be timestamped.</param>\r\n            <param name=\"serialNumber\">An integer assigned by the TSA to the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\"/>.</param>\r\n            <param name=\"timestamp\">The timestamp encoded in the token.</param>\r\n            <param name=\"accuracyInMicroseconds\">The accuracy with which <paramref name=\"timestamp\"/> is compared. Also see <paramref name=\"isOrdering\"/>.</param>\r\n            <param name=\"isOrdering\"><see langword=\"true\" /> to ensure that every timestamp token from the same TSA can always be ordered based on the <paramref name=\"timestamp\"/>, regardless of the accuracy; <see langword=\"false\" /> to make <paramref name=\"timestamp\"/> indicate when token has been created by the TSA.</param>\r\n            <param name=\"nonce\">The nonce associated with this timestamp token. Using a nonce always allows to detect replays, and hence its use is recommended.</param>\r\n            <param name=\"timestampAuthorityName\">The hint in the TSA name identification. The actual identification of the entity that signed the response will always occur through the use of the certificate identifier.</param>\r\n            <param name=\"extensions\">The extension values associated with the timestamp.</param>\r\n            <remarks>If <paramref name=\"hashAlgorithmId\" />, <paramref name=\"messageHash\" />, <paramref name=\"policyId\" /> or <paramref name=\"nonce\" /> are present in the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest\"/>, then the same value should be used. If <paramref name=\"accuracyInMicroseconds\"/> is not provided, then the accuracy may be available through other means such as i.e. <paramref name=\"policyId\" />.</remarks>\r\n            <exception cref=\"T:System.Security.Cryptography.CryptographicException\">ASN.1 corrupted data.</exception>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Version\">\r\n            <summary>\r\n            Gets the version of the timestamp token.\r\n            </summary>\r\n            <value>The version of the timestamp token.</value>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.PolicyId\">\r\n            <summary>\r\n            Gets an OID representing the TSA's policy under which the response was produced.\r\n            </summary>\r\n            <value>An OID representing the TSA's policy under which the response was produced.</value>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.HashAlgorithmId\">\r\n            <summary>\r\n            Gets an OID of the hash algorithm.\r\n            </summary>\r\n            <value>An OID of the hash algorithm.</value>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetMessageHash\">\r\n            <summary>\r\n            Gets the data representing the message hash.\r\n            </summary>\r\n            <returns>The data representing the message hash.</returns>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetSerialNumber\">\r\n            <summary>\r\n            Gets an integer assigned by the TSA to the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\"/>.\r\n            </summary>\r\n            <returns>An integer assigned by the TSA to the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\">\r\n            <summary>\r\n            Gets the timestamp encoded in the token.\r\n            </summary>\r\n            <value>The timestamp encoded in the token.</value>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.AccuracyInMicroseconds\">\r\n            <summary>\r\n            Gets the accuracy with which <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/> is compared.\r\n            </summary>\r\n            <seealso cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.IsOrdering\" />\r\n            <value>The accuracy with which <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/> is compared.</value>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.IsOrdering\">\r\n            <summary>\r\n            Gets a value indicating if every timestamp token from the same TSA can always be ordered based on the <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/>, regardless of the accuracy; If <see langword=\"false\" />, <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/> indicates when the token has been created by the TSA.\r\n            </summary>\r\n            <value>A value indicating if every timestamp token from the same TSA can always be ordered based on the <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/>.</value>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetNonce\">\r\n            <summary>\r\n            Gets the nonce associated with this timestamp token.\r\n            </summary>\r\n            <returns>The nonce associated with this timestamp token.</returns>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.HasExtensions\">\r\n            <summary>\r\n            Gets a value indicating whether there are any extensions associated with this timestamp token.\r\n            </summary>\r\n            <value>A value indicating whether there are any extensions associated with this timestamp token.</value>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetTimestampAuthorityName\">\r\n            <summary>\r\n            Gets the data representing the hint in the TSA name identification.\r\n            </summary>\r\n            <returns>The data representing the hint in the TSA name identification.</returns>\r\n            <remarks>\r\n            The actual identification of the entity that signed the response\r\n            will always occur through the use of the certificate identifier (ESSCertID Attribute)\r\n            inside a SigningCertificate attribute which is part of the signer info.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetExtensions\">\r\n            <summary>\r\n            Gets the extension values associated with the timestamp.\r\n            </summary>\r\n            <returns>The extension values associated with the timestamp.</returns>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Encode\">\r\n            <summary>\r\n            Encodes this object into a TSTInfo value\r\n            </summary>\r\n            <returns>The encoded TSTInfo value.</returns>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.TryEncode(System.Span{System.Byte},System.Int32@)\">\r\n            <summary>\r\n            Attempts to encode this object as a TSTInfo value, writing the result into the provided buffer.\r\n            </summary>\r\n            <param name=\"destination\">The destination buffer.</param>\r\n            <param name=\"bytesWritten\">When this method returns <see langword=\"true\" />, contains the bytes written to the <paramref name=\"destination\" /> buffer.</param>\r\n            <returns><see langword=\"true\" /> if the operation succeeded; <see langword=\"false\" /> if the buffer size was insufficient.</returns>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.TryDecode(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo@,System.Int32@)\">\r\n            <summary>\r\n            Decodes an encoded TSTInfo value.\r\n            </summary>\r\n            <param name=\"encodedBytes\">The input or source buffer.</param>\r\n            <param name=\"timestampTokenInfo\">When this method returns <see langword=\"true\" />, the decoded data. When this method returns <see langword=\"false\" />, the value is <see langword=\"null\" />, meaning the data could not be decoded.</param>\r\n            <param name=\"bytesConsumed\">The number of bytes used for decoding.</param>\r\n            <returns><see langword=\"true\" /> if the operation succeeded; <see langword=\"false\" /> otherwise.</returns>\r\n        </member>\r\n        <member name=\"P:System.HexConverter.CharToHexLookup\">\r\n            <summary>Map from an ASCII char to its hex value, e.g. arr['b'] == 11. 0xFF means it's not a hex digit.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Arg_EmptyOrNullString_Named\">\r\n            <summary>The `{0}` string cannot be empty or null.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Arg_RankMultiDimNotSupported\">\r\n            <summary>Only single dimensional arrays are supported for the requested action.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_EncodeDestinationTooSmall\">\r\n            <summary>The destination is too small to hold the encoded value.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_InvalidOffLen\">\r\n            <summary>Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_InvalidOidValue\">\r\n            <summary>The OID value was invalid.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_InvalidValue\">\r\n            <summary>Value was invalid.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.ArgumentOutOfRange_Index\">\r\n            <summary>Index was out of range. Must be non-negative and less than the size of the collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.ArgumentOutOfRange_NeedPosNum\">\r\n            <summary>Positive number required.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AlgKdfRequiresChars\">\r\n            <summary>The KDF for algorithm '{0}' requires a char-based password input.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_EnumeratedValueRequiresNonFlagsEnum\">\r\n            <summary>ASN.1 Enumerated values only apply to enum types without the [Flags] attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_NamedBitListRequiresFlagsEnum\">\r\n            <summary>Named bit list operations require an enum with the [Flags] attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_NamedBitListValueTooBig\">\r\n            <summary>The encoded named bit list value is larger than the value size of the '{0}' enum.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_UniversalValueIsFixed\">\r\n            <summary>Tags with TagClass Universal must have the appropriate TagValue value for the data type being read or written.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_UnusedBitCountRange\">\r\n            <summary>Unused bit count must be between 0 and 7, inclusive.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AsnWriter_EncodeUnbalancedStack\">\r\n            <summary>Encode cannot be called while a Sequence or SetOf is still open.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AsnWriter_PopWrongTag\">\r\n            <summary>Cannot pop the requested tag as it is not currently in progress.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_BadHashValue\">\r\n            <summary>The hash value is not correct.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_BadSignature\">\r\n            <summary>Invalid signature.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_CannotDetermineSignatureAlgorithm\">\r\n            <summary>Could not determine signature algorithm for the signer certificate.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_IncompleteCertChain\">\r\n            <summary>The certificate chain is incomplete, the self-signed root authority could not be determined.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Invalid_Originator_Identifier_Choice\">\r\n            <summary>Invalid originator identifier choice {0} found in decoded CMS.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Invalid_Subject_Identifier_Type\">\r\n            <summary>The subject identifier type {0} is not valid.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_InvalidMessageType\">\r\n            <summary>Invalid cryptographic message type.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_InvalidSignerHashForSignatureAlg\">\r\n            <summary>SignerInfo digest algorithm '{0}' is not valid for signature algorithm '{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Key_Agree_Date_Not_Available\">\r\n            <summary>The Date property is not available for none KID key agree recipient.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_MessageNotEncrypted\">\r\n            <summary>The CMS message is not encrypted.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_MessageNotSigned\">\r\n            <summary>The CMS message is not signed.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_MissingAuthenticatedAttribute\">\r\n            <summary>The cryptographic message does not contain an expected authenticated attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoCounterCounterSigner\">\r\n            <summary>Only one level of counter-signatures are supported on this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoRecipients\">\r\n            <summary>The recipients collection is empty. You must specify at least one recipient. This platform does not implement the certificate picker UI.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoSignerCert\">\r\n            <summary>No signer certificate was provided. This platform does not implement the certificate picker UI.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoSignerCertSilent\">\r\n            <summary>No signer certificate was provided.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoSignerAtIndex\">\r\n            <summary>The signed cryptographic message does not have a signer for the specified signer index.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_RecipientNotFound\">\r\n            <summary>The enveloped-data message does not contain the specified recipient.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_RecipientType_NotSupported\">\r\n            <summary>The recipient type '{0}' is not supported for encryption or decryption on this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Sign_Empty_Content\">\r\n            <summary>Cannot create CMS signature for empty content.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Sign_No_Signature_First_Signer\">\r\n            <summary>CmsSigner has to be the first signer with NoSignature.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_SignerNotFound\">\r\n            <summary>Cannot find the original signer.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Signing_RequiresPrivateKey\">\r\n            <summary>A certificate with a private key is required.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Ktri_RSARequired\">\r\n            <summary>An RSA key is required to decrypt for a RecipientInfo with a KeyTransport recipient type.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Recipient_RSARequired_RSAPaddingModeSupplied\">\r\n            <summary>An RSA certificate is required for a CmsRecipient when used with RSAEncryptionPadding.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_TrustFailure\">\r\n            <summary>Certificate trust could not be established. The first reported error is: {0}</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_UnknownAlgorithm\">\r\n            <summary>Unknown algorithm '{0}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_UnknownKeySpec\">\r\n            <summary>Unable to determine the type of key handle from this keyspec {0}.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_WrongKeyUsage\">\r\n            <summary>The certificate is not valid for the requested usage.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_NotValidPublicOrPrivateKey\">\r\n            <summary>Key is not a valid public or private key.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_CannotProcessEncryptedSafeContents\">\r\n            <summary>This operation is not valid on an encrypted or enveloped Pkcs12SafeContents.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_CertBagNotX509\">\r\n            <summary>The Pkcs12CertBag contents are not an X.509 certificate.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_PfxIsSealed\">\r\n            <summary>The Pkcs12Builder can no longer be modified because one of the Seal methods was already invoked.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_PfxMustBeSealed\">\r\n            <summary>One of the Seal methods must be invoked on the Pkcs12Builder before invoking an Encode method.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_SafeContentsIsEncrypted\">\r\n            <summary>Cannot enumerate the contents of an encrypted or enveloped Pkcs12SafeContents.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_SafeContentsIsReadOnly\">\r\n            <summary>New Pkcs12SafeBag values cannot be added to a Pkcs12SafeContents that was read from existing data.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_WrongModeForDecrypt\">\r\n            <summary>This decryption operation applies to 'Pkcs12ConfidentialityMode.{0}', but the target object is in 'Pkcs12ConfidentialityMode.{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_WrongModeForVerify\">\r\n            <summary>This verification operation applies to 'Pkcs12IntegrityMode.{0}', but the target object is in 'Pkcs12IntegrityMode.{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_InvalidSignatureParameters\">\r\n            <summary>Invalid signature paramters.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs8_EncryptedReadFailed\">\r\n            <summary>The EncryptedPrivateKeyInfo structure was decoded but was not successfully interpreted, the password may be incorrect.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs9_AttributeMismatch\">\r\n            <summary>The parameter should be a PKCS 9 attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs9_MultipleSigningTimeNotAllowed\">\r\n            <summary>Cannot add multiple PKCS 9 signing time attributes.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersMissing\">\r\n            <summary>PSS parameters were not present.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersHashMismatch\">\r\n            <summary>This platform requires that the PSS hash algorithm ({0}) match the data digest algorithm ({1}).</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersMgfHashMismatch\">\r\n            <summary>This platform does not support the MGF hash algorithm ({0}) being different from the signature hash algorithm ({1}).</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersMgfNotSupported\">\r\n            <summary>Mask generation function '{0}' is not supported by this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersSaltMismatch\">\r\n            <summary>PSS salt size {0} is not supported by this platform with hash algorithm {1}.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_BadNonce\">\r\n            <summary>The response from the timestamping server did not match the request nonce.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_BadResponse\">\r\n            <summary>The response from the timestamping server was not understood.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_Failure\">\r\n            <summary>The timestamping server did not grant the request. The request status is '{0}' with failure info '{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_NoCertFound\">\r\n            <summary>The timestamping request required the TSA certificate in the response, but it was not found.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_UnexpectedCertFound\">\r\n            <summary>The timestamping request required the TSA certificate not be included in the response, but certificates were present.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.InvalidOperation_DuplicateItemNotAllowed\">\r\n            <summary>Duplicate items are not allowed in the collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.InvalidOperation_WrongOidInAsnCollection\">\r\n            <summary>AsnEncodedData element in the collection has wrong Oid value: expected = '{0}', actual = '{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.PlatformNotSupported_CryptographyPkcs\">\r\n            <summary>System.Security.Cryptography.Pkcs is only supported on Windows platforms.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AlgorithmNotSupported\">\r\n            <summary>Algorithm '{0}' is not supported on this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Der_Invalid_Encoding\">\r\n            <summary>ASN1 corrupted data.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Invalid_IA5String\">\r\n            <summary>The string contains a character not in the 7 bit ASCII character set.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_UnknownAlgorithmIdentifier\">\r\n            <summary>The algorithm identified by '{0}' is unknown, not valid for the requested usage, or was not handled.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_UnknownHashAlgorithm\">\r\n            <summary>'{0}' is not a known hash algorithm.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_WriteEncodedValue_OneValueAtATime\">\r\n            <summary>The input to WriteEncodedValue must represent a single encoded value with no trailing data.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoAttributeFound\">\r\n            <summary>Attribute not found.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoCertificateFound\">\r\n            <summary>Certificate not found.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_CertificateAlreadyInCollection\">\r\n            <summary>Certificate already present in the collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_InvalidSymmetricKey\">\r\n            <summary>The key in the enveloped message is not valid or could not be decoded.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute\">\r\n            <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String)\">\r\n            <summary>Initializes the attribute with a field or property member.</summary>\r\n            <param name=\"member\">\r\n            The field or property member that is promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String[])\">\r\n            <summary>Initializes the attribute with the list of field and property members.</summary>\r\n            <param name=\"members\">\r\n            The list of field and property members that are promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members\">\r\n            <summary>Gets field or property member names.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute\">\r\n            <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values when returning with the specified return value condition.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String)\">\r\n            <summary>Initializes the attribute with the specified return value condition and a field or property member.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter will not be null.\r\n            </param>\r\n            <param name=\"member\">\r\n            The field or property member that is promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String[])\">\r\n            <summary>Initializes the attribute with the specified return value condition and list of field and property members.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter will not be null.\r\n            </param>\r\n            <param name=\"members\">\r\n            The list of field and property members that are promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.ReturnValue\">\r\n            <summary>Gets the return value condition.</summary>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members\">\r\n            <summary>Gets field or property member names.</summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.OSPlatformAttribute\">\r\n            <summary>\r\n            Base type for all platform-specific API attributes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.TargetPlatformAttribute\">\r\n            <summary>\r\n            Records the platform that the project targeted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.SupportedOSPlatformAttribute\">\r\n             <summary>\r\n             Records the operating system (and minimum version) that supports an API. Multiple attributes can be\r\n             applied to indicate support on multiple operating systems.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.SupportedOSPlatformAttribute\" />\r\n             or use guards to prevent calls to APIs on unsupported operating systems.\r\n            \r\n             A given platform should only be specified once.\r\n             </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.UnsupportedOSPlatformAttribute\">\r\n            <summary>\r\n            Marks APIs that were removed in a given operating system version.\r\n            </summary>\r\n            <remarks>\r\n            Primarily used by OS bindings to indicate APIs that are only available in\r\n            earlier versions.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute\">\r\n             <summary>\r\n             Annotates a custom guard field, property or method with a supported platform name and optional version.\r\n             Multiple attributes can be applied to indicate guard for multiple supported platforms.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute\" /> to a field, property or method\r\n             and use that field, property or method in a conditional or assert statements in order to safely call platform specific APIs.\r\n            \r\n             The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard.\r\n             </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute\">\r\n             <summary>\r\n             Annotates the custom guard field, property or method with an unsupported platform name and optional version.\r\n             Multiple attributes can be applied to indicate guard for multiple unsupported platforms.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute\" /> to a field, property or method\r\n             and use that  field, property or method in a conditional or assert statements as a guard to safely call APIs unsupported on those platforms.\r\n            \r\n             The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard.\r\n             </remarks>\r\n        </member>\r\n        <member name=\"P:Internal.Cryptography.DecryptorPal.RecipientInfos\">\r\n             <summary>\r\n             Return the managed representation of the recipients.\r\n            \r\n             .NET Framework compat: Unlike the desktop, we compute this once and then latch it. Since both RecipientInfo and RecipientInfoCollection are immutable objects, this should be\r\n             a safe optimization to make.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.DecryptorPal.TryDecrypt(System.Security.Cryptography.Pkcs.RecipientInfo,System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.AsymmetricAlgorithm,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Exception@)\">\r\n            <summary>\r\n            Attempt to decrypt the CMS using the specified \"cert\". If successful, return the ContentInfo that contains the decrypted content. If unsuccessful, return null and set \"exception\"\r\n            to a valid Exception object. Do not throw the exception as EnvelopedCms will want to continue decryption attempts against other recipients. Only if all the recipients fail to\r\n            decrypt will then EnvelopedCms throw the exception from the last failed attempt.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.Resize(System.Byte[],System.Int32)\">\r\n            <summary>\r\n            This is not just a convenience wrapper for Array.Resize(). In DEBUG builds, it forces the array to move in memory even if no resize is needed. This should be used by\r\n            helper methods that do anything of the form \"call a native api once to get the estimated size, call it again to get the data and return the data in a byte[] array.\"\r\n            Sometimes, that data consist of a native data structure containing pointers to other parts of the block. Using such a helper to retrieve such a block results in an intermittent\r\n            AV. By using this helper, you make that AV repro every time.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.TryFindMatchingCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Security.Cryptography.Pkcs.SubjectIdentifier)\">\r\n            <summary>\r\n            .NET Framework compat: We do not complain about multiple matches. Just take the first one and ignore the rest.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.ToSkiBytes(System.String)\">\r\n             <summary>\r\n             Asserts on bad or non-canonicalized input. Input must come from trusted sources.\r\n            \r\n             Subject Key Identifier is string-ized as an upper case hex string. This format is part of the public api behavior and cannot be changed.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.ToSerialBytes(System.String)\">\r\n             <summary>\r\n             Asserts on bad or non-canonicalized input. Input must come from trusted sources.\r\n            \r\n             Serial number is string-ized as a reversed upper case hex string. This format is part of the public api behavior and cannot be changed.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.UpperHexStringToByteArray(System.String)\">\r\n            <summary>\r\n            Asserts on bad input. Input must come from trusted sources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.UpperHexCharToNybble(System.Char)\">\r\n            <summary>\r\n            Asserts on bad input. Input must come from trusted sources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.CreateBestPkcs9AttributeObjectAvailable(System.Security.Cryptography.Oid,System.Byte[])\">\r\n            <summary>\r\n            Useful helper for \"upgrading\" well-known CMS attributes to type-specific objects such as Pkcs9DocumentName, Pkcs9DocumentDescription, etc.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.Encrypt(System.Security.Cryptography.Pkcs.CmsRecipientCollection,System.Security.Cryptography.Pkcs.ContentInfo,System.Security.Cryptography.Pkcs.AlgorithmIdentifier,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Security.Cryptography.CryptographicAttributeObjectCollection)\">\r\n            <summary>\r\n            Encrypt and encode a CMS. Return value is the RFC-compliant representation of the CMS that can be transmitted \"on the wire.\"\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.Decode(System.ReadOnlySpan{System.Byte},System.Int32@,System.Security.Cryptography.Pkcs.ContentInfo@,System.Security.Cryptography.Pkcs.AlgorithmIdentifier@,System.Security.Cryptography.X509Certificates.X509Certificate2Collection@,System.Security.Cryptography.CryptographicAttributeObjectCollection@)\">\r\n            <summary>\r\n            Decode an encoded CMS.\r\n               Call RecipientInfos on the returned pal object to get the recipients.\r\n               Call TryDecrypt() on the returned pal object to attempt a decrypt for a single recipient.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetEncodedMessageType(System.ReadOnlySpan{System.Byte})\">\r\n            <summary>\r\n            Implements the ContentInfo.GetContentType() behavior.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.AddCertsFromStoreForDecryption(System.Security.Cryptography.X509Certificates.X509Certificate2Collection)\">\r\n            <summary>\r\n            EnvelopedCms.Decrypt() looks for qualifying certs from the \"MY\" store (as well as any \"extraStore\" passed to Decrypt()).\r\n            This method encapsulates exactly what a particular OS considers to be \"the MY store.\"\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateRecipientsNotFoundException\">\r\n            <summary>\r\n            If EnvelopedCms.Decrypt() fails to find any matching certs for any recipients, it throws CryptographicException(CRYPT_E_RECIPIENT_NOT_FOUND) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateRecipientInfosAfterEncryptException\">\r\n            <summary>\r\n            If you call RecipientInfos after an Encrypt(), the framework throws CryptographicException(CRYPT_E_INVALID_MSG_TYPE) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateDecryptAfterEncryptException\">\r\n            <summary>\r\n            If you call Decrypt() after an Encrypt(), the framework throws CryptographicException(CRYPT_E_INVALID_MSG_TYPE) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateDecryptTwiceException\">\r\n            <summary>\r\n            If you call Decrypt() after a Encrypt(), the framework throws CryptographicException(CRYPT_E_INVALID_MSG_TYPE) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetSubjectKeyIdentifier(System.Security.Cryptography.X509Certificates.X509Certificate2)\">\r\n            <summary>\r\n            Retrieve the certificate's subject key identifier value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetPrivateKeyForSigning``1(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Boolean)\">\r\n            <summary>\r\n            Retrieve a private key object for the certificate to use with signing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetPrivateKeyForDecryption``1(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Boolean)\">\r\n            <summary>\r\n            Retrieve a private key object for the certificate to use with decryption.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Internal.Cryptography.PkcsPal.Instance\">\r\n            <summary>\r\n            Get the one instance of PkcsPal.\r\n            </summary>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/System.Security.Cryptography.Pkcs.6.0.1/runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>System.Security.Cryptography.Pkcs</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.AllowNullAttribute\">\r\n            <summary>Specifies that null is allowed as an input even if the corresponding type disallows it.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.DisallowNullAttribute\">\r\n            <summary>Specifies that null is disallowed as an input even if the corresponding type allows it.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MaybeNullAttribute\">\r\n            <summary>Specifies that an output may be null even if the corresponding type disallows it.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.NotNullAttribute\">\r\n            <summary>Specifies that an output will not be null even if the corresponding type allows it. Specifies that an input argument was not null when the call returns.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute\">\r\n            <summary>Specifies that when a method returns <see cref=\"P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue\"/>, the parameter may be null even if the corresponding type disallows it.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.#ctor(System.Boolean)\">\r\n            <summary>Initializes the attribute with the specified return value condition.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter may be null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue\">\r\n            <summary>Gets the return value condition.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute\">\r\n            <summary>Specifies that when a method returns <see cref=\"P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue\"/>, the parameter will not be null even if the corresponding type allows it.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.#ctor(System.Boolean)\">\r\n            <summary>Initializes the attribute with the specified return value condition.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter will not be null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue\">\r\n            <summary>Gets the return value condition.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute\">\r\n            <summary>Specifies that the output will be non-null if the named parameter is non-null.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.#ctor(System.String)\">\r\n            <summary>Initializes the attribute with the associated parameter name.</summary>\r\n            <param name=\"parameterName\">\r\n            The associated parameter name.  The output will be non-null if the argument to the parameter specified is non-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.ParameterName\">\r\n            <summary>Gets the associated parameter name.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.DoesNotReturnAttribute\">\r\n            <summary>Applied to a method that will never return under any circumstance.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute\">\r\n            <summary>Specifies that the method will not return if the associated Boolean parameter is passed the specified value.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.#ctor(System.Boolean)\">\r\n            <summary>Initializes the attribute with the specified parameter value.</summary>\r\n            <param name=\"parameterValue\">\r\n            The condition parameter value. Code after the method will be considered unreachable by diagnostics if the argument to\r\n            the associated parameter matches this value.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.ParameterValue\">\r\n            <summary>Gets the condition parameter value.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute\">\r\n            <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String)\">\r\n            <summary>Initializes the attribute with a field or property member.</summary>\r\n            <param name=\"member\">\r\n            The field or property member that is promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String[])\">\r\n            <summary>Initializes the attribute with the list of field and property members.</summary>\r\n            <param name=\"members\">\r\n            The list of field and property members that are promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members\">\r\n            <summary>Gets field or property member names.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute\">\r\n            <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values when returning with the specified return value condition.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String)\">\r\n            <summary>Initializes the attribute with the specified return value condition and a field or property member.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter will not be null.\r\n            </param>\r\n            <param name=\"member\">\r\n            The field or property member that is promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String[])\">\r\n            <summary>Initializes the attribute with the specified return value condition and list of field and property members.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter will not be null.\r\n            </param>\r\n            <param name=\"members\">\r\n            The list of field and property members that are promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.ReturnValue\">\r\n            <summary>Gets the return value condition.</summary>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members\">\r\n            <summary>Gets field or property member names.</summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.OSPlatformAttribute\">\r\n            <summary>\r\n            Base type for all platform-specific API attributes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.TargetPlatformAttribute\">\r\n            <summary>\r\n            Records the platform that the project targeted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.SupportedOSPlatformAttribute\">\r\n             <summary>\r\n             Records the operating system (and minimum version) that supports an API. Multiple attributes can be\r\n             applied to indicate support on multiple operating systems.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.SupportedOSPlatformAttribute\" />\r\n             or use guards to prevent calls to APIs on unsupported operating systems.\r\n            \r\n             A given platform should only be specified once.\r\n             </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.UnsupportedOSPlatformAttribute\">\r\n            <summary>\r\n            Marks APIs that were removed in a given operating system version.\r\n            </summary>\r\n            <remarks>\r\n            Primarily used by OS bindings to indicate APIs that are only available in\r\n            earlier versions.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute\">\r\n             <summary>\r\n             Annotates a custom guard field, property or method with a supported platform name and optional version.\r\n             Multiple attributes can be applied to indicate guard for multiple supported platforms.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute\" /> to a field, property or method\r\n             and use that field, property or method in a conditional or assert statements in order to safely call platform specific APIs.\r\n            \r\n             The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard.\r\n             </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute\">\r\n             <summary>\r\n             Annotates the custom guard field, property or method with an unsupported platform name and optional version.\r\n             Multiple attributes can be applied to indicate guard for multiple unsupported platforms.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute\" /> to a field, property or method\r\n             and use that  field, property or method in a conditional or assert statements as a guard to safely call APIs unsupported on those platforms.\r\n            \r\n             The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard.\r\n             </remarks>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/System.Security.Cryptography.Pkcs.6.0.1/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>System.Security.Cryptography.Pkcs</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decode(System.ReadOnlySpan{System.Byte})\">\r\n            <summary>\r\n              Decodes the provided data as a CMS/PKCS#7 EnvelopedData message.\r\n            </summary>\r\n            <param name=\"encodedMessage\">\r\n              The data to decode.\r\n            </param>\r\n            <exception cref=\"T:System.Security.Cryptography.CryptographicException\">\r\n              The <paramref name=\"encodedMessage\"/> parameter was not successfully decoded.\r\n            </exception>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Pkcs12CertBag.#ctor(System.Security.Cryptography.Oid,System.ReadOnlyMemory{System.Byte})\">\r\n            <summary>\r\n            Create a CertBag for a specified certificate type and encoding.\r\n            </summary>\r\n            <param name=\"certificateType\">The identifier for the certificate type</param>\r\n            <param name=\"encodedCertificate\">The encoded value</param>\r\n            <remarks>\r\n            No validation is done to ensure that the <paramref name=\"encodedCertificate\"/> value is\r\n            correct for the indicated <paramref name=\"certificateType\"/>.  Note that for X.509\r\n            public-key certificates the correct encoding for a CertBag value is to wrap the\r\n            DER-encoded certificate in an OCTET STRING.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.CreateFromHash(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Oid,System.Security.Cryptography.Oid,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Boolean,System.Security.Cryptography.X509Certificates.X509ExtensionCollection)\">\r\n            <summary>\r\n            Create a timestamp request using a pre-computed hash value.\r\n            </summary>\r\n            <param name=\"hash\">The pre-computed hash value to be timestamped.</param>\r\n            <param name=\"hashAlgorithmId\">\r\n              The Object Identifier (OID) for the hash algorithm which produced <paramref name=\"hash\"/>.\r\n            </param>\r\n            <param name=\"requestedPolicyId\">\r\n              The Object Identifier (OID) for a timestamp policy the Timestamp Authority (TSA) should use,\r\n              or <c>null</c> to express no preference.\r\n            </param>\r\n            <param name=\"nonce\">\r\n              An optional nonce (number used once) to uniquely identify this request to pair it with the response.\r\n              The value is interpreted as an unsigned big-endian integer and may be normalized to the encoding format.\r\n            </param>\r\n            <param name=\"requestSignerCertificates\">\r\n              Indicates whether the Timestamp Authority (TSA) must (<c>true</c>) or must not (<c>false</c>) include\r\n              the signing certificate in the issued timestamp token.\r\n            </param>\r\n            <param name=\"extensions\">RFC3161 extensions to present with the request.</param>\r\n            <returns>\r\n              An <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest\"/> representing the chosen values.\r\n            </returns>\r\n            <seealso cref=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.Encode\"/>\r\n            <seealso cref=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.TryEncode(System.Span{System.Byte},System.Int32@)\"/>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.AsSignedCms\">\r\n            <summary>\r\n            Get a SignedCms representation of the RFC3161 Timestamp Token.\r\n            </summary>\r\n            <returns>The SignedCms representation of the RFC3161 Timestamp Token.</returns>\r\n            <remarks>\r\n            Successive calls to this method return the same object.\r\n            The SignedCms class is mutable, but changes to that object are not reflected in the\r\n            <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken\"/> object which produced it.\r\n            The value from calling <see cref=\"M:System.Security.Cryptography.Pkcs.SignedCms.Encode\"/> can be interpreted again as an\r\n            <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken\"/> via another call to <see cref=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.TryDecode(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Pkcs.Rfc3161TimestampToken@,System.Int32@)\"/>.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\">\r\n            <summary>\r\n            Represents the timestamp token information class defined in RFC3161 as TSTInfo.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.#ctor(System.Security.Cryptography.Oid,System.Security.Cryptography.Oid,System.ReadOnlyMemory{System.Byte},System.ReadOnlyMemory{System.Byte},System.DateTimeOffset,System.Nullable{System.Int64},System.Boolean,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Security.Cryptography.X509Certificates.X509ExtensionCollection)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\" /> class with the specified parameters.\r\n            </summary>\r\n            <param name=\"policyId\">An OID representing the TSA's policy under which the response was produced.</param>\r\n            <param name=\"hashAlgorithmId\">A hash algorithm OID of the data to be timestamped.</param>\r\n            <param name=\"messageHash\">A hash value of the data to be timestamped.</param>\r\n            <param name=\"serialNumber\">An integer assigned by the TSA to the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\"/>.</param>\r\n            <param name=\"timestamp\">The timestamp encoded in the token.</param>\r\n            <param name=\"accuracyInMicroseconds\">The accuracy with which <paramref name=\"timestamp\"/> is compared. Also see <paramref name=\"isOrdering\"/>.</param>\r\n            <param name=\"isOrdering\"><see langword=\"true\" /> to ensure that every timestamp token from the same TSA can always be ordered based on the <paramref name=\"timestamp\"/>, regardless of the accuracy; <see langword=\"false\" /> to make <paramref name=\"timestamp\"/> indicate when token has been created by the TSA.</param>\r\n            <param name=\"nonce\">The nonce associated with this timestamp token. Using a nonce always allows to detect replays, and hence its use is recommended.</param>\r\n            <param name=\"timestampAuthorityName\">The hint in the TSA name identification. The actual identification of the entity that signed the response will always occur through the use of the certificate identifier.</param>\r\n            <param name=\"extensions\">The extension values associated with the timestamp.</param>\r\n            <remarks>If <paramref name=\"hashAlgorithmId\" />, <paramref name=\"messageHash\" />, <paramref name=\"policyId\" /> or <paramref name=\"nonce\" /> are present in the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest\"/>, then the same value should be used. If <paramref name=\"accuracyInMicroseconds\"/> is not provided, then the accuracy may be available through other means such as i.e. <paramref name=\"policyId\" />.</remarks>\r\n            <exception cref=\"T:System.Security.Cryptography.CryptographicException\">ASN.1 corrupted data.</exception>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Version\">\r\n            <summary>\r\n            Gets the version of the timestamp token.\r\n            </summary>\r\n            <value>The version of the timestamp token.</value>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.PolicyId\">\r\n            <summary>\r\n            Gets an OID representing the TSA's policy under which the response was produced.\r\n            </summary>\r\n            <value>An OID representing the TSA's policy under which the response was produced.</value>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.HashAlgorithmId\">\r\n            <summary>\r\n            Gets an OID of the hash algorithm.\r\n            </summary>\r\n            <value>An OID of the hash algorithm.</value>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetMessageHash\">\r\n            <summary>\r\n            Gets the data representing the message hash.\r\n            </summary>\r\n            <returns>The data representing the message hash.</returns>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetSerialNumber\">\r\n            <summary>\r\n            Gets an integer assigned by the TSA to the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\"/>.\r\n            </summary>\r\n            <returns>An integer assigned by the TSA to the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\">\r\n            <summary>\r\n            Gets the timestamp encoded in the token.\r\n            </summary>\r\n            <value>The timestamp encoded in the token.</value>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.AccuracyInMicroseconds\">\r\n            <summary>\r\n            Gets the accuracy with which <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/> is compared.\r\n            </summary>\r\n            <seealso cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.IsOrdering\" />\r\n            <value>The accuracy with which <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/> is compared.</value>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.IsOrdering\">\r\n            <summary>\r\n            Gets a value indicating if every timestamp token from the same TSA can always be ordered based on the <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/>, regardless of the accuracy; If <see langword=\"false\" />, <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/> indicates when the token has been created by the TSA.\r\n            </summary>\r\n            <value>A value indicating if every timestamp token from the same TSA can always be ordered based on the <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/>.</value>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetNonce\">\r\n            <summary>\r\n            Gets the nonce associated with this timestamp token.\r\n            </summary>\r\n            <returns>The nonce associated with this timestamp token.</returns>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.HasExtensions\">\r\n            <summary>\r\n            Gets a value indicating whether there are any extensions associated with this timestamp token.\r\n            </summary>\r\n            <value>A value indicating whether there are any extensions associated with this timestamp token.</value>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetTimestampAuthorityName\">\r\n            <summary>\r\n            Gets the data representing the hint in the TSA name identification.\r\n            </summary>\r\n            <returns>The data representing the hint in the TSA name identification.</returns>\r\n            <remarks>\r\n            The actual identification of the entity that signed the response\r\n            will always occur through the use of the certificate identifier (ESSCertID Attribute)\r\n            inside a SigningCertificate attribute which is part of the signer info.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetExtensions\">\r\n            <summary>\r\n            Gets the extension values associated with the timestamp.\r\n            </summary>\r\n            <returns>The extension values associated with the timestamp.</returns>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Encode\">\r\n            <summary>\r\n            Encodes this object into a TSTInfo value\r\n            </summary>\r\n            <returns>The encoded TSTInfo value.</returns>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.TryEncode(System.Span{System.Byte},System.Int32@)\">\r\n            <summary>\r\n            Attempts to encode this object as a TSTInfo value, writing the result into the provided buffer.\r\n            </summary>\r\n            <param name=\"destination\">The destination buffer.</param>\r\n            <param name=\"bytesWritten\">When this method returns <see langword=\"true\" />, contains the bytes written to the <paramref name=\"destination\" /> buffer.</param>\r\n            <returns><see langword=\"true\" /> if the operation succeeded; <see langword=\"false\" /> if the buffer size was insufficient.</returns>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.TryDecode(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo@,System.Int32@)\">\r\n            <summary>\r\n            Decodes an encoded TSTInfo value.\r\n            </summary>\r\n            <param name=\"encodedBytes\">The input or source buffer.</param>\r\n            <param name=\"timestampTokenInfo\">When this method returns <see langword=\"true\" />, the decoded data. When this method returns <see langword=\"false\" />, the value is <see langword=\"null\" />, meaning the data could not be decoded.</param>\r\n            <param name=\"bytesConsumed\">The number of bytes used for decoding.</param>\r\n            <returns><see langword=\"true\" /> if the operation succeeded; <see langword=\"false\" /> otherwise.</returns>\r\n        </member>\r\n        <member name=\"T:System.Security.Cryptography.SafeHashHandle\">\r\n            <summary>\r\n            SafeHandle representing HCRYPTHASH handle\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Security.Cryptography.SafeKeyHandle\">\r\n            <summary>\r\n                Safe handle representing a HCRYPTKEY\r\n            </summary>\r\n            <summary>\r\n                Since we need to delete the key handle before the provider is released we need to actually hold a\r\n                pointer to a CRYPT_KEY_CTX unmanaged structure whose destructor decrements a refCount. Only when\r\n                the provider refCount is 0 it is deleted. This way, we loose a race in the critical finalization\r\n                of the key handle and provider handle. This also applies to hash handles, which point to a\r\n                CRYPT_HASH_CTX. Those structures are defined in COMCryptography.h\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Security.Cryptography.SafeProvHandle\">\r\n            <summary>\r\n            Safehandle representing HCRYPTPROV\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:System.HexConverter.CharToHexLookup\">\r\n            <summary>Map from an ASCII char to its hex value, e.g. arr['b'] == 11. 0xFF means it's not a hex digit.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Arg_EmptyOrNullString_Named\">\r\n            <summary>The `{0}` string cannot be empty or null.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Arg_RankMultiDimNotSupported\">\r\n            <summary>Only single dimensional arrays are supported for the requested action.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_EncodeDestinationTooSmall\">\r\n            <summary>The destination is too small to hold the encoded value.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_InvalidOffLen\">\r\n            <summary>Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_InvalidOidValue\">\r\n            <summary>The OID value was invalid.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_InvalidValue\">\r\n            <summary>Value was invalid.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.ArgumentOutOfRange_Index\">\r\n            <summary>Index was out of range. Must be non-negative and less than the size of the collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.ArgumentOutOfRange_NeedPosNum\">\r\n            <summary>Positive number required.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AlgKdfRequiresChars\">\r\n            <summary>The KDF for algorithm '{0}' requires a char-based password input.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_EnumeratedValueRequiresNonFlagsEnum\">\r\n            <summary>ASN.1 Enumerated values only apply to enum types without the [Flags] attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_NamedBitListRequiresFlagsEnum\">\r\n            <summary>Named bit list operations require an enum with the [Flags] attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_NamedBitListValueTooBig\">\r\n            <summary>The encoded named bit list value is larger than the value size of the '{0}' enum.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_UniversalValueIsFixed\">\r\n            <summary>Tags with TagClass Universal must have the appropriate TagValue value for the data type being read or written.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_UnusedBitCountRange\">\r\n            <summary>Unused bit count must be between 0 and 7, inclusive.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AsnWriter_EncodeUnbalancedStack\">\r\n            <summary>Encode cannot be called while a Sequence or SetOf is still open.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AsnWriter_PopWrongTag\">\r\n            <summary>Cannot pop the requested tag as it is not currently in progress.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_BadHashValue\">\r\n            <summary>The hash value is not correct.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_BadSignature\">\r\n            <summary>Invalid signature.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_CannotDetermineSignatureAlgorithm\">\r\n            <summary>Could not determine signature algorithm for the signer certificate.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_IncompleteCertChain\">\r\n            <summary>The certificate chain is incomplete, the self-signed root authority could not be determined.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Invalid_Originator_Identifier_Choice\">\r\n            <summary>Invalid originator identifier choice {0} found in decoded CMS.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Invalid_Subject_Identifier_Type\">\r\n            <summary>The subject identifier type {0} is not valid.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_InvalidMessageType\">\r\n            <summary>Invalid cryptographic message type.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_InvalidSignerHashForSignatureAlg\">\r\n            <summary>SignerInfo digest algorithm '{0}' is not valid for signature algorithm '{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Key_Agree_Date_Not_Available\">\r\n            <summary>The Date property is not available for none KID key agree recipient.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_MessageNotEncrypted\">\r\n            <summary>The CMS message is not encrypted.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_MessageNotSigned\">\r\n            <summary>The CMS message is not signed.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_MissingAuthenticatedAttribute\">\r\n            <summary>The cryptographic message does not contain an expected authenticated attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoCounterCounterSigner\">\r\n            <summary>Only one level of counter-signatures are supported on this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoRecipients\">\r\n            <summary>The recipients collection is empty. You must specify at least one recipient. This platform does not implement the certificate picker UI.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoSignerCert\">\r\n            <summary>No signer certificate was provided. This platform does not implement the certificate picker UI.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoSignerCertSilent\">\r\n            <summary>No signer certificate was provided.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoSignerAtIndex\">\r\n            <summary>The signed cryptographic message does not have a signer for the specified signer index.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_RecipientNotFound\">\r\n            <summary>The enveloped-data message does not contain the specified recipient.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_RecipientType_NotSupported\">\r\n            <summary>The recipient type '{0}' is not supported for encryption or decryption on this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Sign_Empty_Content\">\r\n            <summary>Cannot create CMS signature for empty content.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Sign_No_Signature_First_Signer\">\r\n            <summary>CmsSigner has to be the first signer with NoSignature.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_SignerNotFound\">\r\n            <summary>Cannot find the original signer.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Signing_RequiresPrivateKey\">\r\n            <summary>A certificate with a private key is required.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Ktri_RSARequired\">\r\n            <summary>An RSA key is required to decrypt for a RecipientInfo with a KeyTransport recipient type.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Recipient_RSARequired_RSAPaddingModeSupplied\">\r\n            <summary>An RSA certificate is required for a CmsRecipient when used with RSAEncryptionPadding.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_TrustFailure\">\r\n            <summary>Certificate trust could not be established. The first reported error is: {0}</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_UnknownAlgorithm\">\r\n            <summary>Unknown algorithm '{0}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_UnknownKeySpec\">\r\n            <summary>Unable to determine the type of key handle from this keyspec {0}.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_WrongKeyUsage\">\r\n            <summary>The certificate is not valid for the requested usage.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_NotValidPublicOrPrivateKey\">\r\n            <summary>Key is not a valid public or private key.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_CannotProcessEncryptedSafeContents\">\r\n            <summary>This operation is not valid on an encrypted or enveloped Pkcs12SafeContents.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_CertBagNotX509\">\r\n            <summary>The Pkcs12CertBag contents are not an X.509 certificate.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_PfxIsSealed\">\r\n            <summary>The Pkcs12Builder can no longer be modified because one of the Seal methods was already invoked.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_PfxMustBeSealed\">\r\n            <summary>One of the Seal methods must be invoked on the Pkcs12Builder before invoking an Encode method.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_SafeContentsIsEncrypted\">\r\n            <summary>Cannot enumerate the contents of an encrypted or enveloped Pkcs12SafeContents.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_SafeContentsIsReadOnly\">\r\n            <summary>New Pkcs12SafeBag values cannot be added to a Pkcs12SafeContents that was read from existing data.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_WrongModeForDecrypt\">\r\n            <summary>This decryption operation applies to 'Pkcs12ConfidentialityMode.{0}', but the target object is in 'Pkcs12ConfidentialityMode.{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_WrongModeForVerify\">\r\n            <summary>This verification operation applies to 'Pkcs12IntegrityMode.{0}', but the target object is in 'Pkcs12IntegrityMode.{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_InvalidSignatureParameters\">\r\n            <summary>Invalid signature paramters.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs8_EncryptedReadFailed\">\r\n            <summary>The EncryptedPrivateKeyInfo structure was decoded but was not successfully interpreted, the password may be incorrect.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs9_AttributeMismatch\">\r\n            <summary>The parameter should be a PKCS 9 attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs9_MultipleSigningTimeNotAllowed\">\r\n            <summary>Cannot add multiple PKCS 9 signing time attributes.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersMissing\">\r\n            <summary>PSS parameters were not present.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersHashMismatch\">\r\n            <summary>This platform requires that the PSS hash algorithm ({0}) match the data digest algorithm ({1}).</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersMgfHashMismatch\">\r\n            <summary>This platform does not support the MGF hash algorithm ({0}) being different from the signature hash algorithm ({1}).</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersMgfNotSupported\">\r\n            <summary>Mask generation function '{0}' is not supported by this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersSaltMismatch\">\r\n            <summary>PSS salt size {0} is not supported by this platform with hash algorithm {1}.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_BadNonce\">\r\n            <summary>The response from the timestamping server did not match the request nonce.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_BadResponse\">\r\n            <summary>The response from the timestamping server was not understood.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_Failure\">\r\n            <summary>The timestamping server did not grant the request. The request status is '{0}' with failure info '{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_NoCertFound\">\r\n            <summary>The timestamping request required the TSA certificate in the response, but it was not found.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_UnexpectedCertFound\">\r\n            <summary>The timestamping request required the TSA certificate not be included in the response, but certificates were present.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.InvalidOperation_DuplicateItemNotAllowed\">\r\n            <summary>Duplicate items are not allowed in the collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.InvalidOperation_WrongOidInAsnCollection\">\r\n            <summary>AsnEncodedData element in the collection has wrong Oid value: expected = '{0}', actual = '{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.PlatformNotSupported_CryptographyPkcs\">\r\n            <summary>System.Security.Cryptography.Pkcs is only supported on Windows platforms.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AlgorithmNotSupported\">\r\n            <summary>Algorithm '{0}' is not supported on this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Der_Invalid_Encoding\">\r\n            <summary>ASN1 corrupted data.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Invalid_IA5String\">\r\n            <summary>The string contains a character not in the 7 bit ASCII character set.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_UnknownAlgorithmIdentifier\">\r\n            <summary>The algorithm identified by '{0}' is unknown, not valid for the requested usage, or was not handled.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_UnknownHashAlgorithm\">\r\n            <summary>'{0}' is not a known hash algorithm.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_WriteEncodedValue_OneValueAtATime\">\r\n            <summary>The input to WriteEncodedValue must represent a single encoded value with no trailing data.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoAttributeFound\">\r\n            <summary>Attribute not found.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoCertificateFound\">\r\n            <summary>Certificate not found.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_CertificateAlreadyInCollection\">\r\n            <summary>Certificate already present in the collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_InvalidSymmetricKey\">\r\n            <summary>The key in the enveloped message is not valid or could not be decoded.</summary>\r\n        </member>\r\n        <member name=\"P:Internal.Cryptography.DecryptorPal.RecipientInfos\">\r\n             <summary>\r\n             Return the managed representation of the recipients.\r\n            \r\n             .NET Framework compat: Unlike the desktop, we compute this once and then latch it. Since both RecipientInfo and RecipientInfoCollection are immutable objects, this should be\r\n             a safe optimization to make.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.DecryptorPal.TryDecrypt(System.Security.Cryptography.Pkcs.RecipientInfo,System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.AsymmetricAlgorithm,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Exception@)\">\r\n            <summary>\r\n            Attempt to decrypt the CMS using the specified \"cert\". If successful, return the ContentInfo that contains the decrypted content. If unsuccessful, return null and set \"exception\"\r\n            to a valid Exception object. Do not throw the exception as EnvelopedCms will want to continue decryption attempts against other recipients. Only if all the recipients fail to\r\n            decrypt will then EnvelopedCms throw the exception from the last failed attempt.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.Resize(System.Byte[],System.Int32)\">\r\n            <summary>\r\n            This is not just a convenience wrapper for Array.Resize(). In DEBUG builds, it forces the array to move in memory even if no resize is needed. This should be used by\r\n            helper methods that do anything of the form \"call a native api once to get the estimated size, call it again to get the data and return the data in a byte[] array.\"\r\n            Sometimes, that data consist of a native data structure containing pointers to other parts of the block. Using such a helper to retrieve such a block results in an intermittent\r\n            AV. By using this helper, you make that AV repro every time.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.TryFindMatchingCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Security.Cryptography.Pkcs.SubjectIdentifier)\">\r\n            <summary>\r\n            .NET Framework compat: We do not complain about multiple matches. Just take the first one and ignore the rest.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.ToSkiBytes(System.String)\">\r\n             <summary>\r\n             Asserts on bad or non-canonicalized input. Input must come from trusted sources.\r\n            \r\n             Subject Key Identifier is string-ized as an upper case hex string. This format is part of the public api behavior and cannot be changed.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.ToSerialBytes(System.String)\">\r\n             <summary>\r\n             Asserts on bad or non-canonicalized input. Input must come from trusted sources.\r\n            \r\n             Serial number is string-ized as a reversed upper case hex string. This format is part of the public api behavior and cannot be changed.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.UpperHexStringToByteArray(System.String)\">\r\n            <summary>\r\n            Asserts on bad input. Input must come from trusted sources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.UpperHexCharToNybble(System.Char)\">\r\n            <summary>\r\n            Asserts on bad input. Input must come from trusted sources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.CreateBestPkcs9AttributeObjectAvailable(System.Security.Cryptography.Oid,System.Byte[])\">\r\n            <summary>\r\n            Useful helper for \"upgrading\" well-known CMS attributes to type-specific objects such as Pkcs9DocumentName, Pkcs9DocumentDescription, etc.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.Encrypt(System.Security.Cryptography.Pkcs.CmsRecipientCollection,System.Security.Cryptography.Pkcs.ContentInfo,System.Security.Cryptography.Pkcs.AlgorithmIdentifier,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Security.Cryptography.CryptographicAttributeObjectCollection)\">\r\n            <summary>\r\n            Encrypt and encode a CMS. Return value is the RFC-compliant representation of the CMS that can be transmitted \"on the wire.\"\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.Decode(System.ReadOnlySpan{System.Byte},System.Int32@,System.Security.Cryptography.Pkcs.ContentInfo@,System.Security.Cryptography.Pkcs.AlgorithmIdentifier@,System.Security.Cryptography.X509Certificates.X509Certificate2Collection@,System.Security.Cryptography.CryptographicAttributeObjectCollection@)\">\r\n            <summary>\r\n            Decode an encoded CMS.\r\n               Call RecipientInfos on the returned pal object to get the recipients.\r\n               Call TryDecrypt() on the returned pal object to attempt a decrypt for a single recipient.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetEncodedMessageType(System.ReadOnlySpan{System.Byte})\">\r\n            <summary>\r\n            Implements the ContentInfo.GetContentType() behavior.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.AddCertsFromStoreForDecryption(System.Security.Cryptography.X509Certificates.X509Certificate2Collection)\">\r\n            <summary>\r\n            EnvelopedCms.Decrypt() looks for qualifying certs from the \"MY\" store (as well as any \"extraStore\" passed to Decrypt()).\r\n            This method encapsulates exactly what a particular OS considers to be \"the MY store.\"\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateRecipientsNotFoundException\">\r\n            <summary>\r\n            If EnvelopedCms.Decrypt() fails to find any matching certs for any recipients, it throws CryptographicException(CRYPT_E_RECIPIENT_NOT_FOUND) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateRecipientInfosAfterEncryptException\">\r\n            <summary>\r\n            If you call RecipientInfos after an Encrypt(), the framework throws CryptographicException(CRYPT_E_INVALID_MSG_TYPE) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateDecryptAfterEncryptException\">\r\n            <summary>\r\n            If you call Decrypt() after an Encrypt(), the framework throws CryptographicException(CRYPT_E_INVALID_MSG_TYPE) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateDecryptTwiceException\">\r\n            <summary>\r\n            If you call Decrypt() after a Encrypt(), the framework throws CryptographicException(CRYPT_E_INVALID_MSG_TYPE) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetSubjectKeyIdentifier(System.Security.Cryptography.X509Certificates.X509Certificate2)\">\r\n            <summary>\r\n            Retrieve the certificate's subject key identifier value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetPrivateKeyForSigning``1(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Boolean)\">\r\n            <summary>\r\n            Retrieve a private key object for the certificate to use with signing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetPrivateKeyForDecryption``1(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Boolean)\">\r\n            <summary>\r\n            Retrieve a private key object for the certificate to use with decryption.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Internal.Cryptography.PkcsPal.Instance\">\r\n            <summary>\r\n            Get the one instance of PkcsPal.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.Pal.Windows.HelpersWindows.GetContentInfo(Microsoft.Win32.SafeHandles.SafeCryptMsgHandle)\">\r\n             <summary>\r\n             Returns the inner content of the CMS.\r\n            \r\n             Special case: If the CMS is an enveloped CMS that has been decrypted and the inner content type is Oids.Pkcs7Data, the returned\r\n             content bytes are the decoded octet bytes, rather than the encoding of those bytes. This is a documented convenience behavior of\r\n             CryptMsgGetParam(CMSG_CONTENT_PARAM) that apparently got baked into the behavior of the managed EnvelopedCms class.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.Pal.Windows.HelpersWindows.ToAlgId(System.String)\">\r\n            <summary>\r\n            Returns (AlgId)(-1) if oid is unknown.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Microsoft.Win32.SafeHandles.SafeHandleCache`1\">\r\n            <summary>Provides a cache for special instances of SafeHandles.</summary>\r\n            <typeparam name=\"T\">Specifies the type of SafeHandle.</typeparam>\r\n        </member>\r\n        <member name=\"M:Microsoft.Win32.SafeHandles.SafeHandleCache`1.GetInvalidHandle(System.Func{`0})\">\r\n            <summary>\r\n            Gets a cached, invalid handle.  As the instance is cached, it should either never be Disposed\r\n            or it should override <see cref=\"M:System.Runtime.InteropServices.SafeHandle.Dispose(System.Boolean)\"/> to prevent disposal when the\r\n            instance represents an invalid handle: <see cref=\"P:System.Runtime.InteropServices.SafeHandle.IsInvalid\"/> returns <see language=\"true\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Microsoft.Win32.SafeHandles.SafeHandleCache`1.IsCachedInvalidHandle(System.Runtime.InteropServices.SafeHandle)\">\r\n            <summary>Gets whether the specified handle is invalid handle.</summary>\r\n            <param name=\"handle\">The handle to compare.</param>\r\n            <returns>true if <paramref name=\"handle\"/> is invalid handle; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Interop.Kernel32.GetMessage(System.Int32)\">\r\n            <summary>\r\n                Returns a string message for the specified Win32 error code.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Interop.NCrypt.ErrorCode\">\r\n            <summary>\r\n                Result codes from NCrypt APIs\r\n            </summary>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/System.Security.Cryptography.Pkcs.6.0.1/runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>System.Security.Cryptography.Pkcs</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decode(System.ReadOnlySpan{System.Byte})\">\r\n            <summary>\r\n              Decodes the provided data as a CMS/PKCS#7 EnvelopedData message.\r\n            </summary>\r\n            <param name=\"encodedMessage\">\r\n              The data to decode.\r\n            </param>\r\n            <exception cref=\"T:System.Security.Cryptography.CryptographicException\">\r\n              The <paramref name=\"encodedMessage\"/> parameter was not successfully decoded.\r\n            </exception>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Pkcs12CertBag.#ctor(System.Security.Cryptography.Oid,System.ReadOnlyMemory{System.Byte})\">\r\n            <summary>\r\n            Create a CertBag for a specified certificate type and encoding.\r\n            </summary>\r\n            <param name=\"certificateType\">The identifier for the certificate type</param>\r\n            <param name=\"encodedCertificate\">The encoded value</param>\r\n            <remarks>\r\n            No validation is done to ensure that the <paramref name=\"encodedCertificate\"/> value is\r\n            correct for the indicated <paramref name=\"certificateType\"/>.  Note that for X.509\r\n            public-key certificates the correct encoding for a CertBag value is to wrap the\r\n            DER-encoded certificate in an OCTET STRING.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.CreateFromHash(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Oid,System.Security.Cryptography.Oid,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Boolean,System.Security.Cryptography.X509Certificates.X509ExtensionCollection)\">\r\n            <summary>\r\n            Create a timestamp request using a pre-computed hash value.\r\n            </summary>\r\n            <param name=\"hash\">The pre-computed hash value to be timestamped.</param>\r\n            <param name=\"hashAlgorithmId\">\r\n              The Object Identifier (OID) for the hash algorithm which produced <paramref name=\"hash\"/>.\r\n            </param>\r\n            <param name=\"requestedPolicyId\">\r\n              The Object Identifier (OID) for a timestamp policy the Timestamp Authority (TSA) should use,\r\n              or <c>null</c> to express no preference.\r\n            </param>\r\n            <param name=\"nonce\">\r\n              An optional nonce (number used once) to uniquely identify this request to pair it with the response.\r\n              The value is interpreted as an unsigned big-endian integer and may be normalized to the encoding format.\r\n            </param>\r\n            <param name=\"requestSignerCertificates\">\r\n              Indicates whether the Timestamp Authority (TSA) must (<c>true</c>) or must not (<c>false</c>) include\r\n              the signing certificate in the issued timestamp token.\r\n            </param>\r\n            <param name=\"extensions\">RFC3161 extensions to present with the request.</param>\r\n            <returns>\r\n              An <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest\"/> representing the chosen values.\r\n            </returns>\r\n            <seealso cref=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.Encode\"/>\r\n            <seealso cref=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.TryEncode(System.Span{System.Byte},System.Int32@)\"/>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.AsSignedCms\">\r\n            <summary>\r\n            Get a SignedCms representation of the RFC3161 Timestamp Token.\r\n            </summary>\r\n            <returns>The SignedCms representation of the RFC3161 Timestamp Token.</returns>\r\n            <remarks>\r\n            Successive calls to this method return the same object.\r\n            The SignedCms class is mutable, but changes to that object are not reflected in the\r\n            <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken\"/> object which produced it.\r\n            The value from calling <see cref=\"M:System.Security.Cryptography.Pkcs.SignedCms.Encode\"/> can be interpreted again as an\r\n            <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken\"/> via another call to <see cref=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.TryDecode(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Pkcs.Rfc3161TimestampToken@,System.Int32@)\"/>.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\">\r\n            <summary>\r\n            Represents the timestamp token information class defined in RFC3161 as TSTInfo.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.#ctor(System.Security.Cryptography.Oid,System.Security.Cryptography.Oid,System.ReadOnlyMemory{System.Byte},System.ReadOnlyMemory{System.Byte},System.DateTimeOffset,System.Nullable{System.Int64},System.Boolean,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Security.Cryptography.X509Certificates.X509ExtensionCollection)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\" /> class with the specified parameters.\r\n            </summary>\r\n            <param name=\"policyId\">An OID representing the TSA's policy under which the response was produced.</param>\r\n            <param name=\"hashAlgorithmId\">A hash algorithm OID of the data to be timestamped.</param>\r\n            <param name=\"messageHash\">A hash value of the data to be timestamped.</param>\r\n            <param name=\"serialNumber\">An integer assigned by the TSA to the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\"/>.</param>\r\n            <param name=\"timestamp\">The timestamp encoded in the token.</param>\r\n            <param name=\"accuracyInMicroseconds\">The accuracy with which <paramref name=\"timestamp\"/> is compared. Also see <paramref name=\"isOrdering\"/>.</param>\r\n            <param name=\"isOrdering\"><see langword=\"true\" /> to ensure that every timestamp token from the same TSA can always be ordered based on the <paramref name=\"timestamp\"/>, regardless of the accuracy; <see langword=\"false\" /> to make <paramref name=\"timestamp\"/> indicate when token has been created by the TSA.</param>\r\n            <param name=\"nonce\">The nonce associated with this timestamp token. Using a nonce always allows to detect replays, and hence its use is recommended.</param>\r\n            <param name=\"timestampAuthorityName\">The hint in the TSA name identification. The actual identification of the entity that signed the response will always occur through the use of the certificate identifier.</param>\r\n            <param name=\"extensions\">The extension values associated with the timestamp.</param>\r\n            <remarks>If <paramref name=\"hashAlgorithmId\" />, <paramref name=\"messageHash\" />, <paramref name=\"policyId\" /> or <paramref name=\"nonce\" /> are present in the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest\"/>, then the same value should be used. If <paramref name=\"accuracyInMicroseconds\"/> is not provided, then the accuracy may be available through other means such as i.e. <paramref name=\"policyId\" />.</remarks>\r\n            <exception cref=\"T:System.Security.Cryptography.CryptographicException\">ASN.1 corrupted data.</exception>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Version\">\r\n            <summary>\r\n            Gets the version of the timestamp token.\r\n            </summary>\r\n            <value>The version of the timestamp token.</value>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.PolicyId\">\r\n            <summary>\r\n            Gets an OID representing the TSA's policy under which the response was produced.\r\n            </summary>\r\n            <value>An OID representing the TSA's policy under which the response was produced.</value>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.HashAlgorithmId\">\r\n            <summary>\r\n            Gets an OID of the hash algorithm.\r\n            </summary>\r\n            <value>An OID of the hash algorithm.</value>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetMessageHash\">\r\n            <summary>\r\n            Gets the data representing the message hash.\r\n            </summary>\r\n            <returns>The data representing the message hash.</returns>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetSerialNumber\">\r\n            <summary>\r\n            Gets an integer assigned by the TSA to the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\"/>.\r\n            </summary>\r\n            <returns>An integer assigned by the TSA to the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\">\r\n            <summary>\r\n            Gets the timestamp encoded in the token.\r\n            </summary>\r\n            <value>The timestamp encoded in the token.</value>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.AccuracyInMicroseconds\">\r\n            <summary>\r\n            Gets the accuracy with which <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/> is compared.\r\n            </summary>\r\n            <seealso cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.IsOrdering\" />\r\n            <value>The accuracy with which <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/> is compared.</value>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.IsOrdering\">\r\n            <summary>\r\n            Gets a value indicating if every timestamp token from the same TSA can always be ordered based on the <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/>, regardless of the accuracy; If <see langword=\"false\" />, <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/> indicates when the token has been created by the TSA.\r\n            </summary>\r\n            <value>A value indicating if every timestamp token from the same TSA can always be ordered based on the <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/>.</value>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetNonce\">\r\n            <summary>\r\n            Gets the nonce associated with this timestamp token.\r\n            </summary>\r\n            <returns>The nonce associated with this timestamp token.</returns>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.HasExtensions\">\r\n            <summary>\r\n            Gets a value indicating whether there are any extensions associated with this timestamp token.\r\n            </summary>\r\n            <value>A value indicating whether there are any extensions associated with this timestamp token.</value>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetTimestampAuthorityName\">\r\n            <summary>\r\n            Gets the data representing the hint in the TSA name identification.\r\n            </summary>\r\n            <returns>The data representing the hint in the TSA name identification.</returns>\r\n            <remarks>\r\n            The actual identification of the entity that signed the response\r\n            will always occur through the use of the certificate identifier (ESSCertID Attribute)\r\n            inside a SigningCertificate attribute which is part of the signer info.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetExtensions\">\r\n            <summary>\r\n            Gets the extension values associated with the timestamp.\r\n            </summary>\r\n            <returns>The extension values associated with the timestamp.</returns>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Encode\">\r\n            <summary>\r\n            Encodes this object into a TSTInfo value\r\n            </summary>\r\n            <returns>The encoded TSTInfo value.</returns>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.TryEncode(System.Span{System.Byte},System.Int32@)\">\r\n            <summary>\r\n            Attempts to encode this object as a TSTInfo value, writing the result into the provided buffer.\r\n            </summary>\r\n            <param name=\"destination\">The destination buffer.</param>\r\n            <param name=\"bytesWritten\">When this method returns <see langword=\"true\" />, contains the bytes written to the <paramref name=\"destination\" /> buffer.</param>\r\n            <returns><see langword=\"true\" /> if the operation succeeded; <see langword=\"false\" /> if the buffer size was insufficient.</returns>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.TryDecode(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo@,System.Int32@)\">\r\n            <summary>\r\n            Decodes an encoded TSTInfo value.\r\n            </summary>\r\n            <param name=\"encodedBytes\">The input or source buffer.</param>\r\n            <param name=\"timestampTokenInfo\">When this method returns <see langword=\"true\" />, the decoded data. When this method returns <see langword=\"false\" />, the value is <see langword=\"null\" />, meaning the data could not be decoded.</param>\r\n            <param name=\"bytesConsumed\">The number of bytes used for decoding.</param>\r\n            <returns><see langword=\"true\" /> if the operation succeeded; <see langword=\"false\" /> otherwise.</returns>\r\n        </member>\r\n        <member name=\"T:System.Security.Cryptography.SafeHashHandle\">\r\n            <summary>\r\n            SafeHandle representing HCRYPTHASH handle\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Security.Cryptography.SafeKeyHandle\">\r\n            <summary>\r\n                Safe handle representing a HCRYPTKEY\r\n            </summary>\r\n            <summary>\r\n                Since we need to delete the key handle before the provider is released we need to actually hold a\r\n                pointer to a CRYPT_KEY_CTX unmanaged structure whose destructor decrements a refCount. Only when\r\n                the provider refCount is 0 it is deleted. This way, we loose a race in the critical finalization\r\n                of the key handle and provider handle. This also applies to hash handles, which point to a\r\n                CRYPT_HASH_CTX. Those structures are defined in COMCryptography.h\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Security.Cryptography.SafeProvHandle\">\r\n            <summary>\r\n            Safehandle representing HCRYPTPROV\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:System.HexConverter.CharToHexLookup\">\r\n            <summary>Map from an ASCII char to its hex value, e.g. arr['b'] == 11. 0xFF means it's not a hex digit.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Arg_EmptyOrNullString_Named\">\r\n            <summary>The `{0}` string cannot be empty or null.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Arg_RankMultiDimNotSupported\">\r\n            <summary>Only single dimensional arrays are supported for the requested action.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_EncodeDestinationTooSmall\">\r\n            <summary>The destination is too small to hold the encoded value.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_InvalidOffLen\">\r\n            <summary>Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_InvalidOidValue\">\r\n            <summary>The OID value was invalid.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_InvalidValue\">\r\n            <summary>Value was invalid.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.ArgumentOutOfRange_Index\">\r\n            <summary>Index was out of range. Must be non-negative and less than the size of the collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.ArgumentOutOfRange_NeedPosNum\">\r\n            <summary>Positive number required.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AlgKdfRequiresChars\">\r\n            <summary>The KDF for algorithm '{0}' requires a char-based password input.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_EnumeratedValueRequiresNonFlagsEnum\">\r\n            <summary>ASN.1 Enumerated values only apply to enum types without the [Flags] attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_NamedBitListRequiresFlagsEnum\">\r\n            <summary>Named bit list operations require an enum with the [Flags] attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_NamedBitListValueTooBig\">\r\n            <summary>The encoded named bit list value is larger than the value size of the '{0}' enum.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_UniversalValueIsFixed\">\r\n            <summary>Tags with TagClass Universal must have the appropriate TagValue value for the data type being read or written.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_UnusedBitCountRange\">\r\n            <summary>Unused bit count must be between 0 and 7, inclusive.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AsnWriter_EncodeUnbalancedStack\">\r\n            <summary>Encode cannot be called while a Sequence or SetOf is still open.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AsnWriter_PopWrongTag\">\r\n            <summary>Cannot pop the requested tag as it is not currently in progress.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_BadHashValue\">\r\n            <summary>The hash value is not correct.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_BadSignature\">\r\n            <summary>Invalid signature.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_CannotDetermineSignatureAlgorithm\">\r\n            <summary>Could not determine signature algorithm for the signer certificate.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_IncompleteCertChain\">\r\n            <summary>The certificate chain is incomplete, the self-signed root authority could not be determined.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Invalid_Originator_Identifier_Choice\">\r\n            <summary>Invalid originator identifier choice {0} found in decoded CMS.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Invalid_Subject_Identifier_Type\">\r\n            <summary>The subject identifier type {0} is not valid.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_InvalidMessageType\">\r\n            <summary>Invalid cryptographic message type.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_InvalidSignerHashForSignatureAlg\">\r\n            <summary>SignerInfo digest algorithm '{0}' is not valid for signature algorithm '{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Key_Agree_Date_Not_Available\">\r\n            <summary>The Date property is not available for none KID key agree recipient.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_MessageNotEncrypted\">\r\n            <summary>The CMS message is not encrypted.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_MessageNotSigned\">\r\n            <summary>The CMS message is not signed.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_MissingAuthenticatedAttribute\">\r\n            <summary>The cryptographic message does not contain an expected authenticated attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoCounterCounterSigner\">\r\n            <summary>Only one level of counter-signatures are supported on this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoRecipients\">\r\n            <summary>The recipients collection is empty. You must specify at least one recipient. This platform does not implement the certificate picker UI.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoSignerCert\">\r\n            <summary>No signer certificate was provided. This platform does not implement the certificate picker UI.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoSignerCertSilent\">\r\n            <summary>No signer certificate was provided.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoSignerAtIndex\">\r\n            <summary>The signed cryptographic message does not have a signer for the specified signer index.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_RecipientNotFound\">\r\n            <summary>The enveloped-data message does not contain the specified recipient.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_RecipientType_NotSupported\">\r\n            <summary>The recipient type '{0}' is not supported for encryption or decryption on this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Sign_Empty_Content\">\r\n            <summary>Cannot create CMS signature for empty content.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Sign_No_Signature_First_Signer\">\r\n            <summary>CmsSigner has to be the first signer with NoSignature.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_SignerNotFound\">\r\n            <summary>Cannot find the original signer.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Signing_RequiresPrivateKey\">\r\n            <summary>A certificate with a private key is required.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Ktri_RSARequired\">\r\n            <summary>An RSA key is required to decrypt for a RecipientInfo with a KeyTransport recipient type.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Recipient_RSARequired_RSAPaddingModeSupplied\">\r\n            <summary>An RSA certificate is required for a CmsRecipient when used with RSAEncryptionPadding.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_TrustFailure\">\r\n            <summary>Certificate trust could not be established. The first reported error is: {0}</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_UnknownAlgorithm\">\r\n            <summary>Unknown algorithm '{0}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_UnknownKeySpec\">\r\n            <summary>Unable to determine the type of key handle from this keyspec {0}.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_WrongKeyUsage\">\r\n            <summary>The certificate is not valid for the requested usage.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_NotValidPublicOrPrivateKey\">\r\n            <summary>Key is not a valid public or private key.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_CannotProcessEncryptedSafeContents\">\r\n            <summary>This operation is not valid on an encrypted or enveloped Pkcs12SafeContents.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_CertBagNotX509\">\r\n            <summary>The Pkcs12CertBag contents are not an X.509 certificate.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_PfxIsSealed\">\r\n            <summary>The Pkcs12Builder can no longer be modified because one of the Seal methods was already invoked.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_PfxMustBeSealed\">\r\n            <summary>One of the Seal methods must be invoked on the Pkcs12Builder before invoking an Encode method.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_SafeContentsIsEncrypted\">\r\n            <summary>Cannot enumerate the contents of an encrypted or enveloped Pkcs12SafeContents.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_SafeContentsIsReadOnly\">\r\n            <summary>New Pkcs12SafeBag values cannot be added to a Pkcs12SafeContents that was read from existing data.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_WrongModeForDecrypt\">\r\n            <summary>This decryption operation applies to 'Pkcs12ConfidentialityMode.{0}', but the target object is in 'Pkcs12ConfidentialityMode.{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_WrongModeForVerify\">\r\n            <summary>This verification operation applies to 'Pkcs12IntegrityMode.{0}', but the target object is in 'Pkcs12IntegrityMode.{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_InvalidSignatureParameters\">\r\n            <summary>Invalid signature paramters.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs8_EncryptedReadFailed\">\r\n            <summary>The EncryptedPrivateKeyInfo structure was decoded but was not successfully interpreted, the password may be incorrect.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs9_AttributeMismatch\">\r\n            <summary>The parameter should be a PKCS 9 attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs9_MultipleSigningTimeNotAllowed\">\r\n            <summary>Cannot add multiple PKCS 9 signing time attributes.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersMissing\">\r\n            <summary>PSS parameters were not present.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersHashMismatch\">\r\n            <summary>This platform requires that the PSS hash algorithm ({0}) match the data digest algorithm ({1}).</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersMgfHashMismatch\">\r\n            <summary>This platform does not support the MGF hash algorithm ({0}) being different from the signature hash algorithm ({1}).</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersMgfNotSupported\">\r\n            <summary>Mask generation function '{0}' is not supported by this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersSaltMismatch\">\r\n            <summary>PSS salt size {0} is not supported by this platform with hash algorithm {1}.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_BadNonce\">\r\n            <summary>The response from the timestamping server did not match the request nonce.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_BadResponse\">\r\n            <summary>The response from the timestamping server was not understood.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_Failure\">\r\n            <summary>The timestamping server did not grant the request. The request status is '{0}' with failure info '{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_NoCertFound\">\r\n            <summary>The timestamping request required the TSA certificate in the response, but it was not found.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_UnexpectedCertFound\">\r\n            <summary>The timestamping request required the TSA certificate not be included in the response, but certificates were present.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.InvalidOperation_DuplicateItemNotAllowed\">\r\n            <summary>Duplicate items are not allowed in the collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.InvalidOperation_WrongOidInAsnCollection\">\r\n            <summary>AsnEncodedData element in the collection has wrong Oid value: expected = '{0}', actual = '{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.PlatformNotSupported_CryptographyPkcs\">\r\n            <summary>System.Security.Cryptography.Pkcs is only supported on Windows platforms.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AlgorithmNotSupported\">\r\n            <summary>Algorithm '{0}' is not supported on this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Der_Invalid_Encoding\">\r\n            <summary>ASN1 corrupted data.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Invalid_IA5String\">\r\n            <summary>The string contains a character not in the 7 bit ASCII character set.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_UnknownAlgorithmIdentifier\">\r\n            <summary>The algorithm identified by '{0}' is unknown, not valid for the requested usage, or was not handled.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_UnknownHashAlgorithm\">\r\n            <summary>'{0}' is not a known hash algorithm.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_WriteEncodedValue_OneValueAtATime\">\r\n            <summary>The input to WriteEncodedValue must represent a single encoded value with no trailing data.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoAttributeFound\">\r\n            <summary>Attribute not found.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoCertificateFound\">\r\n            <summary>Certificate not found.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_CertificateAlreadyInCollection\">\r\n            <summary>Certificate already present in the collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_InvalidSymmetricKey\">\r\n            <summary>The key in the enveloped message is not valid or could not be decoded.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute\">\r\n            <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String)\">\r\n            <summary>Initializes the attribute with a field or property member.</summary>\r\n            <param name=\"member\">\r\n            The field or property member that is promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String[])\">\r\n            <summary>Initializes the attribute with the list of field and property members.</summary>\r\n            <param name=\"members\">\r\n            The list of field and property members that are promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members\">\r\n            <summary>Gets field or property member names.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute\">\r\n            <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values when returning with the specified return value condition.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String)\">\r\n            <summary>Initializes the attribute with the specified return value condition and a field or property member.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter will not be null.\r\n            </param>\r\n            <param name=\"member\">\r\n            The field or property member that is promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String[])\">\r\n            <summary>Initializes the attribute with the specified return value condition and list of field and property members.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter will not be null.\r\n            </param>\r\n            <param name=\"members\">\r\n            The list of field and property members that are promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.ReturnValue\">\r\n            <summary>Gets the return value condition.</summary>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members\">\r\n            <summary>Gets field or property member names.</summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.OSPlatformAttribute\">\r\n            <summary>\r\n            Base type for all platform-specific API attributes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.TargetPlatformAttribute\">\r\n            <summary>\r\n            Records the platform that the project targeted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.SupportedOSPlatformAttribute\">\r\n             <summary>\r\n             Records the operating system (and minimum version) that supports an API. Multiple attributes can be\r\n             applied to indicate support on multiple operating systems.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.SupportedOSPlatformAttribute\" />\r\n             or use guards to prevent calls to APIs on unsupported operating systems.\r\n            \r\n             A given platform should only be specified once.\r\n             </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.UnsupportedOSPlatformAttribute\">\r\n            <summary>\r\n            Marks APIs that were removed in a given operating system version.\r\n            </summary>\r\n            <remarks>\r\n            Primarily used by OS bindings to indicate APIs that are only available in\r\n            earlier versions.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute\">\r\n             <summary>\r\n             Annotates a custom guard field, property or method with a supported platform name and optional version.\r\n             Multiple attributes can be applied to indicate guard for multiple supported platforms.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute\" /> to a field, property or method\r\n             and use that field, property or method in a conditional or assert statements in order to safely call platform specific APIs.\r\n            \r\n             The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard.\r\n             </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute\">\r\n             <summary>\r\n             Annotates the custom guard field, property or method with an unsupported platform name and optional version.\r\n             Multiple attributes can be applied to indicate guard for multiple unsupported platforms.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute\" /> to a field, property or method\r\n             and use that  field, property or method in a conditional or assert statements as a guard to safely call APIs unsupported on those platforms.\r\n            \r\n             The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard.\r\n             </remarks>\r\n        </member>\r\n        <member name=\"P:Internal.Cryptography.DecryptorPal.RecipientInfos\">\r\n             <summary>\r\n             Return the managed representation of the recipients.\r\n            \r\n             .NET Framework compat: Unlike the desktop, we compute this once and then latch it. Since both RecipientInfo and RecipientInfoCollection are immutable objects, this should be\r\n             a safe optimization to make.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.DecryptorPal.TryDecrypt(System.Security.Cryptography.Pkcs.RecipientInfo,System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.AsymmetricAlgorithm,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Exception@)\">\r\n            <summary>\r\n            Attempt to decrypt the CMS using the specified \"cert\". If successful, return the ContentInfo that contains the decrypted content. If unsuccessful, return null and set \"exception\"\r\n            to a valid Exception object. Do not throw the exception as EnvelopedCms will want to continue decryption attempts against other recipients. Only if all the recipients fail to\r\n            decrypt will then EnvelopedCms throw the exception from the last failed attempt.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.Resize(System.Byte[],System.Int32)\">\r\n            <summary>\r\n            This is not just a convenience wrapper for Array.Resize(). In DEBUG builds, it forces the array to move in memory even if no resize is needed. This should be used by\r\n            helper methods that do anything of the form \"call a native api once to get the estimated size, call it again to get the data and return the data in a byte[] array.\"\r\n            Sometimes, that data consist of a native data structure containing pointers to other parts of the block. Using such a helper to retrieve such a block results in an intermittent\r\n            AV. By using this helper, you make that AV repro every time.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.TryFindMatchingCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Security.Cryptography.Pkcs.SubjectIdentifier)\">\r\n            <summary>\r\n            .NET Framework compat: We do not complain about multiple matches. Just take the first one and ignore the rest.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.ToSkiBytes(System.String)\">\r\n             <summary>\r\n             Asserts on bad or non-canonicalized input. Input must come from trusted sources.\r\n            \r\n             Subject Key Identifier is string-ized as an upper case hex string. This format is part of the public api behavior and cannot be changed.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.ToSerialBytes(System.String)\">\r\n             <summary>\r\n             Asserts on bad or non-canonicalized input. Input must come from trusted sources.\r\n            \r\n             Serial number is string-ized as a reversed upper case hex string. This format is part of the public api behavior and cannot be changed.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.UpperHexStringToByteArray(System.String)\">\r\n            <summary>\r\n            Asserts on bad input. Input must come from trusted sources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.UpperHexCharToNybble(System.Char)\">\r\n            <summary>\r\n            Asserts on bad input. Input must come from trusted sources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.CreateBestPkcs9AttributeObjectAvailable(System.Security.Cryptography.Oid,System.Byte[])\">\r\n            <summary>\r\n            Useful helper for \"upgrading\" well-known CMS attributes to type-specific objects such as Pkcs9DocumentName, Pkcs9DocumentDescription, etc.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.Encrypt(System.Security.Cryptography.Pkcs.CmsRecipientCollection,System.Security.Cryptography.Pkcs.ContentInfo,System.Security.Cryptography.Pkcs.AlgorithmIdentifier,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Security.Cryptography.CryptographicAttributeObjectCollection)\">\r\n            <summary>\r\n            Encrypt and encode a CMS. Return value is the RFC-compliant representation of the CMS that can be transmitted \"on the wire.\"\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.Decode(System.ReadOnlySpan{System.Byte},System.Int32@,System.Security.Cryptography.Pkcs.ContentInfo@,System.Security.Cryptography.Pkcs.AlgorithmIdentifier@,System.Security.Cryptography.X509Certificates.X509Certificate2Collection@,System.Security.Cryptography.CryptographicAttributeObjectCollection@)\">\r\n            <summary>\r\n            Decode an encoded CMS.\r\n               Call RecipientInfos on the returned pal object to get the recipients.\r\n               Call TryDecrypt() on the returned pal object to attempt a decrypt for a single recipient.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetEncodedMessageType(System.ReadOnlySpan{System.Byte})\">\r\n            <summary>\r\n            Implements the ContentInfo.GetContentType() behavior.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.AddCertsFromStoreForDecryption(System.Security.Cryptography.X509Certificates.X509Certificate2Collection)\">\r\n            <summary>\r\n            EnvelopedCms.Decrypt() looks for qualifying certs from the \"MY\" store (as well as any \"extraStore\" passed to Decrypt()).\r\n            This method encapsulates exactly what a particular OS considers to be \"the MY store.\"\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateRecipientsNotFoundException\">\r\n            <summary>\r\n            If EnvelopedCms.Decrypt() fails to find any matching certs for any recipients, it throws CryptographicException(CRYPT_E_RECIPIENT_NOT_FOUND) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateRecipientInfosAfterEncryptException\">\r\n            <summary>\r\n            If you call RecipientInfos after an Encrypt(), the framework throws CryptographicException(CRYPT_E_INVALID_MSG_TYPE) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateDecryptAfterEncryptException\">\r\n            <summary>\r\n            If you call Decrypt() after an Encrypt(), the framework throws CryptographicException(CRYPT_E_INVALID_MSG_TYPE) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateDecryptTwiceException\">\r\n            <summary>\r\n            If you call Decrypt() after a Encrypt(), the framework throws CryptographicException(CRYPT_E_INVALID_MSG_TYPE) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetSubjectKeyIdentifier(System.Security.Cryptography.X509Certificates.X509Certificate2)\">\r\n            <summary>\r\n            Retrieve the certificate's subject key identifier value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetPrivateKeyForSigning``1(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Boolean)\">\r\n            <summary>\r\n            Retrieve a private key object for the certificate to use with signing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetPrivateKeyForDecryption``1(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Boolean)\">\r\n            <summary>\r\n            Retrieve a private key object for the certificate to use with decryption.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Internal.Cryptography.PkcsPal.Instance\">\r\n            <summary>\r\n            Get the one instance of PkcsPal.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.Pal.Windows.HelpersWindows.GetContentInfo(Microsoft.Win32.SafeHandles.SafeCryptMsgHandle)\">\r\n             <summary>\r\n             Returns the inner content of the CMS.\r\n            \r\n             Special case: If the CMS is an enveloped CMS that has been decrypted and the inner content type is Oids.Pkcs7Data, the returned\r\n             content bytes are the decoded octet bytes, rather than the encoding of those bytes. This is a documented convenience behavior of\r\n             CryptMsgGetParam(CMSG_CONTENT_PARAM) that apparently got baked into the behavior of the managed EnvelopedCms class.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.Pal.Windows.HelpersWindows.ToAlgId(System.String)\">\r\n            <summary>\r\n            Returns (AlgId)(-1) if oid is unknown.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Microsoft.Win32.SafeHandles.SafeHandleCache`1\">\r\n            <summary>Provides a cache for special instances of SafeHandles.</summary>\r\n            <typeparam name=\"T\">Specifies the type of SafeHandle.</typeparam>\r\n        </member>\r\n        <member name=\"M:Microsoft.Win32.SafeHandles.SafeHandleCache`1.GetInvalidHandle(System.Func{`0})\">\r\n            <summary>\r\n            Gets a cached, invalid handle.  As the instance is cached, it should either never be Disposed\r\n            or it should override <see cref=\"M:System.Runtime.InteropServices.SafeHandle.Dispose(System.Boolean)\"/> to prevent disposal when the\r\n            instance represents an invalid handle: <see cref=\"P:System.Runtime.InteropServices.SafeHandle.IsInvalid\"/> returns <see language=\"true\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Microsoft.Win32.SafeHandles.SafeHandleCache`1.IsCachedInvalidHandle(System.Runtime.InteropServices.SafeHandle)\">\r\n            <summary>Gets whether the specified handle is invalid handle.</summary>\r\n            <param name=\"handle\">The handle to compare.</param>\r\n            <returns>true if <paramref name=\"handle\"/> is invalid handle; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Interop.Kernel32.GetMessage(System.Int32)\">\r\n            <summary>\r\n                Returns a string message for the specified Win32 error code.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Interop.NCrypt.ErrorCode\">\r\n            <summary>\r\n                Result codes from NCrypt APIs\r\n            </summary>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/System.Security.Cryptography.Pkcs.6.0.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>System.Security.Cryptography.Pkcs</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decode(System.ReadOnlySpan{System.Byte})\">\r\n            <summary>\r\n              Decodes the provided data as a CMS/PKCS#7 EnvelopedData message.\r\n            </summary>\r\n            <param name=\"encodedMessage\">\r\n              The data to decode.\r\n            </param>\r\n            <exception cref=\"T:System.Security.Cryptography.CryptographicException\">\r\n              The <paramref name=\"encodedMessage\"/> parameter was not successfully decoded.\r\n            </exception>\r\n        </member>\r\n        <member name=\"T:System.Security.Cryptography.SafeHashHandle\">\r\n            <summary>\r\n            SafeHandle representing HCRYPTHASH handle\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Security.Cryptography.SafeKeyHandle\">\r\n            <summary>\r\n                Safe handle representing a HCRYPTKEY\r\n            </summary>\r\n            <summary>\r\n                Since we need to delete the key handle before the provider is released we need to actually hold a\r\n                pointer to a CRYPT_KEY_CTX unmanaged structure whose destructor decrements a refCount. Only when\r\n                the provider refCount is 0 it is deleted. This way, we loose a race in the critical finalization\r\n                of the key handle and provider handle. This also applies to hash handles, which point to a\r\n                CRYPT_HASH_CTX. Those structures are defined in COMCryptography.h\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Security.Cryptography.SafeProvHandle\">\r\n            <summary>\r\n            Safehandle representing HCRYPTPROV\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:System.HexConverter.CharToHexLookup\">\r\n            <summary>Map from an ASCII char to its hex value, e.g. arr['b'] == 11. 0xFF means it's not a hex digit.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Arg_EmptyOrNullString_Named\">\r\n            <summary>The `{0}` string cannot be empty or null.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Arg_RankMultiDimNotSupported\">\r\n            <summary>Only single dimensional arrays are supported for the requested action.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_EncodeDestinationTooSmall\">\r\n            <summary>The destination is too small to hold the encoded value.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_InvalidOffLen\">\r\n            <summary>Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_InvalidOidValue\">\r\n            <summary>The OID value was invalid.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_InvalidValue\">\r\n            <summary>Value was invalid.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.ArgumentOutOfRange_Index\">\r\n            <summary>Index was out of range. Must be non-negative and less than the size of the collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.ArgumentOutOfRange_NeedPosNum\">\r\n            <summary>Positive number required.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AlgKdfRequiresChars\">\r\n            <summary>The KDF for algorithm '{0}' requires a char-based password input.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_EnumeratedValueRequiresNonFlagsEnum\">\r\n            <summary>ASN.1 Enumerated values only apply to enum types without the [Flags] attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_NamedBitListRequiresFlagsEnum\">\r\n            <summary>Named bit list operations require an enum with the [Flags] attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_NamedBitListValueTooBig\">\r\n            <summary>The encoded named bit list value is larger than the value size of the '{0}' enum.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_UniversalValueIsFixed\">\r\n            <summary>Tags with TagClass Universal must have the appropriate TagValue value for the data type being read or written.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_UnusedBitCountRange\">\r\n            <summary>Unused bit count must be between 0 and 7, inclusive.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AsnWriter_EncodeUnbalancedStack\">\r\n            <summary>Encode cannot be called while a Sequence or SetOf is still open.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AsnWriter_PopWrongTag\">\r\n            <summary>Cannot pop the requested tag as it is not currently in progress.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_BadHashValue\">\r\n            <summary>The hash value is not correct.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_BadSignature\">\r\n            <summary>Invalid signature.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_CannotDetermineSignatureAlgorithm\">\r\n            <summary>Could not determine signature algorithm for the signer certificate.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_IncompleteCertChain\">\r\n            <summary>The certificate chain is incomplete, the self-signed root authority could not be determined.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Invalid_Originator_Identifier_Choice\">\r\n            <summary>Invalid originator identifier choice {0} found in decoded CMS.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Invalid_Subject_Identifier_Type\">\r\n            <summary>The subject identifier type {0} is not valid.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_InvalidMessageType\">\r\n            <summary>Invalid cryptographic message type.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_InvalidSignerHashForSignatureAlg\">\r\n            <summary>SignerInfo digest algorithm '{0}' is not valid for signature algorithm '{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Key_Agree_Date_Not_Available\">\r\n            <summary>The Date property is not available for none KID key agree recipient.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_MessageNotEncrypted\">\r\n            <summary>The CMS message is not encrypted.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_MessageNotSigned\">\r\n            <summary>The CMS message is not signed.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_MissingAuthenticatedAttribute\">\r\n            <summary>The cryptographic message does not contain an expected authenticated attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoCounterCounterSigner\">\r\n            <summary>Only one level of counter-signatures are supported on this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoRecipients\">\r\n            <summary>The recipients collection is empty. You must specify at least one recipient. This platform does not implement the certificate picker UI.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoSignerCert\">\r\n            <summary>No signer certificate was provided. This platform does not implement the certificate picker UI.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoSignerCertSilent\">\r\n            <summary>No signer certificate was provided.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoSignerAtIndex\">\r\n            <summary>The signed cryptographic message does not have a signer for the specified signer index.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_RecipientNotFound\">\r\n            <summary>The enveloped-data message does not contain the specified recipient.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_RecipientType_NotSupported\">\r\n            <summary>The recipient type '{0}' is not supported for encryption or decryption on this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Sign_Empty_Content\">\r\n            <summary>Cannot create CMS signature for empty content.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Sign_No_Signature_First_Signer\">\r\n            <summary>CmsSigner has to be the first signer with NoSignature.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_SignerNotFound\">\r\n            <summary>Cannot find the original signer.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Signing_RequiresPrivateKey\">\r\n            <summary>A certificate with a private key is required.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Ktri_RSARequired\">\r\n            <summary>An RSA key is required to decrypt for a RecipientInfo with a KeyTransport recipient type.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Recipient_RSARequired_RSAPaddingModeSupplied\">\r\n            <summary>An RSA certificate is required for a CmsRecipient when used with RSAEncryptionPadding.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_TrustFailure\">\r\n            <summary>Certificate trust could not be established. The first reported error is: {0}</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_UnknownAlgorithm\">\r\n            <summary>Unknown algorithm '{0}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_UnknownKeySpec\">\r\n            <summary>Unable to determine the type of key handle from this keyspec {0}.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_WrongKeyUsage\">\r\n            <summary>The certificate is not valid for the requested usage.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_NotValidPublicOrPrivateKey\">\r\n            <summary>Key is not a valid public or private key.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_CannotProcessEncryptedSafeContents\">\r\n            <summary>This operation is not valid on an encrypted or enveloped Pkcs12SafeContents.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_CertBagNotX509\">\r\n            <summary>The Pkcs12CertBag contents are not an X.509 certificate.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_PfxIsSealed\">\r\n            <summary>The Pkcs12Builder can no longer be modified because one of the Seal methods was already invoked.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_PfxMustBeSealed\">\r\n            <summary>One of the Seal methods must be invoked on the Pkcs12Builder before invoking an Encode method.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_SafeContentsIsEncrypted\">\r\n            <summary>Cannot enumerate the contents of an encrypted or enveloped Pkcs12SafeContents.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_SafeContentsIsReadOnly\">\r\n            <summary>New Pkcs12SafeBag values cannot be added to a Pkcs12SafeContents that was read from existing data.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_WrongModeForDecrypt\">\r\n            <summary>This decryption operation applies to 'Pkcs12ConfidentialityMode.{0}', but the target object is in 'Pkcs12ConfidentialityMode.{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_WrongModeForVerify\">\r\n            <summary>This verification operation applies to 'Pkcs12IntegrityMode.{0}', but the target object is in 'Pkcs12IntegrityMode.{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_InvalidSignatureParameters\">\r\n            <summary>Invalid signature paramters.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs8_EncryptedReadFailed\">\r\n            <summary>The EncryptedPrivateKeyInfo structure was decoded but was not successfully interpreted, the password may be incorrect.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs9_AttributeMismatch\">\r\n            <summary>The parameter should be a PKCS 9 attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs9_MultipleSigningTimeNotAllowed\">\r\n            <summary>Cannot add multiple PKCS 9 signing time attributes.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersMissing\">\r\n            <summary>PSS parameters were not present.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersHashMismatch\">\r\n            <summary>This platform requires that the PSS hash algorithm ({0}) match the data digest algorithm ({1}).</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersMgfHashMismatch\">\r\n            <summary>This platform does not support the MGF hash algorithm ({0}) being different from the signature hash algorithm ({1}).</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersMgfNotSupported\">\r\n            <summary>Mask generation function '{0}' is not supported by this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersSaltMismatch\">\r\n            <summary>PSS salt size {0} is not supported by this platform with hash algorithm {1}.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_BadNonce\">\r\n            <summary>The response from the timestamping server did not match the request nonce.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_BadResponse\">\r\n            <summary>The response from the timestamping server was not understood.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_Failure\">\r\n            <summary>The timestamping server did not grant the request. The request status is '{0}' with failure info '{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_NoCertFound\">\r\n            <summary>The timestamping request required the TSA certificate in the response, but it was not found.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_UnexpectedCertFound\">\r\n            <summary>The timestamping request required the TSA certificate not be included in the response, but certificates were present.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.InvalidOperation_DuplicateItemNotAllowed\">\r\n            <summary>Duplicate items are not allowed in the collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.InvalidOperation_WrongOidInAsnCollection\">\r\n            <summary>AsnEncodedData element in the collection has wrong Oid value: expected = '{0}', actual = '{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.PlatformNotSupported_CryptographyPkcs\">\r\n            <summary>System.Security.Cryptography.Pkcs is only supported on Windows platforms.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AlgorithmNotSupported\">\r\n            <summary>Algorithm '{0}' is not supported on this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Der_Invalid_Encoding\">\r\n            <summary>ASN1 corrupted data.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Invalid_IA5String\">\r\n            <summary>The string contains a character not in the 7 bit ASCII character set.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_UnknownAlgorithmIdentifier\">\r\n            <summary>The algorithm identified by '{0}' is unknown, not valid for the requested usage, or was not handled.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_UnknownHashAlgorithm\">\r\n            <summary>'{0}' is not a known hash algorithm.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_WriteEncodedValue_OneValueAtATime\">\r\n            <summary>The input to WriteEncodedValue must represent a single encoded value with no trailing data.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoAttributeFound\">\r\n            <summary>Attribute not found.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoCertificateFound\">\r\n            <summary>Certificate not found.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_CertificateAlreadyInCollection\">\r\n            <summary>Certificate already present in the collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_InvalidSymmetricKey\">\r\n            <summary>The key in the enveloped message is not valid or could not be decoded.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.AllowNullAttribute\">\r\n            <summary>Specifies that null is allowed as an input even if the corresponding type disallows it.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.DisallowNullAttribute\">\r\n            <summary>Specifies that null is disallowed as an input even if the corresponding type allows it.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MaybeNullAttribute\">\r\n            <summary>Specifies that an output may be null even if the corresponding type disallows it.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.NotNullAttribute\">\r\n            <summary>Specifies that an output will not be null even if the corresponding type allows it. Specifies that an input argument was not null when the call returns.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute\">\r\n            <summary>Specifies that when a method returns <see cref=\"P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue\"/>, the parameter may be null even if the corresponding type disallows it.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.#ctor(System.Boolean)\">\r\n            <summary>Initializes the attribute with the specified return value condition.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter may be null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue\">\r\n            <summary>Gets the return value condition.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute\">\r\n            <summary>Specifies that when a method returns <see cref=\"P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue\"/>, the parameter will not be null even if the corresponding type allows it.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.#ctor(System.Boolean)\">\r\n            <summary>Initializes the attribute with the specified return value condition.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter will not be null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue\">\r\n            <summary>Gets the return value condition.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute\">\r\n            <summary>Specifies that the output will be non-null if the named parameter is non-null.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.#ctor(System.String)\">\r\n            <summary>Initializes the attribute with the associated parameter name.</summary>\r\n            <param name=\"parameterName\">\r\n            The associated parameter name.  The output will be non-null if the argument to the parameter specified is non-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.ParameterName\">\r\n            <summary>Gets the associated parameter name.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.DoesNotReturnAttribute\">\r\n            <summary>Applied to a method that will never return under any circumstance.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute\">\r\n            <summary>Specifies that the method will not return if the associated Boolean parameter is passed the specified value.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.#ctor(System.Boolean)\">\r\n            <summary>Initializes the attribute with the specified parameter value.</summary>\r\n            <param name=\"parameterValue\">\r\n            The condition parameter value. Code after the method will be considered unreachable by diagnostics if the argument to\r\n            the associated parameter matches this value.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.ParameterValue\">\r\n            <summary>Gets the condition parameter value.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute\">\r\n            <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String)\">\r\n            <summary>Initializes the attribute with a field or property member.</summary>\r\n            <param name=\"member\">\r\n            The field or property member that is promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String[])\">\r\n            <summary>Initializes the attribute with the list of field and property members.</summary>\r\n            <param name=\"members\">\r\n            The list of field and property members that are promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members\">\r\n            <summary>Gets field or property member names.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute\">\r\n            <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values when returning with the specified return value condition.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String)\">\r\n            <summary>Initializes the attribute with the specified return value condition and a field or property member.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter will not be null.\r\n            </param>\r\n            <param name=\"member\">\r\n            The field or property member that is promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String[])\">\r\n            <summary>Initializes the attribute with the specified return value condition and list of field and property members.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter will not be null.\r\n            </param>\r\n            <param name=\"members\">\r\n            The list of field and property members that are promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.ReturnValue\">\r\n            <summary>Gets the return value condition.</summary>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members\">\r\n            <summary>Gets field or property member names.</summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.OSPlatformAttribute\">\r\n            <summary>\r\n            Base type for all platform-specific API attributes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.TargetPlatformAttribute\">\r\n            <summary>\r\n            Records the platform that the project targeted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.SupportedOSPlatformAttribute\">\r\n             <summary>\r\n             Records the operating system (and minimum version) that supports an API. Multiple attributes can be\r\n             applied to indicate support on multiple operating systems.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.SupportedOSPlatformAttribute\" />\r\n             or use guards to prevent calls to APIs on unsupported operating systems.\r\n            \r\n             A given platform should only be specified once.\r\n             </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.UnsupportedOSPlatformAttribute\">\r\n            <summary>\r\n            Marks APIs that were removed in a given operating system version.\r\n            </summary>\r\n            <remarks>\r\n            Primarily used by OS bindings to indicate APIs that are only available in\r\n            earlier versions.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute\">\r\n             <summary>\r\n             Annotates a custom guard field, property or method with a supported platform name and optional version.\r\n             Multiple attributes can be applied to indicate guard for multiple supported platforms.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute\" /> to a field, property or method\r\n             and use that field, property or method in a conditional or assert statements in order to safely call platform specific APIs.\r\n            \r\n             The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard.\r\n             </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute\">\r\n             <summary>\r\n             Annotates the custom guard field, property or method with an unsupported platform name and optional version.\r\n             Multiple attributes can be applied to indicate guard for multiple unsupported platforms.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute\" /> to a field, property or method\r\n             and use that  field, property or method in a conditional or assert statements as a guard to safely call APIs unsupported on those platforms.\r\n            \r\n             The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard.\r\n             </remarks>\r\n        </member>\r\n        <member name=\"P:Internal.Cryptography.DecryptorPal.RecipientInfos\">\r\n             <summary>\r\n             Return the managed representation of the recipients.\r\n            \r\n             .NET Framework compat: Unlike the desktop, we compute this once and then latch it. Since both RecipientInfo and RecipientInfoCollection are immutable objects, this should be\r\n             a safe optimization to make.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.DecryptorPal.TryDecrypt(System.Security.Cryptography.Pkcs.RecipientInfo,System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.AsymmetricAlgorithm,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Exception@)\">\r\n            <summary>\r\n            Attempt to decrypt the CMS using the specified \"cert\". If successful, return the ContentInfo that contains the decrypted content. If unsuccessful, return null and set \"exception\"\r\n            to a valid Exception object. Do not throw the exception as EnvelopedCms will want to continue decryption attempts against other recipients. Only if all the recipients fail to\r\n            decrypt will then EnvelopedCms throw the exception from the last failed attempt.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.Resize(System.Byte[],System.Int32)\">\r\n            <summary>\r\n            This is not just a convenience wrapper for Array.Resize(). In DEBUG builds, it forces the array to move in memory even if no resize is needed. This should be used by\r\n            helper methods that do anything of the form \"call a native api once to get the estimated size, call it again to get the data and return the data in a byte[] array.\"\r\n            Sometimes, that data consist of a native data structure containing pointers to other parts of the block. Using such a helper to retrieve such a block results in an intermittent\r\n            AV. By using this helper, you make that AV repro every time.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.TryFindMatchingCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Security.Cryptography.Pkcs.SubjectIdentifier)\">\r\n            <summary>\r\n            .NET Framework compat: We do not complain about multiple matches. Just take the first one and ignore the rest.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.ToSkiBytes(System.String)\">\r\n             <summary>\r\n             Asserts on bad or non-canonicalized input. Input must come from trusted sources.\r\n            \r\n             Subject Key Identifier is string-ized as an upper case hex string. This format is part of the public api behavior and cannot be changed.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.ToSerialBytes(System.String)\">\r\n             <summary>\r\n             Asserts on bad or non-canonicalized input. Input must come from trusted sources.\r\n            \r\n             Serial number is string-ized as a reversed upper case hex string. This format is part of the public api behavior and cannot be changed.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.UpperHexStringToByteArray(System.String)\">\r\n            <summary>\r\n            Asserts on bad input. Input must come from trusted sources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.UpperHexCharToNybble(System.Char)\">\r\n            <summary>\r\n            Asserts on bad input. Input must come from trusted sources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.CreateBestPkcs9AttributeObjectAvailable(System.Security.Cryptography.Oid,System.Byte[])\">\r\n            <summary>\r\n            Useful helper for \"upgrading\" well-known CMS attributes to type-specific objects such as Pkcs9DocumentName, Pkcs9DocumentDescription, etc.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.Encrypt(System.Security.Cryptography.Pkcs.CmsRecipientCollection,System.Security.Cryptography.Pkcs.ContentInfo,System.Security.Cryptography.Pkcs.AlgorithmIdentifier,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Security.Cryptography.CryptographicAttributeObjectCollection)\">\r\n            <summary>\r\n            Encrypt and encode a CMS. Return value is the RFC-compliant representation of the CMS that can be transmitted \"on the wire.\"\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.Decode(System.ReadOnlySpan{System.Byte},System.Int32@,System.Security.Cryptography.Pkcs.ContentInfo@,System.Security.Cryptography.Pkcs.AlgorithmIdentifier@,System.Security.Cryptography.X509Certificates.X509Certificate2Collection@,System.Security.Cryptography.CryptographicAttributeObjectCollection@)\">\r\n            <summary>\r\n            Decode an encoded CMS.\r\n               Call RecipientInfos on the returned pal object to get the recipients.\r\n               Call TryDecrypt() on the returned pal object to attempt a decrypt for a single recipient.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetEncodedMessageType(System.ReadOnlySpan{System.Byte})\">\r\n            <summary>\r\n            Implements the ContentInfo.GetContentType() behavior.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.AddCertsFromStoreForDecryption(System.Security.Cryptography.X509Certificates.X509Certificate2Collection)\">\r\n            <summary>\r\n            EnvelopedCms.Decrypt() looks for qualifying certs from the \"MY\" store (as well as any \"extraStore\" passed to Decrypt()).\r\n            This method encapsulates exactly what a particular OS considers to be \"the MY store.\"\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateRecipientsNotFoundException\">\r\n            <summary>\r\n            If EnvelopedCms.Decrypt() fails to find any matching certs for any recipients, it throws CryptographicException(CRYPT_E_RECIPIENT_NOT_FOUND) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateRecipientInfosAfterEncryptException\">\r\n            <summary>\r\n            If you call RecipientInfos after an Encrypt(), the framework throws CryptographicException(CRYPT_E_INVALID_MSG_TYPE) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateDecryptAfterEncryptException\">\r\n            <summary>\r\n            If you call Decrypt() after an Encrypt(), the framework throws CryptographicException(CRYPT_E_INVALID_MSG_TYPE) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateDecryptTwiceException\">\r\n            <summary>\r\n            If you call Decrypt() after a Encrypt(), the framework throws CryptographicException(CRYPT_E_INVALID_MSG_TYPE) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetSubjectKeyIdentifier(System.Security.Cryptography.X509Certificates.X509Certificate2)\">\r\n            <summary>\r\n            Retrieve the certificate's subject key identifier value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetPrivateKeyForSigning``1(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Boolean)\">\r\n            <summary>\r\n            Retrieve a private key object for the certificate to use with signing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetPrivateKeyForDecryption``1(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Boolean)\">\r\n            <summary>\r\n            Retrieve a private key object for the certificate to use with decryption.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Internal.Cryptography.PkcsPal.Instance\">\r\n            <summary>\r\n            Get the one instance of PkcsPal.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.Pal.Windows.HelpersWindows.GetContentInfo(Microsoft.Win32.SafeHandles.SafeCryptMsgHandle)\">\r\n             <summary>\r\n             Returns the inner content of the CMS.\r\n            \r\n             Special case: If the CMS is an enveloped CMS that has been decrypted and the inner content type is Oids.Pkcs7Data, the returned\r\n             content bytes are the decoded octet bytes, rather than the encoding of those bytes. This is a documented convenience behavior of\r\n             CryptMsgGetParam(CMSG_CONTENT_PARAM) that apparently got baked into the behavior of the managed EnvelopedCms class.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.Pal.Windows.HelpersWindows.ToAlgId(System.String)\">\r\n            <summary>\r\n            Returns (AlgId)(-1) if oid is unknown.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Microsoft.Win32.SafeHandles.SafeHandleCache`1\">\r\n            <summary>Provides a cache for special instances of SafeHandles.</summary>\r\n            <typeparam name=\"T\">Specifies the type of SafeHandle.</typeparam>\r\n        </member>\r\n        <member name=\"M:Microsoft.Win32.SafeHandles.SafeHandleCache`1.GetInvalidHandle(System.Func{`0})\">\r\n            <summary>\r\n            Gets a cached, invalid handle.  As the instance is cached, it should either never be Disposed\r\n            or it should override <see cref=\"M:System.Runtime.InteropServices.SafeHandle.Dispose(System.Boolean)\"/> to prevent disposal when the\r\n            instance represents an invalid handle: <see cref=\"P:System.Runtime.InteropServices.SafeHandle.IsInvalid\"/> returns <see language=\"true\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Microsoft.Win32.SafeHandles.SafeHandleCache`1.IsCachedInvalidHandle(System.Runtime.InteropServices.SafeHandle)\">\r\n            <summary>Gets whether the specified handle is invalid handle.</summary>\r\n            <param name=\"handle\">The handle to compare.</param>\r\n            <returns>true if <paramref name=\"handle\"/> is invalid handle; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Interop.Kernel32.GetMessage(System.Int32)\">\r\n            <summary>\r\n                Returns a string message for the specified Win32 error code.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Interop.NCrypt.ErrorCode\">\r\n            <summary>\r\n                Result codes from NCrypt APIs\r\n            </summary>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/System.Security.Cryptography.Pkcs.6.0.1/runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
    "content": "<?xml version=\"1.0\"?>\r\n<doc>\r\n    <assembly>\r\n        <name>System.Security.Cryptography.Pkcs</name>\r\n    </assembly>\r\n    <members>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.EnvelopedCms.Decode(System.ReadOnlySpan{System.Byte})\">\r\n            <summary>\r\n              Decodes the provided data as a CMS/PKCS#7 EnvelopedData message.\r\n            </summary>\r\n            <param name=\"encodedMessage\">\r\n              The data to decode.\r\n            </param>\r\n            <exception cref=\"T:System.Security.Cryptography.CryptographicException\">\r\n              The <paramref name=\"encodedMessage\"/> parameter was not successfully decoded.\r\n            </exception>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Pkcs12CertBag.#ctor(System.Security.Cryptography.Oid,System.ReadOnlyMemory{System.Byte})\">\r\n            <summary>\r\n            Create a CertBag for a specified certificate type and encoding.\r\n            </summary>\r\n            <param name=\"certificateType\">The identifier for the certificate type</param>\r\n            <param name=\"encodedCertificate\">The encoded value</param>\r\n            <remarks>\r\n            No validation is done to ensure that the <paramref name=\"encodedCertificate\"/> value is\r\n            correct for the indicated <paramref name=\"certificateType\"/>.  Note that for X.509\r\n            public-key certificates the correct encoding for a CertBag value is to wrap the\r\n            DER-encoded certificate in an OCTET STRING.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.CreateFromHash(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Oid,System.Security.Cryptography.Oid,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Boolean,System.Security.Cryptography.X509Certificates.X509ExtensionCollection)\">\r\n            <summary>\r\n            Create a timestamp request using a pre-computed hash value.\r\n            </summary>\r\n            <param name=\"hash\">The pre-computed hash value to be timestamped.</param>\r\n            <param name=\"hashAlgorithmId\">\r\n              The Object Identifier (OID) for the hash algorithm which produced <paramref name=\"hash\"/>.\r\n            </param>\r\n            <param name=\"requestedPolicyId\">\r\n              The Object Identifier (OID) for a timestamp policy the Timestamp Authority (TSA) should use,\r\n              or <c>null</c> to express no preference.\r\n            </param>\r\n            <param name=\"nonce\">\r\n              An optional nonce (number used once) to uniquely identify this request to pair it with the response.\r\n              The value is interpreted as an unsigned big-endian integer and may be normalized to the encoding format.\r\n            </param>\r\n            <param name=\"requestSignerCertificates\">\r\n              Indicates whether the Timestamp Authority (TSA) must (<c>true</c>) or must not (<c>false</c>) include\r\n              the signing certificate in the issued timestamp token.\r\n            </param>\r\n            <param name=\"extensions\">RFC3161 extensions to present with the request.</param>\r\n            <returns>\r\n              An <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest\"/> representing the chosen values.\r\n            </returns>\r\n            <seealso cref=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.Encode\"/>\r\n            <seealso cref=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest.TryEncode(System.Span{System.Byte},System.Int32@)\"/>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.AsSignedCms\">\r\n            <summary>\r\n            Get a SignedCms representation of the RFC3161 Timestamp Token.\r\n            </summary>\r\n            <returns>The SignedCms representation of the RFC3161 Timestamp Token.</returns>\r\n            <remarks>\r\n            Successive calls to this method return the same object.\r\n            The SignedCms class is mutable, but changes to that object are not reflected in the\r\n            <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken\"/> object which produced it.\r\n            The value from calling <see cref=\"M:System.Security.Cryptography.Pkcs.SignedCms.Encode\"/> can be interpreted again as an\r\n            <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken\"/> via another call to <see cref=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampToken.TryDecode(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Pkcs.Rfc3161TimestampToken@,System.Int32@)\"/>.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\">\r\n            <summary>\r\n            Represents the timestamp token information class defined in RFC3161 as TSTInfo.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.#ctor(System.Security.Cryptography.Oid,System.Security.Cryptography.Oid,System.ReadOnlyMemory{System.Byte},System.ReadOnlyMemory{System.Byte},System.DateTimeOffset,System.Nullable{System.Int64},System.Boolean,System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Nullable{System.ReadOnlyMemory{System.Byte}},System.Security.Cryptography.X509Certificates.X509ExtensionCollection)\">\r\n            <summary>\r\n            Initializes a new instance of the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\" /> class with the specified parameters.\r\n            </summary>\r\n            <param name=\"policyId\">An OID representing the TSA's policy under which the response was produced.</param>\r\n            <param name=\"hashAlgorithmId\">A hash algorithm OID of the data to be timestamped.</param>\r\n            <param name=\"messageHash\">A hash value of the data to be timestamped.</param>\r\n            <param name=\"serialNumber\">An integer assigned by the TSA to the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\"/>.</param>\r\n            <param name=\"timestamp\">The timestamp encoded in the token.</param>\r\n            <param name=\"accuracyInMicroseconds\">The accuracy with which <paramref name=\"timestamp\"/> is compared. Also see <paramref name=\"isOrdering\"/>.</param>\r\n            <param name=\"isOrdering\"><see langword=\"true\" /> to ensure that every timestamp token from the same TSA can always be ordered based on the <paramref name=\"timestamp\"/>, regardless of the accuracy; <see langword=\"false\" /> to make <paramref name=\"timestamp\"/> indicate when token has been created by the TSA.</param>\r\n            <param name=\"nonce\">The nonce associated with this timestamp token. Using a nonce always allows to detect replays, and hence its use is recommended.</param>\r\n            <param name=\"timestampAuthorityName\">The hint in the TSA name identification. The actual identification of the entity that signed the response will always occur through the use of the certificate identifier.</param>\r\n            <param name=\"extensions\">The extension values associated with the timestamp.</param>\r\n            <remarks>If <paramref name=\"hashAlgorithmId\" />, <paramref name=\"messageHash\" />, <paramref name=\"policyId\" /> or <paramref name=\"nonce\" /> are present in the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest\"/>, then the same value should be used. If <paramref name=\"accuracyInMicroseconds\"/> is not provided, then the accuracy may be available through other means such as i.e. <paramref name=\"policyId\" />.</remarks>\r\n            <exception cref=\"T:System.Security.Cryptography.CryptographicException\">ASN.1 corrupted data.</exception>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Version\">\r\n            <summary>\r\n            Gets the version of the timestamp token.\r\n            </summary>\r\n            <value>The version of the timestamp token.</value>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.PolicyId\">\r\n            <summary>\r\n            Gets an OID representing the TSA's policy under which the response was produced.\r\n            </summary>\r\n            <value>An OID representing the TSA's policy under which the response was produced.</value>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.HashAlgorithmId\">\r\n            <summary>\r\n            Gets an OID of the hash algorithm.\r\n            </summary>\r\n            <value>An OID of the hash algorithm.</value>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetMessageHash\">\r\n            <summary>\r\n            Gets the data representing the message hash.\r\n            </summary>\r\n            <returns>The data representing the message hash.</returns>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetSerialNumber\">\r\n            <summary>\r\n            Gets an integer assigned by the TSA to the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\"/>.\r\n            </summary>\r\n            <returns>An integer assigned by the TSA to the <see cref=\"T:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo\"/>.</returns>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\">\r\n            <summary>\r\n            Gets the timestamp encoded in the token.\r\n            </summary>\r\n            <value>The timestamp encoded in the token.</value>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.AccuracyInMicroseconds\">\r\n            <summary>\r\n            Gets the accuracy with which <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/> is compared.\r\n            </summary>\r\n            <seealso cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.IsOrdering\" />\r\n            <value>The accuracy with which <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/> is compared.</value>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.IsOrdering\">\r\n            <summary>\r\n            Gets a value indicating if every timestamp token from the same TSA can always be ordered based on the <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/>, regardless of the accuracy; If <see langword=\"false\" />, <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/> indicates when the token has been created by the TSA.\r\n            </summary>\r\n            <value>A value indicating if every timestamp token from the same TSA can always be ordered based on the <see cref=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Timestamp\"/>.</value>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetNonce\">\r\n            <summary>\r\n            Gets the nonce associated with this timestamp token.\r\n            </summary>\r\n            <returns>The nonce associated with this timestamp token.</returns>\r\n        </member>\r\n        <member name=\"P:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.HasExtensions\">\r\n            <summary>\r\n            Gets a value indicating whether there are any extensions associated with this timestamp token.\r\n            </summary>\r\n            <value>A value indicating whether there are any extensions associated with this timestamp token.</value>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetTimestampAuthorityName\">\r\n            <summary>\r\n            Gets the data representing the hint in the TSA name identification.\r\n            </summary>\r\n            <returns>The data representing the hint in the TSA name identification.</returns>\r\n            <remarks>\r\n            The actual identification of the entity that signed the response\r\n            will always occur through the use of the certificate identifier (ESSCertID Attribute)\r\n            inside a SigningCertificate attribute which is part of the signer info.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.GetExtensions\">\r\n            <summary>\r\n            Gets the extension values associated with the timestamp.\r\n            </summary>\r\n            <returns>The extension values associated with the timestamp.</returns>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.Encode\">\r\n            <summary>\r\n            Encodes this object into a TSTInfo value\r\n            </summary>\r\n            <returns>The encoded TSTInfo value.</returns>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.TryEncode(System.Span{System.Byte},System.Int32@)\">\r\n            <summary>\r\n            Attempts to encode this object as a TSTInfo value, writing the result into the provided buffer.\r\n            </summary>\r\n            <param name=\"destination\">The destination buffer.</param>\r\n            <param name=\"bytesWritten\">When this method returns <see langword=\"true\" />, contains the bytes written to the <paramref name=\"destination\" /> buffer.</param>\r\n            <returns><see langword=\"true\" /> if the operation succeeded; <see langword=\"false\" /> if the buffer size was insufficient.</returns>\r\n        </member>\r\n        <member name=\"M:System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo.TryDecode(System.ReadOnlyMemory{System.Byte},System.Security.Cryptography.Pkcs.Rfc3161TimestampTokenInfo@,System.Int32@)\">\r\n            <summary>\r\n            Decodes an encoded TSTInfo value.\r\n            </summary>\r\n            <param name=\"encodedBytes\">The input or source buffer.</param>\r\n            <param name=\"timestampTokenInfo\">When this method returns <see langword=\"true\" />, the decoded data. When this method returns <see langword=\"false\" />, the value is <see langword=\"null\" />, meaning the data could not be decoded.</param>\r\n            <param name=\"bytesConsumed\">The number of bytes used for decoding.</param>\r\n            <returns><see langword=\"true\" /> if the operation succeeded; <see langword=\"false\" /> otherwise.</returns>\r\n        </member>\r\n        <member name=\"T:System.Security.Cryptography.SafeHashHandle\">\r\n            <summary>\r\n            SafeHandle representing HCRYPTHASH handle\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Security.Cryptography.SafeKeyHandle\">\r\n            <summary>\r\n                Safe handle representing a HCRYPTKEY\r\n            </summary>\r\n            <summary>\r\n                Since we need to delete the key handle before the provider is released we need to actually hold a\r\n                pointer to a CRYPT_KEY_CTX unmanaged structure whose destructor decrements a refCount. Only when\r\n                the provider refCount is 0 it is deleted. This way, we loose a race in the critical finalization\r\n                of the key handle and provider handle. This also applies to hash handles, which point to a\r\n                CRYPT_HASH_CTX. Those structures are defined in COMCryptography.h\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Security.Cryptography.SafeProvHandle\">\r\n            <summary>\r\n            Safehandle representing HCRYPTPROV\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:System.HexConverter.CharToHexLookup\">\r\n            <summary>Map from an ASCII char to its hex value, e.g. arr['b'] == 11. 0xFF means it's not a hex digit.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Arg_EmptyOrNullString_Named\">\r\n            <summary>The `{0}` string cannot be empty or null.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Arg_RankMultiDimNotSupported\">\r\n            <summary>Only single dimensional arrays are supported for the requested action.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_EncodeDestinationTooSmall\">\r\n            <summary>The destination is too small to hold the encoded value.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_InvalidOffLen\">\r\n            <summary>Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_InvalidOidValue\">\r\n            <summary>The OID value was invalid.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Argument_InvalidValue\">\r\n            <summary>Value was invalid.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.ArgumentOutOfRange_Index\">\r\n            <summary>Index was out of range. Must be non-negative and less than the size of the collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.ArgumentOutOfRange_NeedPosNum\">\r\n            <summary>Positive number required.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AlgKdfRequiresChars\">\r\n            <summary>The KDF for algorithm '{0}' requires a char-based password input.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_EnumeratedValueRequiresNonFlagsEnum\">\r\n            <summary>ASN.1 Enumerated values only apply to enum types without the [Flags] attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_NamedBitListRequiresFlagsEnum\">\r\n            <summary>Named bit list operations require an enum with the [Flags] attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_NamedBitListValueTooBig\">\r\n            <summary>The encoded named bit list value is larger than the value size of the '{0}' enum.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_UniversalValueIsFixed\">\r\n            <summary>Tags with TagClass Universal must have the appropriate TagValue value for the data type being read or written.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Asn_UnusedBitCountRange\">\r\n            <summary>Unused bit count must be between 0 and 7, inclusive.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AsnWriter_EncodeUnbalancedStack\">\r\n            <summary>Encode cannot be called while a Sequence or SetOf is still open.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AsnWriter_PopWrongTag\">\r\n            <summary>Cannot pop the requested tag as it is not currently in progress.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_BadHashValue\">\r\n            <summary>The hash value is not correct.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_BadSignature\">\r\n            <summary>Invalid signature.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_CannotDetermineSignatureAlgorithm\">\r\n            <summary>Could not determine signature algorithm for the signer certificate.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_IncompleteCertChain\">\r\n            <summary>The certificate chain is incomplete, the self-signed root authority could not be determined.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Invalid_Originator_Identifier_Choice\">\r\n            <summary>Invalid originator identifier choice {0} found in decoded CMS.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Invalid_Subject_Identifier_Type\">\r\n            <summary>The subject identifier type {0} is not valid.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_InvalidMessageType\">\r\n            <summary>Invalid cryptographic message type.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_InvalidSignerHashForSignatureAlg\">\r\n            <summary>SignerInfo digest algorithm '{0}' is not valid for signature algorithm '{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Key_Agree_Date_Not_Available\">\r\n            <summary>The Date property is not available for none KID key agree recipient.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_MessageNotEncrypted\">\r\n            <summary>The CMS message is not encrypted.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_MessageNotSigned\">\r\n            <summary>The CMS message is not signed.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_MissingAuthenticatedAttribute\">\r\n            <summary>The cryptographic message does not contain an expected authenticated attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoCounterCounterSigner\">\r\n            <summary>Only one level of counter-signatures are supported on this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoRecipients\">\r\n            <summary>The recipients collection is empty. You must specify at least one recipient. This platform does not implement the certificate picker UI.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoSignerCert\">\r\n            <summary>No signer certificate was provided. This platform does not implement the certificate picker UI.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoSignerCertSilent\">\r\n            <summary>No signer certificate was provided.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoSignerAtIndex\">\r\n            <summary>The signed cryptographic message does not have a signer for the specified signer index.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_RecipientNotFound\">\r\n            <summary>The enveloped-data message does not contain the specified recipient.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_RecipientType_NotSupported\">\r\n            <summary>The recipient type '{0}' is not supported for encryption or decryption on this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Sign_Empty_Content\">\r\n            <summary>Cannot create CMS signature for empty content.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Sign_No_Signature_First_Signer\">\r\n            <summary>CmsSigner has to be the first signer with NoSignature.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_SignerNotFound\">\r\n            <summary>Cannot find the original signer.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Signing_RequiresPrivateKey\">\r\n            <summary>A certificate with a private key is required.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Ktri_RSARequired\">\r\n            <summary>An RSA key is required to decrypt for a RecipientInfo with a KeyTransport recipient type.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_Recipient_RSARequired_RSAPaddingModeSupplied\">\r\n            <summary>An RSA certificate is required for a CmsRecipient when used with RSAEncryptionPadding.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_TrustFailure\">\r\n            <summary>Certificate trust could not be established. The first reported error is: {0}</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_UnknownAlgorithm\">\r\n            <summary>Unknown algorithm '{0}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_UnknownKeySpec\">\r\n            <summary>Unable to determine the type of key handle from this keyspec {0}.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_WrongKeyUsage\">\r\n            <summary>The certificate is not valid for the requested usage.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_NotValidPublicOrPrivateKey\">\r\n            <summary>Key is not a valid public or private key.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_CannotProcessEncryptedSafeContents\">\r\n            <summary>This operation is not valid on an encrypted or enveloped Pkcs12SafeContents.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_CertBagNotX509\">\r\n            <summary>The Pkcs12CertBag contents are not an X.509 certificate.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_PfxIsSealed\">\r\n            <summary>The Pkcs12Builder can no longer be modified because one of the Seal methods was already invoked.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_PfxMustBeSealed\">\r\n            <summary>One of the Seal methods must be invoked on the Pkcs12Builder before invoking an Encode method.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_SafeContentsIsEncrypted\">\r\n            <summary>Cannot enumerate the contents of an encrypted or enveloped Pkcs12SafeContents.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_SafeContentsIsReadOnly\">\r\n            <summary>New Pkcs12SafeBag values cannot be added to a Pkcs12SafeContents that was read from existing data.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_WrongModeForDecrypt\">\r\n            <summary>This decryption operation applies to 'Pkcs12ConfidentialityMode.{0}', but the target object is in 'Pkcs12ConfidentialityMode.{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs12_WrongModeForVerify\">\r\n            <summary>This verification operation applies to 'Pkcs12IntegrityMode.{0}', but the target object is in 'Pkcs12IntegrityMode.{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_InvalidSignatureParameters\">\r\n            <summary>Invalid signature paramters.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs8_EncryptedReadFailed\">\r\n            <summary>The EncryptedPrivateKeyInfo structure was decoded but was not successfully interpreted, the password may be incorrect.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs9_AttributeMismatch\">\r\n            <summary>The parameter should be a PKCS 9 attribute.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs9_MultipleSigningTimeNotAllowed\">\r\n            <summary>Cannot add multiple PKCS 9 signing time attributes.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersMissing\">\r\n            <summary>PSS parameters were not present.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersHashMismatch\">\r\n            <summary>This platform requires that the PSS hash algorithm ({0}) match the data digest algorithm ({1}).</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersMgfHashMismatch\">\r\n            <summary>This platform does not support the MGF hash algorithm ({0}) being different from the signature hash algorithm ({1}).</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersMgfNotSupported\">\r\n            <summary>Mask generation function '{0}' is not supported by this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Pkcs_PssParametersSaltMismatch\">\r\n            <summary>PSS salt size {0} is not supported by this platform with hash algorithm {1}.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_BadNonce\">\r\n            <summary>The response from the timestamping server did not match the request nonce.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_BadResponse\">\r\n            <summary>The response from the timestamping server was not understood.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_Failure\">\r\n            <summary>The timestamping server did not grant the request. The request status is '{0}' with failure info '{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_NoCertFound\">\r\n            <summary>The timestamping request required the TSA certificate in the response, but it was not found.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_TimestampReq_UnexpectedCertFound\">\r\n            <summary>The timestamping request required the TSA certificate not be included in the response, but certificates were present.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.InvalidOperation_DuplicateItemNotAllowed\">\r\n            <summary>Duplicate items are not allowed in the collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.InvalidOperation_WrongOidInAsnCollection\">\r\n            <summary>AsnEncodedData element in the collection has wrong Oid value: expected = '{0}', actual = '{1}'.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.PlatformNotSupported_CryptographyPkcs\">\r\n            <summary>System.Security.Cryptography.Pkcs is only supported on Windows platforms.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_AlgorithmNotSupported\">\r\n            <summary>Algorithm '{0}' is not supported on this platform.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Der_Invalid_Encoding\">\r\n            <summary>ASN1 corrupted data.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Invalid_IA5String\">\r\n            <summary>The string contains a character not in the 7 bit ASCII character set.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_UnknownAlgorithmIdentifier\">\r\n            <summary>The algorithm identified by '{0}' is unknown, not valid for the requested usage, or was not handled.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_UnknownHashAlgorithm\">\r\n            <summary>'{0}' is not a known hash algorithm.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_WriteEncodedValue_OneValueAtATime\">\r\n            <summary>The input to WriteEncodedValue must represent a single encoded value with no trailing data.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoAttributeFound\">\r\n            <summary>Attribute not found.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_NoCertificateFound\">\r\n            <summary>Certificate not found.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_CertificateAlreadyInCollection\">\r\n            <summary>Certificate already present in the collection.</summary>\r\n        </member>\r\n        <member name=\"P:System.SR.Cryptography_Cms_InvalidSymmetricKey\">\r\n            <summary>The key in the enveloped message is not valid or could not be decoded.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute\">\r\n            <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String)\">\r\n            <summary>Initializes the attribute with a field or property member.</summary>\r\n            <param name=\"member\">\r\n            The field or property member that is promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String[])\">\r\n            <summary>Initializes the attribute with the list of field and property members.</summary>\r\n            <param name=\"members\">\r\n            The list of field and property members that are promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members\">\r\n            <summary>Gets field or property member names.</summary>\r\n        </member>\r\n        <member name=\"T:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute\">\r\n            <summary>Specifies that the method or property will ensure that the listed field and property members have not-null values when returning with the specified return value condition.</summary>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String)\">\r\n            <summary>Initializes the attribute with the specified return value condition and a field or property member.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter will not be null.\r\n            </param>\r\n            <param name=\"member\">\r\n            The field or property member that is promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String[])\">\r\n            <summary>Initializes the attribute with the specified return value condition and list of field and property members.</summary>\r\n            <param name=\"returnValue\">\r\n            The return value condition. If the method returns this value, the associated parameter will not be null.\r\n            </param>\r\n            <param name=\"members\">\r\n            The list of field and property members that are promised to be not-null.\r\n            </param>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.ReturnValue\">\r\n            <summary>Gets the return value condition.</summary>\r\n        </member>\r\n        <member name=\"P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members\">\r\n            <summary>Gets field or property member names.</summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.OSPlatformAttribute\">\r\n            <summary>\r\n            Base type for all platform-specific API attributes.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.TargetPlatformAttribute\">\r\n            <summary>\r\n            Records the platform that the project targeted.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.SupportedOSPlatformAttribute\">\r\n             <summary>\r\n             Records the operating system (and minimum version) that supports an API. Multiple attributes can be\r\n             applied to indicate support on multiple operating systems.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.SupportedOSPlatformAttribute\" />\r\n             or use guards to prevent calls to APIs on unsupported operating systems.\r\n            \r\n             A given platform should only be specified once.\r\n             </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.UnsupportedOSPlatformAttribute\">\r\n            <summary>\r\n            Marks APIs that were removed in a given operating system version.\r\n            </summary>\r\n            <remarks>\r\n            Primarily used by OS bindings to indicate APIs that are only available in\r\n            earlier versions.\r\n            </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute\">\r\n             <summary>\r\n             Annotates a custom guard field, property or method with a supported platform name and optional version.\r\n             Multiple attributes can be applied to indicate guard for multiple supported platforms.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.SupportedOSPlatformGuardAttribute\" /> to a field, property or method\r\n             and use that field, property or method in a conditional or assert statements in order to safely call platform specific APIs.\r\n            \r\n             The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard.\r\n             </remarks>\r\n        </member>\r\n        <member name=\"T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute\">\r\n             <summary>\r\n             Annotates the custom guard field, property or method with an unsupported platform name and optional version.\r\n             Multiple attributes can be applied to indicate guard for multiple unsupported platforms.\r\n             </summary>\r\n             <remarks>\r\n             Callers can apply a <see cref=\"T:System.Runtime.Versioning.UnsupportedOSPlatformGuardAttribute\" /> to a field, property or method\r\n             and use that  field, property or method in a conditional or assert statements as a guard to safely call APIs unsupported on those platforms.\r\n            \r\n             The type of the field or property should be boolean, the method return type should be boolean in order to be used as platform guard.\r\n             </remarks>\r\n        </member>\r\n        <member name=\"P:Internal.Cryptography.DecryptorPal.RecipientInfos\">\r\n             <summary>\r\n             Return the managed representation of the recipients.\r\n            \r\n             .NET Framework compat: Unlike the desktop, we compute this once and then latch it. Since both RecipientInfo and RecipientInfoCollection are immutable objects, this should be\r\n             a safe optimization to make.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.DecryptorPal.TryDecrypt(System.Security.Cryptography.Pkcs.RecipientInfo,System.Security.Cryptography.X509Certificates.X509Certificate2,System.Security.Cryptography.AsymmetricAlgorithm,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Exception@)\">\r\n            <summary>\r\n            Attempt to decrypt the CMS using the specified \"cert\". If successful, return the ContentInfo that contains the decrypted content. If unsuccessful, return null and set \"exception\"\r\n            to a valid Exception object. Do not throw the exception as EnvelopedCms will want to continue decryption attempts against other recipients. Only if all the recipients fail to\r\n            decrypt will then EnvelopedCms throw the exception from the last failed attempt.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.Resize(System.Byte[],System.Int32)\">\r\n            <summary>\r\n            This is not just a convenience wrapper for Array.Resize(). In DEBUG builds, it forces the array to move in memory even if no resize is needed. This should be used by\r\n            helper methods that do anything of the form \"call a native api once to get the estimated size, call it again to get the data and return the data in a byte[] array.\"\r\n            Sometimes, that data consist of a native data structure containing pointers to other parts of the block. Using such a helper to retrieve such a block results in an intermittent\r\n            AV. By using this helper, you make that AV repro every time.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.TryFindMatchingCertificate(System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Security.Cryptography.Pkcs.SubjectIdentifier)\">\r\n            <summary>\r\n            .NET Framework compat: We do not complain about multiple matches. Just take the first one and ignore the rest.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.ToSkiBytes(System.String)\">\r\n             <summary>\r\n             Asserts on bad or non-canonicalized input. Input must come from trusted sources.\r\n            \r\n             Subject Key Identifier is string-ized as an upper case hex string. This format is part of the public api behavior and cannot be changed.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.ToSerialBytes(System.String)\">\r\n             <summary>\r\n             Asserts on bad or non-canonicalized input. Input must come from trusted sources.\r\n            \r\n             Serial number is string-ized as a reversed upper case hex string. This format is part of the public api behavior and cannot be changed.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.UpperHexStringToByteArray(System.String)\">\r\n            <summary>\r\n            Asserts on bad input. Input must come from trusted sources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.UpperHexCharToNybble(System.Char)\">\r\n            <summary>\r\n            Asserts on bad input. Input must come from trusted sources.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsHelpers.CreateBestPkcs9AttributeObjectAvailable(System.Security.Cryptography.Oid,System.Byte[])\">\r\n            <summary>\r\n            Useful helper for \"upgrading\" well-known CMS attributes to type-specific objects such as Pkcs9DocumentName, Pkcs9DocumentDescription, etc.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.Encrypt(System.Security.Cryptography.Pkcs.CmsRecipientCollection,System.Security.Cryptography.Pkcs.ContentInfo,System.Security.Cryptography.Pkcs.AlgorithmIdentifier,System.Security.Cryptography.X509Certificates.X509Certificate2Collection,System.Security.Cryptography.CryptographicAttributeObjectCollection)\">\r\n            <summary>\r\n            Encrypt and encode a CMS. Return value is the RFC-compliant representation of the CMS that can be transmitted \"on the wire.\"\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.Decode(System.ReadOnlySpan{System.Byte},System.Int32@,System.Security.Cryptography.Pkcs.ContentInfo@,System.Security.Cryptography.Pkcs.AlgorithmIdentifier@,System.Security.Cryptography.X509Certificates.X509Certificate2Collection@,System.Security.Cryptography.CryptographicAttributeObjectCollection@)\">\r\n            <summary>\r\n            Decode an encoded CMS.\r\n               Call RecipientInfos on the returned pal object to get the recipients.\r\n               Call TryDecrypt() on the returned pal object to attempt a decrypt for a single recipient.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetEncodedMessageType(System.ReadOnlySpan{System.Byte})\">\r\n            <summary>\r\n            Implements the ContentInfo.GetContentType() behavior.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.AddCertsFromStoreForDecryption(System.Security.Cryptography.X509Certificates.X509Certificate2Collection)\">\r\n            <summary>\r\n            EnvelopedCms.Decrypt() looks for qualifying certs from the \"MY\" store (as well as any \"extraStore\" passed to Decrypt()).\r\n            This method encapsulates exactly what a particular OS considers to be \"the MY store.\"\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateRecipientsNotFoundException\">\r\n            <summary>\r\n            If EnvelopedCms.Decrypt() fails to find any matching certs for any recipients, it throws CryptographicException(CRYPT_E_RECIPIENT_NOT_FOUND) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateRecipientInfosAfterEncryptException\">\r\n            <summary>\r\n            If you call RecipientInfos after an Encrypt(), the framework throws CryptographicException(CRYPT_E_INVALID_MSG_TYPE) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateDecryptAfterEncryptException\">\r\n            <summary>\r\n            If you call Decrypt() after an Encrypt(), the framework throws CryptographicException(CRYPT_E_INVALID_MSG_TYPE) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.CreateDecryptTwiceException\">\r\n            <summary>\r\n            If you call Decrypt() after a Encrypt(), the framework throws CryptographicException(CRYPT_E_INVALID_MSG_TYPE) on Windows.\r\n            This method encapsulates what other OS's decide to throw in this situation.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetSubjectKeyIdentifier(System.Security.Cryptography.X509Certificates.X509Certificate2)\">\r\n            <summary>\r\n            Retrieve the certificate's subject key identifier value.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetPrivateKeyForSigning``1(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Boolean)\">\r\n            <summary>\r\n            Retrieve a private key object for the certificate to use with signing.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.PkcsPal.GetPrivateKeyForDecryption``1(System.Security.Cryptography.X509Certificates.X509Certificate2,System.Boolean)\">\r\n            <summary>\r\n            Retrieve a private key object for the certificate to use with decryption.\r\n            </summary>\r\n        </member>\r\n        <member name=\"P:Internal.Cryptography.PkcsPal.Instance\">\r\n            <summary>\r\n            Get the one instance of PkcsPal.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.Pal.Windows.HelpersWindows.GetContentInfo(Microsoft.Win32.SafeHandles.SafeCryptMsgHandle)\">\r\n             <summary>\r\n             Returns the inner content of the CMS.\r\n            \r\n             Special case: If the CMS is an enveloped CMS that has been decrypted and the inner content type is Oids.Pkcs7Data, the returned\r\n             content bytes are the decoded octet bytes, rather than the encoding of those bytes. This is a documented convenience behavior of\r\n             CryptMsgGetParam(CMSG_CONTENT_PARAM) that apparently got baked into the behavior of the managed EnvelopedCms class.\r\n             </summary>\r\n        </member>\r\n        <member name=\"M:Internal.Cryptography.Pal.Windows.HelpersWindows.ToAlgId(System.String)\">\r\n            <summary>\r\n            Returns (AlgId)(-1) if oid is unknown.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Microsoft.Win32.SafeHandles.SafeHandleCache`1\">\r\n            <summary>Provides a cache for special instances of SafeHandles.</summary>\r\n            <typeparam name=\"T\">Specifies the type of SafeHandle.</typeparam>\r\n        </member>\r\n        <member name=\"M:Microsoft.Win32.SafeHandles.SafeHandleCache`1.GetInvalidHandle(System.Func{`0})\">\r\n            <summary>\r\n            Gets a cached, invalid handle.  As the instance is cached, it should either never be Disposed\r\n            or it should override <see cref=\"M:System.Runtime.InteropServices.SafeHandle.Dispose(System.Boolean)\"/> to prevent disposal when the\r\n            instance represents an invalid handle: <see cref=\"P:System.Runtime.InteropServices.SafeHandle.IsInvalid\"/> returns <see language=\"true\"/>.\r\n            </summary>\r\n        </member>\r\n        <member name=\"M:Microsoft.Win32.SafeHandles.SafeHandleCache`1.IsCachedInvalidHandle(System.Runtime.InteropServices.SafeHandle)\">\r\n            <summary>Gets whether the specified handle is invalid handle.</summary>\r\n            <param name=\"handle\">The handle to compare.</param>\r\n            <returns>true if <paramref name=\"handle\"/> is invalid handle; otherwise, false.</returns>\r\n        </member>\r\n        <member name=\"M:Interop.Kernel32.GetMessage(System.Int32)\">\r\n            <summary>\r\n                Returns a string message for the specified Win32 error code.\r\n            </summary>\r\n        </member>\r\n        <member name=\"T:Interop.NCrypt.ErrorCode\">\r\n            <summary>\r\n                Result codes from NCrypt APIs\r\n            </summary>\r\n        </member>\r\n    </members>\r\n</doc>\r\n"
  },
  {
    "path": "packages/System.Security.Cryptography.Pkcs.6.0.1/useSharedDesignerContext.txt",
    "content": ""
  }
]